Version Description
BadgeOS Hook update, referral hook update and minor bug fixes.
=
Download this release
Release Info
Developer | designbymerovingi |
Plugin | myCRED |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
- addons/badges/includes/mycred-badge-shortcodes.php +10 -9
- addons/badges/myCRED-addon-badges.php +2 -2
- addons/banking/abstracts/mycred-abstract-service.php +4 -3
- addons/banking/myCRED-addon-banking.php +1 -1
- addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php +62 -32
- addons/buy-creds/gateways/bitpay.php +1 -1
- addons/buy-creds/gateways/netbilling.php +1 -1
- addons/buy-creds/gateways/paypal-standard.php +1 -1
- addons/buy-creds/gateways/skrill.php +1 -1
- addons/buy-creds/gateways/zombaio.php +1 -1
- addons/sell-content/myCRED-addon-sell-content.php +21 -20
- includes/mycred-admin.php +2 -1
- includes/mycred-functions.php +70 -16
- includes/mycred-install.php +1 -1
- includes/mycred-log.php +15 -15
- includes/mycred-protect.php +92 -82
- includes/mycred-referrals.php +70 -0
- includes/mycred-shortcodes.php +45 -7
- includes/mycred-widgets.php +9 -43
- lang/mycred-en_US.mo +0 -0
- lang/mycred-en_US.po +403 -395
- lang/mycred-es_ES.mo +0 -0
- lang/mycred-es_ES.po +690 -651
- lang/mycred-es_VE.mo +0 -0
- lang/mycred-es_VE.po +403 -395
- lang/mycred-fa_IR.mo +0 -0
- lang/mycred-fa_IR.po +403 -395
- lang/mycred-fr_FR.mo +0 -0
- lang/mycred-fr_FR.po +403 -395
- lang/mycred-pt_BR.mo +0 -0
- lang/mycred-pt_BR.po +403 -395
- lang/mycred-ru_RU.mo +0 -0
- lang/mycred-ru_RU.po +403 -395
- lang/mycred-sv_SE.mo +0 -0
- lang/mycred-sv_SE.po +403 -395
- lang/mycred-zh_CN.mo +0 -0
- lang/mycred-zh_CN.po +403 -395
- lang/mycred.pot +402 -394
- modules/mycred-module-buddypress.php +30 -1
- modules/mycred-module-hooks.php +47 -28
- modules/mycred-module-settings.php +14 -1
- mycred.php +13 -5
- readme.txt +23 -16
addons/badges/includes/mycred-badge-shortcodes.php
CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
5 |
* Shortcode: mycred_my_badges
|
6 |
* Allows you to show the current users earned badges.
|
7 |
* @since 1.5
|
8 |
-
* @version 1.0
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_render_my_badges' ) ) :
|
11 |
function mycred_render_my_badges( $atts, $content = '' )
|
@@ -37,7 +37,7 @@ if ( ! function_exists( 'mycred_render_my_badges' ) ) :
|
|
37 |
if ( ! empty( $users_badges ) ) {
|
38 |
|
39 |
foreach ( $users_badges as $badge_id )
|
40 |
-
echo '<img src="' . get_post_meta( $badge_id, 'main_image', true ) . '"' . $width . $height . ' class="mycred-badge earned" alt="' . get_the_title( $badge_id ) . '" />';
|
41 |
|
42 |
}
|
43 |
|
@@ -50,13 +50,14 @@ if ( ! function_exists( 'mycred_render_my_badges' ) ) :
|
|
50 |
foreach ( $all_badges as $badge ) {
|
51 |
|
52 |
echo '<div class="the-badge">';
|
|
|
53 |
// User has earned badge
|
54 |
if ( ! in_array( $badge->ID, $users_badges ) )
|
55 |
-
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge not-earned" alt="' . $badge->post_title . '" />';
|
56 |
|
57 |
// User has not earned badge
|
58 |
else
|
59 |
-
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge earned" alt="' . $badge->post_title . '" />';
|
60 |
|
61 |
echo '</div>';
|
62 |
|
@@ -76,7 +77,7 @@ endif;
|
|
76 |
* Shortcode: mycred_badges
|
77 |
* Allows you to show all published badges
|
78 |
* @since 1.5
|
79 |
-
* @version 1.0
|
80 |
*/
|
81 |
if ( ! function_exists( 'mycred_render_badges' ) ) :
|
82 |
function mycred_render_badges( $atts, $content = '' )
|
@@ -115,16 +116,16 @@ if ( ! function_exists( 'mycred_render_badges' ) ) :
|
|
115 |
|
116 |
// Show default image
|
117 |
if ( $show == 'default' )
|
118 |
-
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge dislay-default" alt="' . $badge->post_title . '" />';
|
119 |
|
120 |
// Show main image
|
121 |
elseif ( $show == 'main' )
|
122 |
-
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge display-main" alt="' . $badge->post_title . '" />';
|
123 |
|
124 |
// Show both
|
125 |
else {
|
126 |
-
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge dislay-default" alt="' . $badge->post_title . '" />';
|
127 |
-
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge display-main" alt="' . $badge->post_title . '" />';
|
128 |
}
|
129 |
echo '</div>';
|
130 |
|
5 |
* Shortcode: mycred_my_badges
|
6 |
* Allows you to show the current users earned badges.
|
7 |
* @since 1.5
|
8 |
+
* @version 1.0.1
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_render_my_badges' ) ) :
|
11 |
function mycred_render_my_badges( $atts, $content = '' )
|
37 |
if ( ! empty( $users_badges ) ) {
|
38 |
|
39 |
foreach ( $users_badges as $badge_id )
|
40 |
+
echo '<img src="' . get_post_meta( $badge_id, 'main_image', true ) . '"' . $width . $height . ' class="mycred-badge earned" alt="' . get_the_title( $badge_id ) . '" title="' . get_the_title( $badge_id ) . '" />';
|
41 |
|
42 |
}
|
43 |
|
50 |
foreach ( $all_badges as $badge ) {
|
51 |
|
52 |
echo '<div class="the-badge">';
|
53 |
+
|
54 |
// User has earned badge
|
55 |
if ( ! in_array( $badge->ID, $users_badges ) )
|
56 |
+
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge not-earned" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
57 |
|
58 |
// User has not earned badge
|
59 |
else
|
60 |
+
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge earned" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
61 |
|
62 |
echo '</div>';
|
63 |
|
77 |
* Shortcode: mycred_badges
|
78 |
* Allows you to show all published badges
|
79 |
* @since 1.5
|
80 |
+
* @version 1.0.1
|
81 |
*/
|
82 |
if ( ! function_exists( 'mycred_render_badges' ) ) :
|
83 |
function mycred_render_badges( $atts, $content = '' )
|
116 |
|
117 |
// Show default image
|
118 |
if ( $show == 'default' )
|
119 |
+
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge dislay-default" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
120 |
|
121 |
// Show main image
|
122 |
elseif ( $show == 'main' )
|
123 |
+
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge display-main" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
124 |
|
125 |
// Show both
|
126 |
else {
|
127 |
+
echo '<img src="' . $badge->default_img . '"' . $width . $height . ' class="mycred-badge dislay-default" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
128 |
+
echo '<img src="' . $badge->main_img . '"' . $width . $height . ' class="mycred-badge display-main" alt="' . $badge->post_title . '" title="' . $badge->post_title . '" />';
|
129 |
}
|
130 |
echo '</div>';
|
131 |
|
addons/badges/myCRED-addon-badges.php
CHANGED
@@ -55,7 +55,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
|
|
55 |
|
56 |
/**
|
57 |
* Module Init
|
58 |
-
* @version 1.0
|
59 |
*/
|
60 |
public function module_init() {
|
61 |
$this->register_post_type();
|
@@ -66,7 +66,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
|
|
66 |
if ( class_exists( 'bbPress' ) ) {
|
67 |
if ( $this->badges['bbpress'] == 'profile' || $this->badges['bbpress'] == 'both' )
|
68 |
add_action( 'bbp_template_after_user_profile', array( $this, 'insert_into_bbpress_profile' ) );
|
69 |
-
|
70 |
add_action( 'bbp_theme_after_reply_author_details', array( $this, 'insert_into_bbpress_reply' ) );
|
71 |
}
|
72 |
|
55 |
|
56 |
/**
|
57 |
* Module Init
|
58 |
+
* @version 1.0.1
|
59 |
*/
|
60 |
public function module_init() {
|
61 |
$this->register_post_type();
|
66 |
if ( class_exists( 'bbPress' ) ) {
|
67 |
if ( $this->badges['bbpress'] == 'profile' || $this->badges['bbpress'] == 'both' )
|
68 |
add_action( 'bbp_template_after_user_profile', array( $this, 'insert_into_bbpress_profile' ) );
|
69 |
+
if ( $this->badges['bbpress'] == 'reply' || $this->badges['bbpress'] == 'both' )
|
70 |
add_action( 'bbp_theme_after_reply_author_details', array( $this, 'insert_into_bbpress_reply' ) );
|
71 |
}
|
72 |
|
addons/banking/abstracts/mycred-abstract-service.php
CHANGED
@@ -471,13 +471,14 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
|
|
471 |
/**
|
472 |
* Get Days in Year
|
473 |
* @since 1.2
|
474 |
-
* @version 1.0
|
475 |
*/
|
476 |
public function get_days_in_year() {
|
477 |
if ( date_i18n( 'L' ) )
|
478 |
-
|
479 |
else
|
480 |
-
|
|
|
481 |
}
|
482 |
|
483 |
/**
|
471 |
/**
|
472 |
* Get Days in Year
|
473 |
* @since 1.2
|
474 |
+
* @version 1.0.1
|
475 |
*/
|
476 |
public function get_days_in_year() {
|
477 |
if ( date_i18n( 'L' ) )
|
478 |
+
$days = 366;
|
479 |
else
|
480 |
+
$days = 365;
|
481 |
+
return apply_filters( 'mycred_banking_days_in_year', $days, $this );
|
482 |
}
|
483 |
|
484 |
/**
|
addons/banking/myCRED-addon-banking.php
CHANGED
@@ -230,7 +230,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
|
|
230 |
|
231 |
<p><strong><?php _e( 'WP-Cron deactivation detected!', 'mycred' ); ?></strong></p>
|
232 |
<p><?php _e( 'Warning! This add-on requires WP - Cron to work.', 'mycred' ); ?></p>
|
233 |
-
<?php
|
234 |
|
235 |
<form method="post" action="options.php">
|
236 |
<?php settings_fields( $this->settings_name ); ?>
|
230 |
|
231 |
<p><strong><?php _e( 'WP-Cron deactivation detected!', 'mycred' ); ?></strong></p>
|
232 |
<p><?php _e( 'Warning! This add-on requires WP - Cron to work.', 'mycred' ); ?></p>
|
233 |
+
<?php endif; ?>
|
234 |
|
235 |
<form method="post" action="options.php">
|
236 |
<?php settings_fields( $this->settings_name ); ?>
|
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php
CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
5 |
* myCRED_Payment_Gateway class
|
6 |
* @see http://mycred.me/add-ons/mycred_payment_gateway/
|
7 |
* @since 0.1
|
8 |
-
* @version 1.
|
9 |
*/
|
10 |
if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
11 |
abstract class myCRED_Payment_Gateway {
|
@@ -126,7 +126,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
126 |
/**
|
127 |
* Exchange Rate Setup
|
128 |
* @since 1.5
|
129 |
-
* @version 1.0
|
130 |
*/
|
131 |
function exchange_rate_setup( $default = 'USD' ) {
|
132 |
if ( ! isset( $this->prefs['exchange'] ) ) return;
|
@@ -148,7 +148,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
148 |
<td style="min-width: 100px;"><div class="h2">1 <?php echo $mycred->singular(); ?></div></td>
|
149 |
<td style="width: 10px;"><div class="h2">=</div></td>
|
150 |
<td><div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'exchange' => $type ) ); ?>" id="<?php echo $this->field_id( array( 'exchange' => $type ) ); ?>" value="<?php echo $this->prefs['exchange'][ $type ]; ?>" size="8" />
|
151 |
-
<?php if ( isset( $this->prefs['currency'] ) ) : ?><span class="mycred-gateway
|
152 |
</div></td>
|
153 |
</tr>
|
154 |
</table>
|
@@ -241,19 +241,25 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
241 |
/**
|
242 |
* Log Gateway Call
|
243 |
* @since 1.5
|
244 |
-
* @version 1.0
|
245 |
*/
|
246 |
function log_call( $post_id, $log ) {
|
247 |
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
|
258 |
}
|
259 |
|
@@ -883,25 +889,27 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
883 |
/**
|
884 |
* Encode Sales Data
|
885 |
* @since 0.1
|
886 |
-
* @version 1.
|
887 |
*/
|
888 |
function encode_sales_data( $data ) {
|
889 |
-
// Include
|
890 |
-
require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
|
891 |
$protect = new myCRED_Protect();
|
892 |
-
|
|
|
|
|
|
|
893 |
}
|
894 |
|
895 |
/**
|
896 |
* Decode Sales Data
|
897 |
* @since 0.1
|
898 |
-
* @version 1.
|
899 |
*/
|
900 |
function decode_sales_data( $data ) {
|
901 |
-
// Include
|
902 |
-
require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
|
903 |
$protect = new myCRED_Protect();
|
904 |
-
|
|
|
|
|
|
|
905 |
}
|
906 |
|
907 |
/**
|
@@ -944,7 +952,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
944 |
/**
|
945 |
* Currencies Dropdown
|
946 |
* @since 0.1
|
947 |
-
* @version 1.0.
|
948 |
*/
|
949 |
function currencies_dropdown( $name = '', $js = '' ) {
|
950 |
$currencies = array(
|
@@ -969,6 +977,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
969 |
'BRL' => 'Brazilian Real',
|
970 |
'MYR' => 'Malaysian Ringgits',
|
971 |
'PHP' => 'Philippine Pesos',
|
|
|
972 |
'TWD' => 'Taiwan New Dollars',
|
973 |
'THB' => 'Thai Baht'
|
974 |
);
|
@@ -1495,7 +1504,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
1495 |
/**
|
1496 |
* Complete Payment
|
1497 |
* @since 1.4
|
1498 |
-
* @version 1.
|
1499 |
*/
|
1500 |
function complete_payment( $pending_payment = array(), $transaction_id = '' ) {
|
1501 |
$reference = 'buy_creds_with_' . str_replace( array( ' ', '-' ), '_', $this->id );
|
@@ -1510,19 +1519,40 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
|
1510 |
|
1511 |
$point_type = $pending_payment['ctype'];
|
1512 |
$mycred = mycred( $point_type );
|
|
|
1513 |
|
1514 |
-
$reply =
|
1515 |
-
|
1516 |
-
|
1517 |
-
$
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
|
|
|
|
|
|
1523 |
|
1524 |
return apply_filters( 'mycred_buycred_complete_payment', $reply, $transaction_id, $this );
|
1525 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
}
|
1527 |
}
|
1528 |
?>
|
5 |
* myCRED_Payment_Gateway class
|
6 |
* @see http://mycred.me/add-ons/mycred_payment_gateway/
|
7 |
* @since 0.1
|
8 |
+
* @version 1.2
|
9 |
*/
|
10 |
if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
|
11 |
abstract class myCRED_Payment_Gateway {
|
126 |
/**
|
127 |
* Exchange Rate Setup
|
128 |
* @since 1.5
|
129 |
+
* @version 1.0.1
|
130 |
*/
|
131 |
function exchange_rate_setup( $default = 'USD' ) {
|
132 |
if ( ! isset( $this->prefs['exchange'] ) ) return;
|
148 |
<td style="min-width: 100px;"><div class="h2">1 <?php echo $mycred->singular(); ?></div></td>
|
149 |
<td style="width: 10px;"><div class="h2">=</div></td>
|
150 |
<td><div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'exchange' => $type ) ); ?>" id="<?php echo $this->field_id( array( 'exchange' => $type ) ); ?>" value="<?php echo $this->prefs['exchange'][ $type ]; ?>" size="8" />
|
151 |
+
<?php if ( isset( $this->prefs['currency'] ) ) : ?><span class="mycred-gateway-<?php echo $this->id; ?>-currency"><?php echo ( $this->prefs['currency'] == '' ) ? __( 'Select currency', 'mycred' ) : $this->prefs['currency']; ?></span><?php else : ?><span><?php echo $default; ?></span><?php endif; ?>
|
152 |
</div></td>
|
153 |
</tr>
|
154 |
</table>
|
241 |
/**
|
242 |
* Log Gateway Call
|
243 |
* @since 1.5
|
244 |
+
* @version 1.0.1
|
245 |
*/
|
246 |
function log_call( $post_id, $log ) {
|
247 |
|
248 |
+
if ( is_numeric( $post_id ) )
|
249 |
+
$post = get_post( $post_id );
|
250 |
+
else
|
251 |
+
$post = get_page_by_title( $post_id, OBJECT, 'buycred_payment' );
|
252 |
+
|
253 |
+
if ( isset( $post->ID ) )
|
254 |
+
return wp_insert_comment( array(
|
255 |
+
'comment_post_ID' => $post->ID,
|
256 |
+
'comment_author' => $this->label,
|
257 |
+
'comment_content' => implode( '<br />', $log ),
|
258 |
+
'comment_type' => 'payment_gatway_call',
|
259 |
+
'comment_author_IP' => $_SERVER['REMOTE_ADDR'],
|
260 |
+
'comment_date' => current_time( 'mysql' ),
|
261 |
+
'comment_approved' => 1
|
262 |
+
) );
|
263 |
|
264 |
}
|
265 |
|
889 |
/**
|
890 |
* Encode Sales Data
|
891 |
* @since 0.1
|
892 |
+
* @version 1.1
|
893 |
*/
|
894 |
function encode_sales_data( $data ) {
|
|
|
|
|
895 |
$protect = new myCRED_Protect();
|
896 |
+
if ( $protect !== false )
|
897 |
+
return $protect->do_encode( $data );
|
898 |
+
else
|
899 |
+
return $data;
|
900 |
}
|
901 |
|
902 |
/**
|
903 |
* Decode Sales Data
|
904 |
* @since 0.1
|
905 |
+
* @version 1.1
|
906 |
*/
|
907 |
function decode_sales_data( $data ) {
|
|
|
|
|
908 |
$protect = new myCRED_Protect();
|
909 |
+
if ( $protect !== false )
|
910 |
+
return $protect->do_decode( $data );
|
911 |
+
else
|
912 |
+
return $data;
|
913 |
}
|
914 |
|
915 |
/**
|
952 |
/**
|
953 |
* Currencies Dropdown
|
954 |
* @since 0.1
|
955 |
+
* @version 1.0.2
|
956 |
*/
|
957 |
function currencies_dropdown( $name = '', $js = '' ) {
|
958 |
$currencies = array(
|
977 |
'BRL' => 'Brazilian Real',
|
978 |
'MYR' => 'Malaysian Ringgits',
|
979 |
'PHP' => 'Philippine Pesos',
|
980 |
+
'RUB' => 'Russian Ruble',
|
981 |
'TWD' => 'Taiwan New Dollars',
|
982 |
'THB' => 'Thai Baht'
|
983 |
);
|
1504 |
/**
|
1505 |
* Complete Payment
|
1506 |
* @since 1.4
|
1507 |
+
* @version 1.3
|
1508 |
*/
|
1509 |
function complete_payment( $pending_payment = array(), $transaction_id = '' ) {
|
1510 |
$reference = 'buy_creds_with_' . str_replace( array( ' ', '-' ), '_', $this->id );
|
1519 |
|
1520 |
$point_type = $pending_payment['ctype'];
|
1521 |
$mycred = mycred( $point_type );
|
1522 |
+
$data = array( 'ref_type' => 'user', 'txt_id' => $transaction_id, 'sales_data' => implode( '|', $sales_data ) );
|
1523 |
|
1524 |
+
$reply = false;
|
1525 |
+
|
1526 |
+
if ( ! $mycred->has_entry( $reference, $pending_payment['from'], $pending_payment['to'], $data, $pending_payment['ctype'] ) )
|
1527 |
+
$reply = $mycred->add_creds(
|
1528 |
+
$reference,
|
1529 |
+
$pending_payment['to'],
|
1530 |
+
$pending_payment['amount'],
|
1531 |
+
$this->get_log_entry( $pending_payment['to'], $pending_payment['from'] ),
|
1532 |
+
$pending_payment['from'],
|
1533 |
+
$data,
|
1534 |
+
$pending_payment['ctype']
|
1535 |
+
);
|
1536 |
|
1537 |
return apply_filters( 'mycred_buycred_complete_payment', $reply, $transaction_id, $this );
|
1538 |
}
|
1539 |
+
|
1540 |
+
/**
|
1541 |
+
* Trash Pending Payment
|
1542 |
+
* @since 1.5.3
|
1543 |
+
* @version 1.0
|
1544 |
+
*/
|
1545 |
+
function trash_pending_payment( $payment_id ) {
|
1546 |
+
|
1547 |
+
if ( is_numeric( $payment_id ) )
|
1548 |
+
$post = get_post( $payment_id );
|
1549 |
+
else
|
1550 |
+
$post = get_page_by_title( $payment_id, OBJECT, 'buycred_payment' );
|
1551 |
+
|
1552 |
+
if ( isset( $post->ID ) )
|
1553 |
+
wp_trash_post( $post->ID );
|
1554 |
+
|
1555 |
+
}
|
1556 |
}
|
1557 |
}
|
1558 |
?>
|
addons/buy-creds/gateways/bitpay.php
CHANGED
@@ -78,7 +78,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
|
|
78 |
|
79 |
// If account is credited, delete the post and it's comments.
|
80 |
if ( $this->complete_payment( $pending_payment, $_POST['id'] ) )
|
81 |
-
|
82 |
else
|
83 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
84 |
|
78 |
|
79 |
// If account is credited, delete the post and it's comments.
|
80 |
if ( $this->complete_payment( $pending_payment, $_POST['id'] ) )
|
81 |
+
$this->trash_pending_payment( $pending_post_id );
|
82 |
else
|
83 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
84 |
|
addons/buy-creds/gateways/netbilling.php
CHANGED
@@ -100,7 +100,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
|
|
100 |
|
101 |
// If account is credited, delete the post and it's comments.
|
102 |
if ( $this->complete_payment( $pending_payment, $_REQUEST['Ecom_Ezic_Response_TransactionID'] ) )
|
103 |
-
|
104 |
else
|
105 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
106 |
|
100 |
|
101 |
// If account is credited, delete the post and it's comments.
|
102 |
if ( $this->complete_payment( $pending_payment, $_REQUEST['Ecom_Ezic_Response_TransactionID'] ) )
|
103 |
+
$this->trash_pending_payment( $pending_post_id );
|
104 |
else
|
105 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
106 |
|
addons/buy-creds/gateways/paypal-standard.php
CHANGED
@@ -160,7 +160,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
|
|
160 |
|
161 |
// If account is credited, delete the post and it's comments.
|
162 |
if ( $this->complete_payment( $pending_payment, $_POST['txn_id'] ) )
|
163 |
-
|
164 |
else
|
165 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
166 |
|
160 |
|
161 |
// If account is credited, delete the post and it's comments.
|
162 |
if ( $this->complete_payment( $pending_payment, $_POST['txn_id'] ) )
|
163 |
+
$this->trash_pending_payment( $pending_post_id );
|
164 |
else
|
165 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
166 |
|
addons/buy-creds/gateways/skrill.php
CHANGED
@@ -137,7 +137,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
|
|
137 |
|
138 |
// If account is credited, delete the post and it's comments.
|
139 |
if ( $this->complete_payment( $pending_payment, $_POST['transaction_id'] ) )
|
140 |
-
|
141 |
else
|
142 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
143 |
|
137 |
|
138 |
// If account is credited, delete the post and it's comments.
|
139 |
if ( $this->complete_payment( $pending_payment, $_POST['transaction_id'] ) )
|
140 |
+
$this->trash_pending_payment( $pending_post_id );
|
141 |
else
|
142 |
$new_call[] = __( 'Failed to credit users account.', 'mycred' );
|
143 |
|
addons/buy-creds/gateways/zombaio.php
CHANGED
@@ -167,7 +167,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
|
|
167 |
|
168 |
// If account is credited, delete the post and it's comments.
|
169 |
if ( $this->complete_payment( $pending_payment, $_GET['TransactionID'] ) ) {
|
170 |
-
|
171 |
$outcome = 'COMPLETED';
|
172 |
}
|
173 |
else
|
167 |
|
168 |
// If account is credited, delete the post and it's comments.
|
169 |
if ( $this->complete_payment( $pending_payment, $_GET['TransactionID'] ) ) {
|
170 |
+
$this->trash_pending_payment( $pending_post_id );
|
171 |
$outcome = 'COMPLETED';
|
172 |
}
|
173 |
else
|
addons/sell-content/myCRED-addon-sell-content.php
CHANGED
@@ -168,21 +168,21 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
|
|
168 |
/**
|
169 |
* Make Purchase
|
170 |
* @since 0.1
|
171 |
-
* @version 1.3
|
172 |
*/
|
173 |
public function make_purchase() {
|
174 |
global $mycred_content_purchase;
|
175 |
|
176 |
$mycred_content_purchase = false;
|
177 |
if ( ! $this->is_installed() ) return;
|
178 |
-
if ( ! isset( $_POST['mycred_purchase_token'] ) || ! isset( $_POST['mycred_purchase'] ) || ! isset( $_POST['mycred_purchase']['
|
179 |
if ( ! wp_verify_nonce( $_POST['mycred_purchase_token'], 'buy-content' ) ) return;
|
180 |
|
181 |
-
$action = sanitize_key( $_POST['mycred_purchase']['
|
182 |
-
$post_id = absint( $_POST['mycred_purchase']['
|
183 |
-
$post_type = sanitize_key( $_POST['mycred_purchase']['
|
184 |
-
$user_id = absint( $_POST['mycred_purchase']['
|
185 |
-
$author = absint( $_POST['mycred_purchase']['
|
186 |
|
187 |
$sell_content = $this->sell_content;
|
188 |
$prefs = $this->get_sale_prefs( $post_id );
|
@@ -555,12 +555,13 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
|
|
555 |
/**
|
556 |
* Add Meta Box to Content
|
557 |
* @since 0.1
|
558 |
-
* @version 1.0
|
559 |
*/
|
560 |
public function add_metabox() {
|
561 |
$sell_content = $this->sell_content;
|
562 |
$post_types = explode( ',', $sell_content['post_types'] );
|
563 |
$name = sprintf( __( '%s Sell This', 'mycred' ), mycred_label() );
|
|
|
564 |
foreach ( (array) $post_types as $post_type ) {
|
565 |
$post_type = trim( $post_type );
|
566 |
add_meta_box(
|
@@ -938,7 +939,7 @@ jQuery(function($) {
|
|
938 |
*
|
939 |
* @returns (string) content
|
940 |
* @since 0.1
|
941 |
-
* @version 1.1
|
942 |
*/
|
943 |
public function the_content( $content ) {
|
944 |
global $mycred_content_purchase;
|
@@ -973,12 +974,12 @@ jQuery(function($) {
|
|
973 |
$template = $this->get_button( $template, $the_post );
|
974 |
return '
|
975 |
<form action="" method="post">
|
976 |
-
<input type="hidden" name="mycred_purchase[
|
977 |
-
<input type="hidden" name="mycred_purchase[
|
978 |
-
<input type="hidden" name="mycred_purchase[
|
979 |
-
<input type="hidden" name="mycred_purchase[
|
980 |
<input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
|
981 |
-
<input type="hidden" name="mycred_purchase[
|
982 |
<div class="mycred-content-forsale">' . $template . '</div>
|
983 |
</form>';
|
984 |
}
|
@@ -1010,7 +1011,7 @@ jQuery(function($) {
|
|
1010 |
*
|
1011 |
* @returns (string) content
|
1012 |
* @since 0.1
|
1013 |
-
* @version 1.3
|
1014 |
*/
|
1015 |
public function render_shortcode( $atts, $content ) {
|
1016 |
// The Post
|
@@ -1060,12 +1061,12 @@ jQuery(function($) {
|
|
1060 |
unset( $content );
|
1061 |
return '
|
1062 |
<form action="" method="post">
|
1063 |
-
<input type="hidden" name="mycred_purchase[
|
1064 |
-
<input type="hidden" name="mycred_purchase[
|
1065 |
-
<input type="hidden" name="mycred_purchase[
|
1066 |
-
<input type="hidden" name="mycred_purchase[
|
1067 |
<input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
|
1068 |
-
<input type="hidden" name="mycred_purchase[
|
1069 |
<div class="mycred-content-forsale">' . $template . '</div>
|
1070 |
</form>';
|
1071 |
}
|
168 |
/**
|
169 |
* Make Purchase
|
170 |
* @since 0.1
|
171 |
+
* @version 1.3.1
|
172 |
*/
|
173 |
public function make_purchase() {
|
174 |
global $mycred_content_purchase;
|
175 |
|
176 |
$mycred_content_purchase = false;
|
177 |
if ( ! $this->is_installed() ) return;
|
178 |
+
if ( ! isset( $_POST['mycred_purchase_token'] ) || ! isset( $_POST['mycred_purchase'] ) || ! isset( $_POST['mycred_purchase']['mst_action'] ) || ! isset( $_POST['mycred_purchase']['mst_author'] ) || ! isset( $_POST['mycred_purchase']['mst_post_id'] ) || ! isset( $_POST['mycred_purchase']['mst_post_type'] ) || ! isset( $_POST['mycred_purchase']['mst_user_id'] ) ) return;
|
179 |
if ( ! wp_verify_nonce( $_POST['mycred_purchase_token'], 'buy-content' ) ) return;
|
180 |
|
181 |
+
$action = sanitize_key( $_POST['mycred_purchase']['mst_action'] );
|
182 |
+
$post_id = absint( $_POST['mycred_purchase']['mst_post_id'] );
|
183 |
+
$post_type = sanitize_key( $_POST['mycred_purchase']['mst_post_type'] );
|
184 |
+
$user_id = absint( $_POST['mycred_purchase']['mst_user_id'] );
|
185 |
+
$author = absint( $_POST['mycred_purchase']['mst_author'] );
|
186 |
|
187 |
$sell_content = $this->sell_content;
|
188 |
$prefs = $this->get_sale_prefs( $post_id );
|
555 |
/**
|
556 |
* Add Meta Box to Content
|
557 |
* @since 0.1
|
558 |
+
* @version 1.0.1
|
559 |
*/
|
560 |
public function add_metabox() {
|
561 |
$sell_content = $this->sell_content;
|
562 |
$post_types = explode( ',', $sell_content['post_types'] );
|
563 |
$name = sprintf( __( '%s Sell This', 'mycred' ), mycred_label() );
|
564 |
+
$name = apply_filters( 'mycred_sell_this_label', $name, $this );
|
565 |
foreach ( (array) $post_types as $post_type ) {
|
566 |
$post_type = trim( $post_type );
|
567 |
add_meta_box(
|
939 |
*
|
940 |
* @returns (string) content
|
941 |
* @since 0.1
|
942 |
+
* @version 1.1.1
|
943 |
*/
|
944 |
public function the_content( $content ) {
|
945 |
global $mycred_content_purchase;
|
974 |
$template = $this->get_button( $template, $the_post );
|
975 |
return '
|
976 |
<form action="" method="post">
|
977 |
+
<input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
|
978 |
+
<input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
|
979 |
+
<input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
|
980 |
+
<input type="hidden" name="mycred_purchase[mst_author]" value="' . $the_post->post_author . '" />
|
981 |
<input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
|
982 |
+
<input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
|
983 |
<div class="mycred-content-forsale">' . $template . '</div>
|
984 |
</form>';
|
985 |
}
|
1011 |
*
|
1012 |
* @returns (string) content
|
1013 |
* @since 0.1
|
1014 |
+
* @version 1.3.1
|
1015 |
*/
|
1016 |
public function render_shortcode( $atts, $content ) {
|
1017 |
// The Post
|
1061 |
unset( $content );
|
1062 |
return '
|
1063 |
<form action="" method="post">
|
1064 |
+
<input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
|
1065 |
+
<input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
|
1066 |
+
<input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
|
1067 |
+
<input type="hidden" name="mycred_purchase[mst_author]" value="' . $the_post->post_author . '" />
|
1068 |
<input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
|
1069 |
+
<input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
|
1070 |
<div class="mycred-content-forsale">' . $template . '</div>
|
1071 |
</form>';
|
1072 |
}
|
includes/mycred-admin.php
CHANGED
@@ -65,7 +65,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
|
|
65 |
/**
|
66 |
* Profile Actions
|
67 |
* @since 1.5
|
68 |
-
* @version 1.0
|
69 |
*/
|
70 |
public function edit_profile_actions() {
|
71 |
|
@@ -156,6 +156,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
|
|
156 |
|
157 |
// Remove Users balance
|
158 |
mycred_delete_user_meta( $user_id, $ctype );
|
|
|
159 |
|
160 |
global $wpdb;
|
161 |
|
65 |
/**
|
66 |
* Profile Actions
|
67 |
* @since 1.5
|
68 |
+
* @version 1.0.1
|
69 |
*/
|
70 |
public function edit_profile_actions() {
|
71 |
|
156 |
|
157 |
// Remove Users balance
|
158 |
mycred_delete_user_meta( $user_id, $ctype );
|
159 |
+
mycred_delete_user_meta( $user_id, $ctype, '_total' );
|
160 |
|
161 |
global $wpdb;
|
162 |
|
includes/mycred-functions.php
CHANGED
@@ -1705,22 +1705,68 @@ endif;
|
|
1705 |
if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
|
1706 |
function mycred_count_ref_instances( $reference = '', $user_id = NULL, $type = 'mycred_default' )
|
1707 |
{
|
1708 |
-
if ( empty( $reference ) ) return
|
1709 |
|
1710 |
$mycred = mycred( $type );
|
1711 |
|
1712 |
global $wpdb;
|
1713 |
|
1714 |
if ( $user_id !== NULL ) {
|
1715 |
-
|
1716 |
-
|
1717 |
-
$
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1721 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1722 |
|
1723 |
-
return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s;", $reference ) );
|
1724 |
}
|
1725 |
endif;
|
1726 |
|
@@ -2146,7 +2192,7 @@ endif;
|
|
2146 |
* Create Encrypted Token
|
2147 |
* Converts an array of data into an encrypted string.
|
2148 |
* @since 1.5
|
2149 |
-
* @version 1.
|
2150 |
*/
|
2151 |
if ( ! function_exists( 'mycred_create_token' ) ) :
|
2152 |
function mycred_create_token( $string = '' )
|
@@ -2155,8 +2201,12 @@ if ( ! function_exists( 'mycred_create_token' ) ) :
|
|
2155 |
$string = implode( ':', $string );
|
2156 |
|
2157 |
$protect = mycred_protect();
|
|
|
|
|
|
|
|
|
2158 |
|
2159 |
-
return apply_filters( 'mycred_create_token', $
|
2160 |
|
2161 |
}
|
2162 |
endif;
|
@@ -2166,7 +2216,7 @@ endif;
|
|
2166 |
* Will either return an array of data that have been decrypted or
|
2167 |
* false if the string is invalid. Also checks the number of variables in the array.
|
2168 |
* @since 1.5
|
2169 |
-
* @version 1.
|
2170 |
*/
|
2171 |
if ( ! function_exists( 'mycred_verify_token' ) ) :
|
2172 |
function mycred_verify_token( $string = '', $length = 1 )
|
@@ -2174,11 +2224,15 @@ if ( ! function_exists( 'mycred_verify_token' ) ) :
|
|
2174 |
$reply = false;
|
2175 |
|
2176 |
$protect = mycred_protect();
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
|
|
|
|
|
|
|
|
2182 |
|
2183 |
return apply_filters( 'mycred_verify_token', $reply, $string, $length );
|
2184 |
|
1705 |
if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
|
1706 |
function mycred_count_ref_instances( $reference = '', $user_id = NULL, $type = 'mycred_default' )
|
1707 |
{
|
1708 |
+
if ( empty( $reference ) ) return 0;
|
1709 |
|
1710 |
$mycred = mycred( $type );
|
1711 |
|
1712 |
global $wpdb;
|
1713 |
|
1714 |
if ( $user_id !== NULL ) {
|
1715 |
+
$count = $wpdb->get_var( $wpdb->prepare( "
|
1716 |
+
SELECT COUNT(*)
|
1717 |
+
FROM {$mycred->log_table}
|
1718 |
+
WHERE ref = %s
|
1719 |
+
AND user_id = %d
|
1720 |
+
AND ctype = %s;", $reference, $user_id, $type ) );
|
1721 |
+
}
|
1722 |
+
else {
|
1723 |
+
$count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s;", $reference ) );
|
1724 |
+
}
|
1725 |
+
|
1726 |
+
if ( $count === NULL )
|
1727 |
+
$count = 0;
|
1728 |
+
|
1729 |
+
return $count;
|
1730 |
+
}
|
1731 |
+
endif;
|
1732 |
+
|
1733 |
+
/**
|
1734 |
+
* Count Reference ID Instances
|
1735 |
+
* Counts the total number of occurrences of a specific reference combined with a reference ID for a user.
|
1736 |
+
* @see http://codex.mycred.me/functions/mycred_count_ref_id_instances/
|
1737 |
+
* @param $reference (string) required reference to check
|
1738 |
+
* @param $user_id (int) option to check references for a specific user
|
1739 |
+
* @uses get_var()
|
1740 |
+
* @since 1.5.3
|
1741 |
+
* @version 1.0
|
1742 |
+
*/
|
1743 |
+
if ( ! function_exists( 'mycred_count_ref_id_instances' ) ) :
|
1744 |
+
function mycred_count_ref_id_instances( $reference = '', $ref_id = NULL, $user_id = NULL, $type = 'mycred_default' )
|
1745 |
+
{
|
1746 |
+
if ( $reference == '' || $ref_id == '' ) return 0;
|
1747 |
+
|
1748 |
+
$mycred = mycred( $type );
|
1749 |
+
|
1750 |
+
global $wpdb;
|
1751 |
+
|
1752 |
+
if ( $user_id !== NULL ) {
|
1753 |
+
$count = $wpdb->get_var( $wpdb->prepare( "
|
1754 |
+
SELECT COUNT(*)
|
1755 |
+
FROM {$mycred->log_table}
|
1756 |
+
WHERE ref = %s
|
1757 |
+
AND ref_id = %d
|
1758 |
+
AND user_id = %d
|
1759 |
+
AND ctype = %s;", $reference, $ref_id, $user_id, $type ) );
|
1760 |
}
|
1761 |
+
else {
|
1762 |
+
$count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s AND ref_id = %d;", $reference, $ref_id ) );
|
1763 |
+
}
|
1764 |
+
|
1765 |
+
if ( $count === NULL )
|
1766 |
+
$count = 0;
|
1767 |
+
|
1768 |
+
return $count;
|
1769 |
|
|
|
1770 |
}
|
1771 |
endif;
|
1772 |
|
2192 |
* Create Encrypted Token
|
2193 |
* Converts an array of data into an encrypted string.
|
2194 |
* @since 1.5
|
2195 |
+
* @version 1.1
|
2196 |
*/
|
2197 |
if ( ! function_exists( 'mycred_create_token' ) ) :
|
2198 |
function mycred_create_token( $string = '' )
|
2201 |
$string = implode( ':', $string );
|
2202 |
|
2203 |
$protect = mycred_protect();
|
2204 |
+
if ( $protect !== false )
|
2205 |
+
$encoded = $protect->do_encode( $string );
|
2206 |
+
else
|
2207 |
+
$encoded = $string;
|
2208 |
|
2209 |
+
return apply_filters( 'mycred_create_token', $encoded, $string );
|
2210 |
|
2211 |
}
|
2212 |
endif;
|
2216 |
* Will either return an array of data that have been decrypted or
|
2217 |
* false if the string is invalid. Also checks the number of variables in the array.
|
2218 |
* @since 1.5
|
2219 |
+
* @version 1.1
|
2220 |
*/
|
2221 |
if ( ! function_exists( 'mycred_verify_token' ) ) :
|
2222 |
function mycred_verify_token( $string = '', $length = 1 )
|
2224 |
$reply = false;
|
2225 |
|
2226 |
$protect = mycred_protect();
|
2227 |
+
if ( $protect !== false ) {
|
2228 |
+
$decoded = $protect->do_decode( $string );
|
2229 |
+
$array = explode( ':', $decoded );
|
2230 |
+
if ( count( $array ) == $length )
|
2231 |
+
$reply = $array;
|
2232 |
+
}
|
2233 |
+
else {
|
2234 |
+
$reply = $string;
|
2235 |
+
}
|
2236 |
|
2237 |
return apply_filters( 'mycred_verify_token', $reply, $string, $length );
|
2238 |
|
includes/mycred-install.php
CHANGED
@@ -50,7 +50,7 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
|
|
50 |
|
51 |
// mcrypt library check (if missing, this will cause a fatal error)
|
52 |
$extensions = get_loaded_extensions();
|
53 |
-
if ( ! in_array( 'mcrypt', $extensions ) )
|
54 |
$message[] = __( 'The mcrypt PHP library must be enabled in order to use this plugin! Please check your PHP configuration or contact your host and ask them to enable it for you!', 'mycred' );
|
55 |
|
56 |
// Not empty $message means there are issues
|
50 |
|
51 |
// mcrypt library check (if missing, this will cause a fatal error)
|
52 |
$extensions = get_loaded_extensions();
|
53 |
+
if ( ! in_array( 'mcrypt', $extensions ) && ! defined( 'MYCRED_DISABLE_PROTECTION' ) )
|
54 |
$message[] = __( 'The mcrypt PHP library must be enabled in order to use this plugin! Please check your PHP configuration or contact your host and ask them to enable it for you!', 'mycred' );
|
55 |
|
56 |
// Not empty $message means there are issues
|
includes/mycred-log.php
CHANGED
@@ -382,7 +382,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
|
|
382 |
/**
|
383 |
* Pagination
|
384 |
* @since 1.4
|
385 |
-
* @version 1.0
|
386 |
*/
|
387 |
public function pagination( $location = 'top', $id = '' ) {
|
388 |
$output = '';
|
@@ -399,6 +399,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
|
|
399 |
}
|
400 |
|
401 |
$page_links = array();
|
|
|
402 |
|
403 |
$disable_first = $disable_last = '';
|
404 |
if ( $current == 1 )
|
@@ -407,15 +408,15 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
|
|
407 |
$disable_last = ' disabled';
|
408 |
|
409 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
410 |
-
|
411 |
-
esc_attr__( 'Go to the first page' ),
|
412 |
esc_url( remove_query_arg( 'paged', $current_url ) ),
|
413 |
'«'
|
414 |
);
|
415 |
|
416 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
417 |
-
|
418 |
-
esc_attr__( 'Go to the previous page' ),
|
419 |
esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $current_url ) ),
|
420 |
'‹'
|
421 |
);
|
@@ -423,38 +424,37 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
|
|
423 |
if ( 'bottom' == $location )
|
424 |
$html_current_page = $current;
|
425 |
else
|
426 |
-
$html_current_page = sprintf( '<input class="current-page
|
427 |
-
esc_attr__( 'Current page' ),
|
428 |
$current,
|
429 |
strlen( $total_pages )
|
430 |
);
|
431 |
|
432 |
$html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) );
|
433 |
-
$page_links[] = '<span class="paging-input">' . sprintf( _x( '%1$s of %2$s', '
|
434 |
|
435 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
436 |
-
|
437 |
-
esc_attr__( 'Go to the next page' ),
|
438 |
esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $current_url ) ),
|
439 |
'›'
|
440 |
);
|
441 |
|
442 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
443 |
-
|
444 |
-
esc_attr__( 'Go to the last page' ),
|
445 |
esc_url( add_query_arg( 'paged', $total_pages, $current_url ) ),
|
446 |
'»'
|
447 |
);
|
448 |
|
449 |
-
$
|
450 |
-
$output .= "\n<span class='$pagination_links_class'>" . join( "\n", $page_links ) . '</span>';
|
451 |
|
452 |
if ( $total_pages )
|
453 |
$page_class = $total_pages < 2 ? ' one-page' : '';
|
454 |
else
|
455 |
$page_class = ' no-pages';
|
456 |
|
457 |
-
echo
|
458 |
}
|
459 |
|
460 |
/**
|
382 |
/**
|
383 |
* Pagination
|
384 |
* @since 1.4
|
385 |
+
* @version 1.0.2
|
386 |
*/
|
387 |
public function pagination( $location = 'top', $id = '' ) {
|
388 |
$output = '';
|
399 |
}
|
400 |
|
401 |
$page_links = array();
|
402 |
+
$pagination_class = apply_filters( 'mycred_log_paginate_class', '', $this );
|
403 |
|
404 |
$disable_first = $disable_last = '';
|
405 |
if ( $current == 1 )
|
408 |
$disable_last = ' disabled';
|
409 |
|
410 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
411 |
+
$pagination_class . 'first-page' . $disable_first,
|
412 |
+
esc_attr__( 'Go to the first page', 'mycred' ),
|
413 |
esc_url( remove_query_arg( 'paged', $current_url ) ),
|
414 |
'«'
|
415 |
);
|
416 |
|
417 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
418 |
+
$pagination_class . 'prev-page' . $disable_first,
|
419 |
+
esc_attr__( 'Go to the previous page', 'mycred' ),
|
420 |
esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $current_url ) ),
|
421 |
'‹'
|
422 |
);
|
424 |
if ( 'bottom' == $location )
|
425 |
$html_current_page = $current;
|
426 |
else
|
427 |
+
$html_current_page = sprintf( '<input class="current-page" title="%s" type="text" name="paged" value="%s" size="%d" />',
|
428 |
+
esc_attr__( 'Current page', 'mycred' ),
|
429 |
$current,
|
430 |
strlen( $total_pages )
|
431 |
);
|
432 |
|
433 |
$html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) );
|
434 |
+
$page_links[] = '<span class="paging-input">' . sprintf( _x( '%1$s of %2$s', 'mycred' ), $html_current_page, $html_total_pages ) . '</span>';
|
435 |
|
436 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
437 |
+
$pagination_class . 'next-page' . $disable_last,
|
438 |
+
esc_attr__( 'Go to the next page', 'mycred' ),
|
439 |
esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $current_url ) ),
|
440 |
'›'
|
441 |
);
|
442 |
|
443 |
$page_links[] = sprintf( '<a class="%s" title="%s" href="%s">%s</a>',
|
444 |
+
$pagination_class . 'last-page' . $disable_last,
|
445 |
+
esc_attr__( 'Go to the last page', 'mycred' ),
|
446 |
esc_url( add_query_arg( 'paged', $total_pages, $current_url ) ),
|
447 |
'»'
|
448 |
);
|
449 |
|
450 |
+
$output .= "\n" . '<span class="pagination-links">' . join( "\n", $page_links ) . '</span>';
|
|
|
451 |
|
452 |
if ( $total_pages )
|
453 |
$page_class = $total_pages < 2 ? ' one-page' : '';
|
454 |
else
|
455 |
$page_class = ' no-pages';
|
456 |
|
457 |
+
echo '<div class="tablenav-pages' . $page_class . '">' . $output . '</div>';
|
458 |
}
|
459 |
|
460 |
/**
|
includes/mycred-protect.php
CHANGED
@@ -4,104 +4,114 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
4 |
/**
|
5 |
* myCRED_Protect class
|
6 |
* @since 0.1
|
7 |
-
* @version 1.
|
8 |
*/
|
9 |
-
|
|
|
10 |
|
11 |
-
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
20 |
|
21 |
-
|
22 |
-
|
|
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
|
|
88 |
}
|
89 |
-
return base64_decode( $data );
|
90 |
}
|
91 |
-
|
92 |
|
93 |
/**
|
94 |
* Load myCRED Protect
|
95 |
* @since 0.1
|
96 |
* @version 1.0.1
|
97 |
*/
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
$mycred_protect
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
|
|
107 |
?>
|
4 |
/**
|
5 |
* myCRED_Protect class
|
6 |
* @since 0.1
|
7 |
+
* @version 1.2
|
8 |
*/
|
9 |
+
if ( ! class_exists( 'myCRED_Protect' ) && function_exists( 'mcrypt_get_iv_size' ) && ! defined( 'MYCRED_DISABLE_PROTECTION' ) ) :
|
10 |
+
class myCRED_Protect {
|
11 |
|
12 |
+
public $skey;
|
13 |
|
14 |
+
/**
|
15 |
+
* Construct
|
16 |
+
*/
|
17 |
+
public function __construct( $custom_key = NULL ) {
|
18 |
+
if ( $custom_key !== NULL )
|
19 |
+
$this->skey = $custom_key;
|
20 |
+
else {
|
21 |
+
$skey = mycred_get_option( 'mycred_key', false );
|
22 |
+
if ( $skey === false )
|
23 |
+
$skey = $this->reset_key();
|
24 |
|
25 |
+
$this->skey = $skey;
|
26 |
+
}
|
27 |
+
}
|
28 |
|
29 |
+
/**
|
30 |
+
* Reset Key
|
31 |
+
*/
|
32 |
+
public function reset_key() {
|
33 |
+
$skey = wp_generate_password( 12, true, true );
|
34 |
+
mycred_update_option( 'mycred_key', $skey );
|
35 |
+
$this->skey = $skey;
|
36 |
+
}
|
37 |
|
38 |
+
/**
|
39 |
+
* Encode
|
40 |
+
*/
|
41 |
+
public function do_encode( $value ) {
|
42 |
+
if ( ! $value ) { return false; }
|
43 |
+
$text = $value;
|
44 |
+
$iv_size = mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
|
45 |
+
$iv = mcrypt_create_iv( $iv_size, MCRYPT_RAND );
|
46 |
+
$crypttext = mcrypt_encrypt( MCRYPT_RIJNDAEL_256, $this->skey, $text, MCRYPT_MODE_ECB, $iv );
|
47 |
+
return trim( $this->do_safe_b64encode( $crypttext ) );
|
48 |
+
}
|
49 |
|
50 |
+
/**
|
51 |
+
* Decode
|
52 |
+
*/
|
53 |
+
public function do_decode( $value ) {
|
54 |
+
if ( ! $value ) { return false; }
|
55 |
+
$crypttext = $this->do_safe_b64decode( $value );
|
56 |
+
$iv_size = mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
|
57 |
+
$iv = mcrypt_create_iv( $iv_size, MCRYPT_RAND );
|
58 |
+
$decrypttext = mcrypt_decrypt( MCRYPT_RIJNDAEL_256, $this->skey, $crypttext, MCRYPT_MODE_ECB, $iv );
|
59 |
+
return trim( $decrypttext );
|
60 |
+
}
|
61 |
|
62 |
+
/**
|
63 |
+
* Retrieve
|
64 |
+
*/
|
65 |
+
protected function do_retrieve( $value ) {
|
66 |
+
if ( ! $value ) { return false; }
|
67 |
+
$crypttext = $this->do_safe_b64decode( $value );
|
68 |
+
$iv_size = mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
|
69 |
+
$iv = mcrypt_create_iv( $iv_size, MCRYPT_RAND );
|
70 |
+
$decrypttext = mcrypt_decrypt( MCRYPT_RIJNDAEL_256, $this->skey, $crypttext, MCRYPT_MODE_ECB, $iv );
|
71 |
+
$string = trim( $decrypttext );
|
72 |
+
parse_str( $string, $output );
|
73 |
+
return $output;
|
74 |
+
}
|
75 |
|
76 |
+
/**
|
77 |
+
* Safe Encode
|
78 |
+
*/
|
79 |
+
protected function do_safe_b64encode( $string ) {
|
80 |
+
$data = base64_encode( $string );
|
81 |
+
$data = str_replace( array( '+', '/', '=' ), array( '-', '_', '' ), $data );
|
82 |
+
return $data;
|
83 |
+
}
|
84 |
|
85 |
+
/**
|
86 |
+
* Safe Decode
|
87 |
+
*/
|
88 |
+
protected function do_safe_b64decode( $string ) {
|
89 |
+
$data = str_replace( array( '-', '_' ), array( '+', '/' ), $string );
|
90 |
+
$mod4 = strlen( $data ) % 4;
|
91 |
+
if ( $mod4 ) {
|
92 |
+
$data .= substr( '====', $mod4 );
|
93 |
+
}
|
94 |
+
return base64_decode( $data );
|
95 |
}
|
|
|
96 |
}
|
97 |
+
endif;
|
98 |
|
99 |
/**
|
100 |
* Load myCRED Protect
|
101 |
* @since 0.1
|
102 |
* @version 1.0.1
|
103 |
*/
|
104 |
+
if ( ! function_exists( 'mycred_protect' ) ) :
|
105 |
+
function mycred_protect()
|
106 |
+
{
|
107 |
+
if ( ! class_exists( 'myCRED_Protect' ) || defined( 'MYCRED_DISABLE_PROTECTION' ) ) return false;
|
108 |
+
|
109 |
+
global $mycred_protect;
|
110 |
+
|
111 |
+
if ( ! isset( $mycred_protect ) || ! is_object( $mycred_protect ) )
|
112 |
+
$mycred_protect = new myCRED_Protect();
|
113 |
+
|
114 |
+
return $mycred_protect;
|
115 |
+
}
|
116 |
+
endif;
|
117 |
?>
|
includes/mycred-referrals.php
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Load Referral Program
|
6 |
+
* @since 1.5.3
|
7 |
+
* @version 1.0
|
8 |
+
*/
|
9 |
+
function mycred_load_referral_program() {
|
10 |
+
|
11 |
+
// BuddyPress: Hook into user activation
|
12 |
+
if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) === true )
|
13 |
+
add_action( 'bp_core_activated_user', 'mycred_detect_bp_user_activation' );
|
14 |
+
|
15 |
+
// Logged in users do not get points
|
16 |
+
if ( is_user_logged_in() && apply_filters( 'mycred_affiliate_allow_members', false ) === false ) return;
|
17 |
+
|
18 |
+
// Points for visits
|
19 |
+
add_action( 'template_redirect', 'mycred_detect_referred_visits' );
|
20 |
+
|
21 |
+
// Points for signups
|
22 |
+
add_action( 'user_register', 'mycred_detect_referred_signups' );
|
23 |
+
|
24 |
+
}
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Detect Referred Visits
|
28 |
+
* @since 1.5.3
|
29 |
+
* @version 1.0
|
30 |
+
*/
|
31 |
+
if ( ! function_exists( 'mycred_detect_referred_visits' ) ) :
|
32 |
+
function mycred_detect_referred_visits() {
|
33 |
+
|
34 |
+
do_action( 'mycred_referred_visit' );
|
35 |
+
|
36 |
+
$keys = apply_filters( 'mycred_referral_keys', array() );
|
37 |
+
if ( ! empty( $keys ) ) {
|
38 |
+
wp_redirect( remove_query_arg( $keys ) );
|
39 |
+
exit;
|
40 |
+
}
|
41 |
+
|
42 |
+
}
|
43 |
+
endif;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Detect Referred Signups
|
47 |
+
* @since 1.5.3
|
48 |
+
* @version 1.0
|
49 |
+
*/
|
50 |
+
if ( ! function_exists( 'mycred_detect_referred_signups' ) ) :
|
51 |
+
function mycred_detect_referred_signups( $new_user_id ) {
|
52 |
+
|
53 |
+
do_action( 'mycred_referred_signup', $new_user_id );
|
54 |
+
|
55 |
+
}
|
56 |
+
endif;
|
57 |
+
|
58 |
+
/**
|
59 |
+
* Detect Referred BP User Activation
|
60 |
+
* @since 1.5.3
|
61 |
+
* @version 1.0
|
62 |
+
*/
|
63 |
+
if ( ! function_exists( 'mycred_detect_bp_user_activation' ) ) :
|
64 |
+
function mycred_detect_bp_user_activation( $user_id ) {
|
65 |
+
|
66 |
+
do_action( 'mycred_bp_user_activated', $user_id );
|
67 |
+
|
68 |
+
}
|
69 |
+
endif;
|
70 |
+
?>
|
includes/mycred-shortcodes.php
CHANGED
@@ -162,7 +162,7 @@ endif;
|
|
162 |
* myCRED Shortcode: mycred_leaderboard
|
163 |
* @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
|
164 |
* @since 0.1
|
165 |
-
* @version 1.4
|
166 |
*/
|
167 |
if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
168 |
function mycred_render_shortcode_leaderboard( $atts, $content = '' )
|
@@ -210,7 +210,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
|
210 |
GROUP BY user_id
|
211 |
ORDER BY SUM( creds ) {$order} {$limit};", $based_on );
|
212 |
|
213 |
-
$leaderboard = $wpdb->get_results( apply_filters( 'mycred_ranking_sql', $SQL ), 'ARRAY_A' );
|
214 |
|
215 |
$output = '';
|
216 |
$in_list = false;
|
@@ -246,6 +246,10 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
|
246 |
// Prep
|
247 |
$class = array();
|
248 |
|
|
|
|
|
|
|
|
|
249 |
// Classes
|
250 |
$class[] = 'item-' . $position;
|
251 |
if ( $position == 0 )
|
@@ -356,20 +360,20 @@ endif;
|
|
356 |
* myCRED Shortcode: mycred_my_ranking
|
357 |
* @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
|
358 |
* @since 0.1
|
359 |
-
* @version 1.4
|
360 |
*/
|
361 |
if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
|
362 |
function mycred_render_shortcode_my_ranking( $atts )
|
363 |
{
|
364 |
extract( shortcode_atts( array(
|
365 |
-
'user_id' =>
|
366 |
'ctype' => 'mycred_default',
|
367 |
'based_on' => 'balance',
|
368 |
'missing' => 0
|
369 |
), $atts ) );
|
370 |
|
371 |
// If no id is given
|
372 |
-
if ( $user_id
|
373 |
// Current user must be logged in for this shortcode to work
|
374 |
if ( ! is_user_logged_in() ) return;
|
375 |
// Get current user id
|
@@ -394,14 +398,14 @@ if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
|
|
394 |
INNER JOIN {$wpdb->usermeta} um
|
395 |
ON ( u.ID = um.user_id )
|
396 |
WHERE um.meta_key = %s
|
397 |
-
ORDER BY um.meta_value+0
|
398 |
else
|
399 |
$full_SQL = $wpdb->prepare( "
|
400 |
SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
|
401 |
FROM {$mycred->log_table}
|
402 |
WHERE ref = %s
|
403 |
GROUP BY user_id
|
404 |
-
ORDER BY SUM( creds )
|
405 |
|
406 |
$full_leaderboard = $wpdb->get_results( $full_SQL, 'ARRAY_A' );
|
407 |
|
@@ -1085,4 +1089,38 @@ if ( ! function_exists( 'mycred_run_exchange' ) ) :
|
|
1085 |
|
1086 |
}
|
1087 |
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1088 |
?>
|
162 |
* myCRED Shortcode: mycred_leaderboard
|
163 |
* @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
|
164 |
* @since 0.1
|
165 |
+
* @version 1.4.1
|
166 |
*/
|
167 |
if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
168 |
function mycred_render_shortcode_leaderboard( $atts, $content = '' )
|
210 |
GROUP BY user_id
|
211 |
ORDER BY SUM( creds ) {$order} {$limit};", $based_on );
|
212 |
|
213 |
+
$leaderboard = $wpdb->get_results( apply_filters( 'mycred_ranking_sql', $SQL, $atts ), 'ARRAY_A' );
|
214 |
|
215 |
$output = '';
|
216 |
$in_list = false;
|
246 |
// Prep
|
247 |
$class = array();
|
248 |
|
249 |
+
// Position
|
250 |
+
if ( $offset != '' && $offset > 0 )
|
251 |
+
$position = $position + $offset;
|
252 |
+
|
253 |
// Classes
|
254 |
$class[] = 'item-' . $position;
|
255 |
if ( $position == 0 )
|
360 |
* myCRED Shortcode: mycred_my_ranking
|
361 |
* @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
|
362 |
* @since 0.1
|
363 |
+
* @version 1.4.1
|
364 |
*/
|
365 |
if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
|
366 |
function mycred_render_shortcode_my_ranking( $atts )
|
367 |
{
|
368 |
extract( shortcode_atts( array(
|
369 |
+
'user_id' => '',
|
370 |
'ctype' => 'mycred_default',
|
371 |
'based_on' => 'balance',
|
372 |
'missing' => 0
|
373 |
), $atts ) );
|
374 |
|
375 |
// If no id is given
|
376 |
+
if ( $user_id == '' ) {
|
377 |
// Current user must be logged in for this shortcode to work
|
378 |
if ( ! is_user_logged_in() ) return;
|
379 |
// Get current user id
|
398 |
INNER JOIN {$wpdb->usermeta} um
|
399 |
ON ( u.ID = um.user_id )
|
400 |
WHERE um.meta_key = %s
|
401 |
+
ORDER BY um.meta_value+0 DESC;", $ctype );
|
402 |
else
|
403 |
$full_SQL = $wpdb->prepare( "
|
404 |
SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
|
405 |
FROM {$mycred->log_table}
|
406 |
WHERE ref = %s
|
407 |
GROUP BY user_id
|
408 |
+
ORDER BY SUM( creds ) DESC;", $based_on );
|
409 |
|
410 |
$full_leaderboard = $wpdb->get_results( $full_SQL, 'ARRAY_A' );
|
411 |
|
1089 |
|
1090 |
}
|
1091 |
endif;
|
1092 |
+
|
1093 |
+
/**
|
1094 |
+
* Affiliate Link
|
1095 |
+
* @since 1.5.3
|
1096 |
+
* @version
|
1097 |
+
*/
|
1098 |
+
if ( ! function_exists( 'mycred_render_affiliate_link' ) ) :
|
1099 |
+
function mycred_render_affiliate_link( $atts, $content = '' ) {
|
1100 |
+
|
1101 |
+
$type = 'mycred_default';
|
1102 |
+
if ( isset( $atts['type'] ) && $atts['type'] != '' )
|
1103 |
+
$type = $atts['type'];
|
1104 |
+
|
1105 |
+
return apply_filters( 'mycred_affiliate_link_' . $type, '', $atts, $content );
|
1106 |
+
|
1107 |
+
}
|
1108 |
+
endif;
|
1109 |
+
|
1110 |
+
/**
|
1111 |
+
* Affiliate ID
|
1112 |
+
* @since 1.5.3
|
1113 |
+
* @version
|
1114 |
+
*/
|
1115 |
+
if ( ! function_exists( 'mycred_render_affiliate_id' ) ) :
|
1116 |
+
function mycred_render_affiliate_id( $atts, $content = '' ) {
|
1117 |
+
|
1118 |
+
$type = 'mycred_default';
|
1119 |
+
if ( isset( $atts['type'] ) && $atts['type'] != '' )
|
1120 |
+
$type = $atts['type'];
|
1121 |
+
|
1122 |
+
return apply_filters( 'mycred_affiliate_id_' . $type, '', $atts, $content );
|
1123 |
+
|
1124 |
+
}
|
1125 |
+
endif;
|
1126 |
?>
|
includes/mycred-widgets.php
CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
4 |
/**
|
5 |
* Widget: myCRED Balance
|
6 |
* @since 0.1
|
7 |
-
* @version 1.
|
8 |
*/
|
9 |
if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
10 |
class myCRED_Widget_Balance extends WP_Widget {
|
@@ -60,20 +60,13 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
60 |
|
61 |
$layout = $mycred->template_tags_amount( $instance['cred_format'], $balance );
|
62 |
$layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
$ranking = str_replace( '%ranking%', '', $ranking );
|
71 |
-
}
|
72 |
-
else {
|
73 |
-
$ranking = str_replace( array( '%rank%', '%ranking%' ), '', $instance['rank_format'] );
|
74 |
-
}
|
75 |
-
$ranking = '<div class="myCRED-rank">' . $ranking . '</div>';
|
76 |
-
$layout .= $ranking;
|
77 |
}
|
78 |
echo '<div class="myCRED-balance">' . $layout . '</div>';
|
79 |
|
@@ -168,8 +161,6 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
168 |
$history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
|
169 |
$history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
|
170 |
|
171 |
-
$show_rank = isset( $instance['show_rank'] ) ? $instance['show_rank'] : 0;
|
172 |
-
$rank_format = isset( $instance['rank_format'] ) ? $instance['rank_format'] : '#%ranking%';
|
173 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
174 |
$message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
|
175 |
|
@@ -177,9 +168,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
177 |
$mycred_types = mycred_get_types();
|
178 |
|
179 |
// CSS to help with show/hide
|
180 |
-
$
|
181 |
-
if ( $show_rank )
|
182 |
-
$rank_format_class = ' ex-field';
|
183 |
if ( $show_history )
|
184 |
$history_option_class = ' ex-field';
|
185 |
if ( $show_visitors )
|
@@ -215,17 +204,6 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
215 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
216 |
</p>
|
217 |
|
218 |
-
<!-- Ranking -->
|
219 |
-
<p class="myCRED-widget-field">
|
220 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_rank' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>" value="1"<?php checked( $show_rank, 1 ); ?> class="checkbox" />
|
221 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>"><?php _e( 'Include users leaderboard position', 'mycred' ); ?></label><br />
|
222 |
-
<span class="mycred-hidden<?php echo $rank_format_class; ?>">
|
223 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'rank_format' ) ); ?>"><?php _e( 'Format', 'mycred' ); ?>:</label>
|
224 |
-
<input id="<?php echo esc_attr( $this->get_field_id( 'rank_format' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'rank_format' ) ); ?>" type="text" value="<?php echo $rank_format; ?>" class="widefat" /><br />
|
225 |
-
<small><?php _e( 'This will be appended after the balance.', 'mycred' ); ?></small>
|
226 |
-
</span>
|
227 |
-
</p>
|
228 |
-
|
229 |
<!-- History -->
|
230 |
<p class="myCRED-widget-field">
|
231 |
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" />
|
@@ -254,10 +232,6 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
254 |
<script type="text/javascript">//<![CDATA[
|
255 |
jQuery(function($) {
|
256 |
$(document).ready(function(){
|
257 |
-
$('#<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>').click(function(){
|
258 |
-
// This > <label> > <br> > <span>
|
259 |
-
$(this).next().next().next().toggleClass( 'ex-field' );
|
260 |
-
});
|
261 |
$('#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>').click(function(){
|
262 |
$(this).next().next().next().toggleClass( 'ex-field' );
|
263 |
});
|
@@ -281,14 +255,6 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
|
281 |
|
282 |
$instance['cred_format'] = trim( $new_instance['cred_format'] );
|
283 |
|
284 |
-
$instance['show_rank'] = ( isset( $new_instance['show_rank'] ) ) ? 1 : 0;
|
285 |
-
$rank_format = trim( $new_instance['rank_format'] );
|
286 |
-
|
287 |
-
if ( ! function_exists( 'mycred_get_users_rank' ) )
|
288 |
-
$instance['rank_format'] = str_replace( '%rank%', '%ranking%', $rank_format );
|
289 |
-
else
|
290 |
-
$instance['rank_format'] = $rank_format;
|
291 |
-
|
292 |
$instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
|
293 |
$instance['history_title'] = trim( $new_instance['history_title'] );
|
294 |
$instance['history_format'] = trim( $new_instance['history_format'] );
|
4 |
/**
|
5 |
* Widget: myCRED Balance
|
6 |
* @since 0.1
|
7 |
+
* @version 1.4
|
8 |
*/
|
9 |
if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
|
10 |
class myCRED_Widget_Balance extends WP_Widget {
|
60 |
|
61 |
$layout = $mycred->template_tags_amount( $instance['cred_format'], $balance );
|
62 |
$layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
|
63 |
+
if ( function_exists( 'mycred_get_users_rank' ) ) {
|
64 |
+
$rank_id = mycred_get_users_rank( $user_id, 'ID' );
|
65 |
+
$layout = str_replace( '%rank%', get_the_title( $rank_id ), $layout );
|
66 |
+
$layout = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank_id ), $layout );
|
67 |
+
}
|
68 |
+
else {
|
69 |
+
$ranking = str_replace( array( '%rank%', '%rank_logo%', '%ranking%' ), '', $layout );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
echo '<div class="myCRED-balance">' . $layout . '</div>';
|
72 |
|
161 |
$history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
|
162 |
$history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
|
163 |
|
|
|
|
|
164 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
165 |
$message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
|
166 |
|
168 |
$mycred_types = mycred_get_types();
|
169 |
|
170 |
// CSS to help with show/hide
|
171 |
+
$history_option_class = $visitor_option_class = '';
|
|
|
|
|
172 |
if ( $show_history )
|
173 |
$history_option_class = ' ex-field';
|
174 |
if ( $show_visitors )
|
204 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
205 |
</p>
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
<!-- History -->
|
208 |
<p class="myCRED-widget-field">
|
209 |
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" />
|
232 |
<script type="text/javascript">//<![CDATA[
|
233 |
jQuery(function($) {
|
234 |
$(document).ready(function(){
|
|
|
|
|
|
|
|
|
235 |
$('#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>').click(function(){
|
236 |
$(this).next().next().next().toggleClass( 'ex-field' );
|
237 |
});
|
255 |
|
256 |
$instance['cred_format'] = trim( $new_instance['cred_format'] );
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
$instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
|
259 |
$instance['history_title'] = trim( $new_instance['history_title'] );
|
260 |
$instance['history_format'] = trim( $new_instance['history_format'] );
|
lang/mycred-en_US.mo
CHANGED
Binary file
|
lang/mycred-en_US.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: English (USA)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -24,88 +24,88 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: en_US"
|
26 |
|
27 |
-
#: ../mycred.php:
|
28 |
msgid "Balance"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../mycred.php:
|
32 |
msgid "%label% History"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../mycred.php:
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../mycred.php:
|
41 |
msgid "Awesome People"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../mycred.php:
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
-
#: includes/mycred-shortcodes.php:
|
49 |
msgid "Processing..."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../mycred.php:
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../mycred.php:
|
59 |
msgid ""
|
60 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
61 |
"can not be undone!"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../mycred.php:
|
65 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../mycred.php:
|
69 |
msgid "Done!"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../mycred.php:
|
73 |
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../mycred.php:
|
77 |
msgid "Export users %plural%"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../mycred.php:
|
81 |
msgid "Edit Users Balance"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../mycred.php:
|
85 |
msgid "Edit Log Entry"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../mycred.php:
|
89 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../mycred.php:
|
93 |
msgid "Log entry updated"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../mycred.php:
|
97 |
-
#: notices.php:
|
98 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
99 |
msgid "Setup"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../mycred.php:
|
103 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
104 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
105 |
msgid "Settings"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../mycred.php:
|
109 |
msgid ""
|
110 |
"Make sure to backup your database and files before updating, in case "
|
111 |
"anything goes wrong!"
|
@@ -143,10 +143,10 @@ msgstr ""
|
|
143 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
144 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
145 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
146 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
147 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
148 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
149 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
150 |
msgid "Select"
|
151 |
msgstr ""
|
152 |
|
@@ -246,7 +246,7 @@ msgid "Requirements"
|
|
246 |
msgstr ""
|
247 |
|
248 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
249 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
250 |
msgid "Users"
|
251 |
msgstr ""
|
252 |
|
@@ -329,22 +329,22 @@ msgstr ""
|
|
329 |
|
330 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
331 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
332 |
-
#: modules/mycred-module-buddypress.php:
|
333 |
msgid "Do not show"
|
334 |
msgstr ""
|
335 |
|
336 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
337 |
-
#: buddypress.php:
|
338 |
msgid "Include in Profile Header"
|
339 |
msgstr ""
|
340 |
|
341 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
342 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
343 |
msgid "Include under the \"Profile\" tab"
|
344 |
msgstr ""
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
347 |
-
#: buddypress.php:
|
348 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
349 |
msgstr ""
|
350 |
|
@@ -413,7 +413,7 @@ msgstr ""
|
|
413 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
414 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
415 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
416 |
-
#: modules/mycred-module-settings.php:
|
417 |
msgid "Access Denied"
|
418 |
msgstr ""
|
419 |
|
@@ -564,8 +564,8 @@ msgstr ""
|
|
564 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
565 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
566 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
567 |
-
#: modules/mycred-module-hooks.php:
|
568 |
-
#: plugins/mycred-hook-badgeOS.php:
|
569 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
570 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
571 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -662,15 +662,15 @@ msgstr ""
|
|
662 |
|
663 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
664 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
665 |
-
#: creds.php:
|
666 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
667 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
668 |
-
#: includes/mycred-shortcodes.php:
|
669 |
msgid "Amount"
|
670 |
msgstr ""
|
671 |
|
672 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
673 |
-
#: modules/mycred-module-hooks.php:
|
674 |
msgid "Interval"
|
675 |
msgstr ""
|
676 |
|
@@ -718,7 +718,7 @@ msgid "Edit Pending Payment"
|
|
718 |
msgstr ""
|
719 |
|
720 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
721 |
-
#: addon-buy-creds.php:
|
722 |
msgid "No pending payments found"
|
723 |
msgstr ""
|
724 |
|
@@ -727,23 +727,23 @@ msgid "Not found in Trash"
|
|
727 |
msgstr ""
|
728 |
|
729 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
730 |
-
#: addon-buy-creds.php:
|
731 |
msgid "Transaction ID"
|
732 |
msgstr ""
|
733 |
|
734 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
735 |
-
#: addon-buy-creds.php:
|
736 |
msgid "Buyer"
|
737 |
msgstr ""
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
740 |
-
#: addon-buy-creds.php:
|
741 |
#: gateway.php:563
|
742 |
msgid "Cost"
|
743 |
msgstr ""
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
746 |
-
#: addon-buy-creds.php:
|
747 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
748 |
msgid "Gateway"
|
749 |
msgstr ""
|
@@ -792,7 +792,7 @@ msgstr ""
|
|
792 |
|
793 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
794 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
795 |
-
#: module-settings.php:
|
796 |
msgid "Point Types"
|
797 |
msgstr ""
|
798 |
|
@@ -845,7 +845,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
845 |
msgstr ""
|
846 |
|
847 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
848 |
-
#: hooks.php:
|
849 |
msgid "Available Shortcodes"
|
850 |
msgstr ""
|
851 |
|
@@ -872,7 +872,7 @@ msgid "%s Payment Gateways"
|
|
872 |
msgstr ""
|
873 |
|
874 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
875 |
-
#: addon-buy-creds.php:
|
876 |
msgid "buyCRED Settings"
|
877 |
msgstr ""
|
878 |
|
@@ -897,7 +897,7 @@ msgid "Enable for test purchases."
|
|
897 |
msgstr ""
|
898 |
|
899 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
900 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
901 |
msgid "Update Settings"
|
902 |
msgstr ""
|
903 |
|
@@ -905,101 +905,101 @@ msgstr ""
|
|
905 |
msgid "More Gateways"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
909 |
#: 634
|
910 |
msgid "Date"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
914 |
msgid "Payed"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
918 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
922 |
#: booking/mycred-eventespresso3.php:367
|
923 |
msgid "Gateway Settings"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
927 |
-
#: content/myCRED-addon-sell-content.php:
|
928 |
msgid "No purchases found"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
932 |
-
#: addon-buy-creds.php:
|
933 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
937 |
-
#: addon-buy-creds.php:
|
938 |
msgid "No gateways installed."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
942 |
-
#: addon-buy-creds.php:
|
943 |
msgid "Gateway does not exist."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
947 |
msgid "Yourself"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
951 |
msgid "No active gateways found."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
955 |
msgid "The selected gateway is not active."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
959 |
#, php-format
|
960 |
msgid "Buy with %gateway%"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
964 |
#: content/myCRED-addon-sell-content.php:44
|
965 |
msgid "Buy Now"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
969 |
msgid "No users found"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
973 |
msgid "To"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
977 |
msgid "Select Amount"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
981 |
msgid "min."
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
985 |
msgid "Select Gateway"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
989 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
990 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
991 |
#: php:35
|
992 |
msgid "Pay Now"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
996 |
-
#: php:
|
997 |
msgid "Cancel"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1001 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1002 |
-
#: module-settings.php:
|
1003 |
msgid "Actions"
|
1004 |
msgstr ""
|
1005 |
|
@@ -1139,55 +1139,55 @@ msgstr ""
|
|
1139 |
msgid "The following information will be sent to the gateway"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1143 |
msgid "Outside US"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1147 |
msgid "January"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1151 |
msgid "February"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1155 |
msgid "March"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1159 |
msgid "April"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1163 |
msgid "May"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1167 |
msgid "June"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1171 |
msgid "July"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1175 |
msgid "August"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1179 |
msgid "September"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1183 |
msgid "October"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1187 |
msgid "November"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1191 |
msgid "December"
|
1192 |
msgstr ""
|
1193 |
|
@@ -1426,7 +1426,7 @@ msgstr ""
|
|
1426 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1427 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1428 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1429 |
-
#: modules/mycred-module-hooks.php:
|
1430 |
msgid "Title"
|
1431 |
msgstr ""
|
1432 |
|
@@ -1614,7 +1614,7 @@ msgid "not yet used"
|
|
1614 |
msgstr ""
|
1615 |
|
1616 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1617 |
-
#: php:
|
1618 |
msgid "Total"
|
1619 |
msgstr ""
|
1620 |
|
@@ -1776,7 +1776,7 @@ msgid "Apply Coupon"
|
|
1776 |
msgstr ""
|
1777 |
|
1778 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1779 |
-
#: notices/myCRED-addon-email-notices.php:
|
1780 |
msgid "Email Notice"
|
1781 |
msgstr ""
|
1782 |
|
@@ -1961,17 +1961,17 @@ msgid ""
|
|
1961 |
msgstr ""
|
1962 |
|
1963 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1964 |
-
#: notices/myCRED-addon-email-notices.php:
|
1965 |
msgid "Email Settings"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1969 |
-
#: notices/myCRED-addon-email-notices.php:
|
1970 |
msgid "Senders Name:"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1974 |
-
#: notices/myCRED-addon-email-notices.php:
|
1975 |
msgid "Senders Email:"
|
1976 |
msgstr ""
|
1977 |
|
@@ -1995,167 +1995,167 @@ msgstr ""
|
|
1995 |
msgid "Ignored if HTML is not allowed in emails."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
1999 |
-
#: notices/myCRED-addon-email-notices.php:
|
2000 |
msgid "Email Subject"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2004 |
msgid "Status"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2008 |
msgid "Not Active"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2012 |
#, php-format
|
2013 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2017 |
msgid "Active"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2021 |
#, php-format
|
2022 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2026 |
msgid "Email is sent when"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2030 |
msgid "Missing instance for this notice!"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2034 |
-
#: notices/myCRED-addon-email-notices.php:
|
2035 |
-
#: addon-email-notices.php:
|
2036 |
msgid "Sent To"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2040 |
-
#: notices/myCRED-addon-email-notices.php:
|
2041 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2042 |
msgid "User"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2046 |
-
#: notices/myCRED-addon-email-notices.php:
|
2047 |
msgid "Administrator"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2051 |
msgid "Both Administrator and User"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2055 |
msgid "Available Template Tags"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2059 |
msgid "Email Header"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2063 |
msgid "Send this email notice when..."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2067 |
msgid "Recipient:"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2071 |
msgid "Both"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2075 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2076 |
-
#: settings.php:
|
2077 |
-
#: module-settings.php:
|
2078 |
msgid "Label"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2082 |
msgid "Reply-To Email:"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2086 |
msgid "Save"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2090 |
msgid "CSS Styling"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2094 |
msgid "Site Related"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2098 |
msgid "Your websites title"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2102 |
msgid "Your websites address"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2106 |
msgid "Your websites tagline (description)"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2110 |
msgid "Your websites admin email"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
msgid "Total number of blog members"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2118 |
-
#: notices/myCRED-addon-email-notices.php:
|
2119 |
-
#: addon-email-notices.php:
|
2120 |
msgid "Email Notice Updated."
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2124 |
msgid "Email Notice Activated"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2128 |
msgid "Email Notice Saved"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2132 |
msgid ""
|
2133 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2134 |
"are not yet ready to use this email notice!"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2138 |
#, php-format
|
2139 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2143 |
msgid "This email notice is active."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2147 |
msgid "Settings saved."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2151 |
msgid "Unsubscribe"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2155 |
msgid "There are no email notifications yet."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2159 |
msgid "Save Changes"
|
2160 |
msgstr ""
|
2161 |
|
@@ -2202,7 +2202,7 @@ msgstr ""
|
|
2202 |
|
2203 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2204 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2205 |
-
#: 52 ../includes/mycred-network.php:53
|
2206 |
msgid "myCRED"
|
2207 |
msgstr ""
|
2208 |
|
@@ -2276,7 +2276,7 @@ msgstr ""
|
|
2276 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2277 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2278 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2279 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2280 |
msgid "Exchange Rate"
|
2281 |
msgstr ""
|
2282 |
|
@@ -2563,7 +2563,7 @@ msgstr ""
|
|
2563 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2564 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2565 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2566 |
-
#: sell-content.php:
|
2567 |
msgid "Button Label"
|
2568 |
msgstr ""
|
2569 |
|
@@ -2577,7 +2577,7 @@ msgstr ""
|
|
2577 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2578 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2579 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2580 |
-
#: sell-content.php:
|
2581 |
msgid "Price"
|
2582 |
msgstr ""
|
2583 |
|
@@ -2678,8 +2678,8 @@ msgid "Reject"
|
|
2678 |
msgstr ""
|
2679 |
|
2680 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2681 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2682 |
-
#: modules/mycred-module-settings.php:
|
2683 |
msgid "Delete"
|
2684 |
msgstr ""
|
2685 |
|
@@ -2796,7 +2796,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2796 |
msgstr ""
|
2797 |
|
2798 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2799 |
-
#: module-buddypress.php:
|
2800 |
msgid "Template"
|
2801 |
msgstr ""
|
2802 |
|
@@ -3056,7 +3056,7 @@ msgid ""
|
|
3056 |
msgstr ""
|
3057 |
|
3058 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3059 |
-
#: php:
|
3060 |
msgid "Do not show."
|
3061 |
msgstr ""
|
3062 |
|
@@ -3106,9 +3106,9 @@ msgid "No users found with this rank"
|
|
3106 |
msgstr ""
|
3107 |
|
3108 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3109 |
-
#: shortcodes.php:
|
3110 |
-
#: shortcodes.php:
|
3111 |
-
#: shortcodes.php:
|
3112 |
msgid "error"
|
3113 |
msgstr ""
|
3114 |
|
@@ -3229,38 +3229,38 @@ msgstr ""
|
|
3229 |
msgid "%s Sell This"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3233 |
#, php-format
|
3234 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3238 |
msgid "Setup add-on"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3242 |
msgid "Lets do it"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3246 |
#, php-format
|
3247 |
msgid "Enable sale of this %s"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3251 |
msgid "Purchase expires after"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3255 |
msgid "Thank you for your purchase!"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3259 |
-
#: content/myCRED-addon-sell-content.php:
|
3260 |
msgid "The following content is set for sale:"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3264 |
msgid "Purchased"
|
3265 |
msgstr ""
|
3266 |
|
@@ -3273,7 +3273,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3273 |
msgstr ""
|
3274 |
|
3275 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3276 |
-
#: php:
|
3277 |
msgid "Transfer"
|
3278 |
msgstr ""
|
3279 |
|
@@ -3308,7 +3308,7 @@ msgid ""
|
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3311 |
-
#: php:
|
3312 |
msgid "Insufficient Funds. Please try a lower amount."
|
3313 |
msgstr ""
|
3314 |
|
@@ -3675,282 +3675,282 @@ msgstr ""
|
|
3675 |
msgid "My Entire Log"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: ../includes/mycred-functions.php:
|
3679 |
msgid "ref empty"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: ../includes/mycred-functions.php:
|
3683 |
msgid "incorrect user id format"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: ../includes/mycred-functions.php:
|
3687 |
msgid "incorrect unix timestamp (from):"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: ../includes/mycred-functions.php:
|
3691 |
msgid "incorrect unix timestamp (to):"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: ../includes/mycred-functions.php:
|
3695 |
msgid "Website Registration"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: ../includes/mycred-functions.php:
|
3699 |
msgid "Website Visit"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: ../includes/mycred-functions.php:
|
3703 |
msgid "Viewing Content (Member)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: ../includes/mycred-functions.php:
|
3707 |
msgid "Viewing Content (Author)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: ../includes/mycred-functions.php:
|
3711 |
msgid "Logging in"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: ../includes/mycred-functions.php:
|
3715 |
msgid "Publishing Content"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: ../includes/mycred-functions.php:
|
3719 |
msgid "Approved Comment"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: ../includes/mycred-functions.php:
|
3723 |
msgid "Unapproved Comment"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: ../includes/mycred-functions.php:
|
3727 |
msgid "SPAM Comment"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: ../includes/mycred-functions.php:
|
3731 |
msgid "Deleted Comment"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: ../includes/mycred-functions.php:
|
3735 |
msgid "Link Click"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: ../includes/mycred-functions.php:
|
3739 |
msgid "Watching Video"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: ../includes/mycred-functions.php:
|
3743 |
msgid "Visitor Referral"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: ../includes/mycred-functions.php:
|
3747 |
msgid "Signup Referral"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: ../includes/mycred-functions.php:
|
3751 |
msgid "New Profile Update"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: ../includes/mycred-functions.php:
|
3755 |
msgid "Avatar Upload"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: ../includes/mycred-functions.php:
|
3759 |
msgid "New Friendship"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: ../includes/mycred-functions.php:
|
3763 |
msgid "Ended Friendship"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: ../includes/mycred-functions.php:
|
3767 |
msgid "New Profile Comment"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: ../includes/mycred-functions.php:
|
3771 |
msgid "Profile Comment Deletion"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: ../includes/mycred-functions.php:
|
3775 |
msgid "New Message"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: ../includes/mycred-functions.php:
|
3779 |
msgid "Sending Gift"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: ../includes/mycred-functions.php:
|
3783 |
msgid "New Group"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: ../includes/mycred-functions.php:
|
3787 |
msgid "Deleted Group"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: ../includes/mycred-functions.php:
|
3791 |
msgid "New Group Forum Topic"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: ../includes/mycred-functions.php:
|
3795 |
msgid "Edit Group Forum Topic"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: ../includes/mycred-functions.php:
|
3799 |
msgid "New Group Forum Post"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: ../includes/mycred-functions.php:
|
3803 |
msgid "Edit Group Forum Post"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: ../includes/mycred-functions.php:
|
3807 |
msgid "Joining Group"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: ../includes/mycred-functions.php:
|
3811 |
msgid "Leaving Group"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: ../includes/mycred-functions.php:
|
3815 |
msgid "New Group Avatar"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: ../includes/mycred-functions.php:
|
3819 |
msgid "New Group Comment"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: ../includes/mycred-functions.php:
|
3823 |
#: php:166
|
3824 |
msgid "Photo Upload"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: ../includes/mycred-functions.php:
|
3828 |
#: php:176
|
3829 |
msgid "Video Upload"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: ../includes/mycred-functions.php:
|
3833 |
#: php:186
|
3834 |
msgid "Music Upload"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: ../includes/mycred-functions.php:
|
3838 |
msgid "New Link"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: ../includes/mycred-functions.php:
|
3842 |
msgid "Link Voting"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: ../includes/mycred-functions.php:
|
3846 |
msgid "Link Update"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: ../includes/mycred-functions.php:
|
3850 |
msgid "New Forum (bbPress)"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: ../includes/mycred-functions.php:
|
3854 |
msgid "New Forum Topic (bbPress)"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: ../includes/mycred-functions.php:
|
3858 |
msgid "Favorited Topic (bbPress)"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: ../includes/mycred-functions.php:
|
3862 |
msgid "New Topic Reply (bbPress)"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: ../includes/mycred-functions.php:
|
3866 |
msgid "Form Submission (Contact Form 7)"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: ../includes/mycred-functions.php:
|
3870 |
msgid "Form Submission (Gravity Form)"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: ../includes/mycred-functions.php:
|
3874 |
msgid "New Forum Topic (SimplePress)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: ../includes/mycred-functions.php:
|
3878 |
msgid "New Forum Post (SimplePress)"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: ../includes/mycred-functions.php:
|
3882 |
msgid "Poll Voting"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: ../includes/mycred-functions.php:
|
3886 |
msgid "Sending an Invite"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: ../includes/mycred-functions.php:
|
3890 |
msgid "Accepting an Invite"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: ../includes/mycred-functions.php:
|
3894 |
msgid "Banking Payout"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: ../includes/mycred-functions.php:
|
3898 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: ../includes/mycred-functions.php:
|
3902 |
msgid "buyCRED Purchase (Skrill)"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: ../includes/mycred-functions.php:
|
3906 |
msgid "buyCRED Purchase (Zombaio)"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: ../includes/mycred-functions.php:
|
3910 |
msgid "buyCRED Purchase (NETBilling)"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: ../includes/mycred-functions.php:
|
3914 |
msgid "buyCRED Purchase (BitPay)"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: ../includes/mycred-functions.php:
|
3918 |
msgid "Coupon Purchase"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: ../includes/mycred-functions.php:
|
3922 |
msgid "Store Purchase (WooCommerce)"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: ../includes/mycred-functions.php:
|
3926 |
msgid "Store Purchase (MarketPress)"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: ../includes/mycred-functions.php:
|
3930 |
msgid "Store Purchase (WP E-Commerce)"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: ../includes/mycred-functions.php:
|
3934 |
msgid "Event Payment (Event Espresso)"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: ../includes/mycred-functions.php:
|
3938 |
msgid "Event Sale (Event Espresso)"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: ../includes/mycred-functions.php:
|
3942 |
msgid "Event Payment (Events Manager)"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: ../includes/mycred-functions.php:
|
3946 |
msgid "Event Sale (Events Manager)"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: ../includes/mycred-functions.php:
|
3950 |
msgid "Content Purchase / Sale"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: ../includes/mycred-functions.php:
|
3954 |
msgid "Manual Adjustment by Admin"
|
3955 |
msgstr ""
|
3956 |
|
@@ -3998,115 +3998,115 @@ msgstr ""
|
|
3998 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: ../includes/mycred-install.php:
|
4002 |
msgid ""
|
4003 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4004 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4005 |
"for you!"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: ../includes/mycred-install.php:
|
4009 |
msgid ""
|
4010 |
"Sorry but your WordPress installation does not reach the minimum "
|
4011 |
"requirements for running myCRED. The following errors were given:"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: ../includes/mycred-install.php:
|
4015 |
msgid "myCRED needs your attention."
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: ../includes/mycred-install.php:
|
4019 |
msgid "Run Setup"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: ../includes/mycred-install.php:
|
4023 |
msgid "myCRED Setup"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: ../includes/mycred-install.php:
|
4027 |
#, php-format
|
4028 |
msgid "%s Setup"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: ../includes/mycred-install.php:
|
4032 |
msgid "Step"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: ../includes/mycred-install.php:
|
4036 |
msgid ""
|
4037 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4038 |
"points format, layout and security settings."
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: ../includes/mycred-install.php:
|
4042 |
msgid "Begin Setup"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: ../includes/mycred-install.php:
|
4046 |
msgid "Select the format you want to use for your points."
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: ../includes/mycred-install.php:
|
4050 |
msgid "Format"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: ../includes/mycred-install.php:
|
4054 |
msgid "Separators"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: ../includes/mycred-install.php:
|
4058 |
msgid "Decimals"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: ../includes/mycred-install.php:
|
4062 |
msgid "Use zero for no decimals."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: ../includes/mycred-install.php:
|
4066 |
msgid "Presentation"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#: ../includes/mycred-install.php:
|
4070 |
msgid "Name (Singular)"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: ../includes/mycred-install.php:
|
4074 |
msgid "Name (Plural)"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#: ../includes/mycred-install.php:
|
4078 |
msgid "Prefix"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: ../includes/mycred-install.php:
|
4082 |
msgid "Suffix"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#: ../includes/mycred-install.php:
|
4086 |
msgid "Cancel Setup"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: ../includes/mycred-install.php:
|
4090 |
msgid "Next"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: ../includes/mycred-install.php:
|
4094 |
msgid "Security"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: ../includes/mycred-install.php:
|
4098 |
msgid "Edit Settings Capability"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: ../includes/mycred-install.php:
|
4102 |
msgid "Edit Users %plural% Capability"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: ../includes/mycred-install.php:
|
4106 |
msgid "Maximum %plural% payouts"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#: ../includes/mycred-install.php:
|
4110 |
msgid ""
|
4111 |
"As an added security, you can set the maximum amount a user can gain or "
|
4112 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4114,39 +4114,39 @@ msgid ""
|
|
4114 |
"disable."
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: ../includes/mycred-install.php:
|
4118 |
msgid "Excludes"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: ../includes/mycred-install.php:
|
4122 |
msgid "Exclude those who can \"Edit Settings\"."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: ../includes/mycred-install.php:
|
4126 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: ../includes/mycred-install.php:
|
4130 |
msgid "Exclude the following user IDs:"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: ../includes/mycred-install.php:
|
4134 |
msgid "User Deletions"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
-
#: ../includes/mycred-install.php:
|
4138 |
msgid "Delete log entries when user is deleted."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#: ../includes/mycred-install.php:
|
4142 |
msgid "Ready"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#: ../includes/mycred-install.php:
|
4146 |
msgid "Almost done! Click the button below to finish this setup."
|
4147 |
msgstr ""
|
4148 |
|
4149 |
-
#: ../includes/mycred-install.php:
|
4150 |
msgid "Install & Run"
|
4151 |
msgstr ""
|
4152 |
|
@@ -4161,29 +4161,29 @@ msgid_plural "entries"
|
|
4161 |
msgstr[0] ""
|
4162 |
msgstr[1] ""
|
4163 |
|
4164 |
-
#: ../includes/mycred-log.php:
|
4165 |
msgid "Go to the first page"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: ../includes/mycred-log.php:
|
4169 |
msgid "Go to the previous page"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: ../includes/mycred-log.php:
|
4173 |
msgid "Current page"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: ../includes/mycred-log.php:
|
4177 |
#, php-format
|
4178 |
msgctxt "paging"
|
4179 |
msgid "%1$s of %2$s"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: ../includes/mycred-log.php:
|
4183 |
msgid "Go to the next page"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: ../includes/mycred-log.php:
|
4187 |
msgid "Go to the last page"
|
4188 |
msgstr ""
|
4189 |
|
@@ -4191,7 +4191,7 @@ msgstr ""
|
|
4191 |
msgid "Show all references"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4195 |
msgid "User ID"
|
4196 |
msgstr ""
|
4197 |
|
@@ -4405,92 +4405,92 @@ msgid ""
|
|
4405 |
"about your setup!"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: ../includes/mycred-shortcodes.php:
|
4409 |
msgid "Leaderboard is empty."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: ../includes/mycred-shortcodes.php:
|
4413 |
msgid "Amount missing!"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: ../includes/mycred-shortcodes.php:
|
4417 |
msgid "Log Template Missing!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: ../includes/mycred-shortcodes.php:
|
4421 |
msgid "Anchor missing URL!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: ../includes/mycred-shortcodes.php:
|
4425 |
msgid "User ID missing for recipient."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: ../includes/mycred-shortcodes.php:
|
4429 |
msgid "Sent"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: ../includes/mycred-shortcodes.php:
|
4433 |
msgid "Error - Try Again"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: ../includes/mycred-shortcodes.php:
|
4437 |
msgid "A video ID is required for this shortcode"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: ../includes/mycred-shortcodes.php:
|
4441 |
msgid "Point types not found."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: ../includes/mycred-shortcodes.php:
|
4445 |
-
#: includes/mycred-shortcodes.php:
|
4446 |
#, php-format
|
4447 |
msgid "You are excluded from using %s."
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: ../includes/mycred-shortcodes.php:
|
4451 |
msgid "Your balance is too low to use this feature."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: ../includes/mycred-shortcodes.php:
|
4455 |
#, php-format
|
4456 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#: ../includes/mycred-shortcodes.php:
|
4460 |
#, php-format
|
4461 |
msgid "Your current %s balance"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: ../includes/mycred-shortcodes.php:
|
4465 |
#, php-format
|
4466 |
msgid "Minimum %s"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: ../includes/mycred-shortcodes.php:
|
4470 |
#, php-format
|
4471 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: ../includes/mycred-shortcodes.php:
|
4475 |
msgid "Exchange"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: ../includes/mycred-shortcodes.php:
|
4479 |
#, php-format
|
4480 |
msgid "You must exchange at least %s!"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: ../includes/mycred-shortcodes.php:
|
4484 |
#, php-format
|
4485 |
msgid "Exchange from %s"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: ../includes/mycred-shortcodes.php:
|
4489 |
#, php-format
|
4490 |
msgid "Exchange to %s"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: ../includes/mycred-shortcodes.php:
|
4494 |
#, php-format
|
4495 |
msgid "You have successfully exchanged %s into %s."
|
4496 |
msgstr ""
|
@@ -4509,7 +4509,7 @@ msgstr ""
|
|
4509 |
msgid "My Balance"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4513 |
msgid "%plural% History"
|
4514 |
msgstr ""
|
4515 |
|
@@ -4909,62 +4909,62 @@ msgstr ""
|
|
4909 |
msgid "Current balance"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: ../modules/mycred-module-buddypress.php:
|
4913 |
msgid "Go"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: ../modules/mycred-module-buddypress.php:
|
4917 |
msgid "Show in Profile"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: ../modules/mycred-module-buddypress.php:
|
4921 |
#, php-format
|
4922 |
msgid "%singular% Balance"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: ../modules/mycred-module-buddypress.php:
|
4926 |
#, php-format
|
4927 |
msgid "Members and visitors can other members %_singular% balance."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: ../modules/mycred-module-buddypress.php:
|
4931 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: ../modules/mycred-module-buddypress.php:
|
4935 |
msgid "Members can view each others %_plural% history."
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#: ../modules/mycred-module-buddypress.php:
|
4939 |
msgid "Menu Title"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: ../modules/mycred-module-buddypress.php:
|
4943 |
msgid "Title shown to me"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: ../modules/mycred-module-buddypress.php:
|
4947 |
#, php-format
|
4948 |
msgid "Title shown to others. Use %s to show the first name."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: ../modules/mycred-module-buddypress.php:
|
4952 |
msgid "Menu Position"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: ../modules/mycred-module-buddypress.php:
|
4956 |
msgid "Current menu positions:"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: ../modules/mycred-module-buddypress.php:
|
4960 |
msgid "History URL slug"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: ../modules/mycred-module-buddypress.php:
|
4964 |
msgid "Do not use empty spaces!"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: ../modules/mycred-module-buddypress.php:
|
4968 |
msgid "Number of history entries to show"
|
4969 |
msgstr ""
|
4970 |
|
@@ -5091,8 +5091,8 @@ msgstr ""
|
|
5091 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5092 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5093 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5094 |
-
#:
|
5095 |
-
#: php:
|
5096 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5097 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5098 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5153,8 +5153,8 @@ msgstr ""
|
|
5153 |
msgid "%plural% for viewing %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5157 |
-
#: ../modules/mycred-module-hooks.php:
|
5158 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5159 |
msgid "Limit"
|
5160 |
msgstr ""
|
@@ -5236,7 +5236,7 @@ msgstr ""
|
|
5236 |
msgid "Custom tags: %url%, %title% or %id%."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5240 |
msgid "Note!"
|
5241 |
msgstr ""
|
5242 |
|
@@ -5248,158 +5248,166 @@ msgid ""
|
|
5248 |
"by ID."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5252 |
msgid "Available Shortcode"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: ../modules/mycred-module-hooks.php:
|
5256 |
msgid "Amount to award for viewing videos."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: ../modules/mycred-module-hooks.php:
|
5260 |
msgid "Award Logic"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: ../modules/mycred-module-hooks.php:
|
5264 |
#, php-format
|
5265 |
msgid "Select when %_plural% should be awarded or deducted."
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: ../modules/mycred-module-hooks.php:
|
5269 |
msgid "Play - As soon as video starts playing."
|
5270 |
msgstr ""
|
5271 |
|
5272 |
-
#: ../modules/mycred-module-hooks.php:
|
5273 |
msgid "Full - First when the entire video has played."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#: ../modules/mycred-module-hooks.php:
|
5277 |
msgid "Interval - For each x number of seconds watched."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: ../modules/mycred-module-hooks.php:
|
5281 |
msgid "Number of seconds"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: ../modules/mycred-module-hooks.php:
|
5285 |
msgid "Leniency"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: ../modules/mycred-module-hooks.php:
|
5289 |
msgid ""
|
5290 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5291 |
"length."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: ../modules/mycred-module-hooks.php:
|
5295 |
msgid ""
|
5296 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5297 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5298 |
"buffering or play back errors."
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: ../modules/mycred-module-hooks.php:
|
5302 |
msgid "Affiliate Program"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: ../modules/mycred-module-hooks.php:
|
5306 |
msgid "Per Day"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: ../modules/mycred-module-hooks.php:
|
5310 |
msgid "Link"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5314 |
msgid "Referring Visitors"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: ../modules/mycred-module-hooks.php:
|
5318 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: ../modules/mycred-module-hooks.php:
|
5322 |
msgid "Referring Signups"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: ../modules/mycred-module-hooks.php:
|
5326 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: ../modules/mycred-module-hooks.php:
|
5330 |
msgid "Registrations are disabled."
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: ../modules/mycred-module-hooks.php:
|
5334 |
msgid "Referral Links"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: ../modules/mycred-module-hooks.php:
|
5338 |
msgid "Assign numeric referral IDs to each user."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: ../modules/mycred-module-hooks.php:
|
5342 |
msgid "Example"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: ../modules/mycred-module-hooks.php:
|
5346 |
msgid "Assign usernames as IDs for each user."
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: ../modules/mycred-module-hooks.php:
|
5350 |
msgid "IP Limit"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: ../modules/mycred-module-hooks.php:
|
5354 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: ../modules/mycred-module-hooks.php:
|
5358 |
msgid "BuddyPress Profile"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: ../modules/mycred-module-hooks.php:
|
5362 |
msgid "Insert Link in users Profile"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: ../modules/mycred-module-hooks.php:
|
5366 |
msgid ""
|
5367 |
"Option to inser the referral link in users profiles. Links will only be "
|
5368 |
"visible to users viewing their own profiles or administrators."
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: ../modules/mycred-module-hooks.php:
|
5372 |
msgid "Leave empty to hide."
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: ../modules/mycred-module-hooks.php:
|
5376 |
msgid "Description"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: ../modules/mycred-module-hooks.php:
|
5380 |
msgid "Optional description to insert under the link."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#: ../modules/mycred-module-hooks.php:
|
5384 |
msgid "Profile Positioning"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: ../modules/mycred-module-hooks.php:
|
5388 |
msgid ""
|
5389 |
"You can move around the referral link on your users profile by changing the "
|
5390 |
"position. Increase to move up, decrease to move down."
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: ../modules/mycred-module-hooks.php:
|
5394 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: ../modules/mycred-module-hooks.php:
|
5398 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5402 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5403 |
msgid "Access denied for this action"
|
5404 |
msgstr ""
|
5405 |
|
@@ -5415,12 +5423,12 @@ msgstr ""
|
|
5415 |
msgid "Entry Updated"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5419 |
msgid "Entries"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5423 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5424 |
msgid "Export"
|
5425 |
msgstr ""
|
5426 |
|
@@ -5467,198 +5475,198 @@ msgid "My %s History"
|
|
5467 |
msgstr ""
|
5468 |
|
5469 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5470 |
-
#:
|
5471 |
msgid "Missing point type"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: ../modules/mycred-module-settings.php:
|
5475 |
msgid "Accounts successfully reset"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: ../modules/mycred-module-settings.php:
|
5479 |
msgid "No users found to export"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: ../modules/mycred-module-settings.php:
|
5483 |
#, php-format
|
5484 |
msgid "%s Settings"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: ../modules/mycred-module-settings.php:
|
5488 |
msgid "Adjust your core or add-on settings."
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: ../modules/mycred-module-settings.php:
|
5492 |
msgid "Core Settings"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: ../modules/mycred-module-settings.php:
|
5496 |
msgid "Name"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: ../modules/mycred-module-settings.php:
|
5500 |
#, php-format
|
5501 |
msgid "Accessible though the %singular% template tag."
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: ../modules/mycred-module-settings.php:
|
5505 |
msgid "Accessible though the %plural% template tag."
|
5506 |
msgstr ""
|
5507 |
|
5508 |
-
#: ../modules/mycred-module-settings.php:
|
5509 |
msgid "Tip"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: ../modules/mycred-module-settings.php:
|
5513 |
msgid ""
|
5514 |
"Adding an underscore at the beginning of template tag for names will return "
|
5515 |
"them in lowercase. i.e. %_singular%"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: ../modules/mycred-module-settings.php:
|
5519 |
msgid "Separator"
|
5520 |
msgid_plural "Separators"
|
5521 |
msgstr[0] ""
|
5522 |
msgstr[1] ""
|
5523 |
|
5524 |
-
#: ../modules/mycred-module-settings.php:
|
5525 |
msgid "Edit Settings"
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: ../modules/mycred-module-settings.php:
|
5529 |
-
#: php:
|
5530 |
msgid "Capability to check for."
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: ../modules/mycred-module-settings.php:
|
5534 |
msgid "Edit Users %plural%"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: ../modules/mycred-module-settings.php:
|
5538 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-settings.php:
|
5542 |
msgid "Management"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: ../modules/mycred-module-settings.php:
|
5546 |
msgid "The Log"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#: ../modules/mycred-module-settings.php:
|
5550 |
msgid "Table Name"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: ../modules/mycred-module-settings.php:
|
5554 |
msgid "Empty Log"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: ../modules/mycred-module-settings.php:
|
5558 |
msgid "User Meta Key"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: ../modules/mycred-module-settings.php:
|
5562 |
msgid "Set all to zero"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: ../modules/mycred-module-settings.php:
|
5566 |
msgid "CSV Export"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: ../modules/mycred-module-settings.php:
|
5570 |
msgid "Default"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: ../modules/mycred-module-settings.php:
|
5574 |
-
#: php:
|
5575 |
msgid "Meta Key"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-settings.php:
|
5579 |
msgid "Add New Type"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: ../modules/mycred-module-settings.php:
|
5583 |
msgid "A unique ID for this type."
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-settings.php:
|
5587 |
msgid "Menu and page title."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: ../modules/mycred-module-settings.php:
|
5591 |
msgid "The meta key will define where your users balances are saved."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: ../modules/mycred-module-settings.php:
|
5595 |
msgid "Identify users by"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: ../modules/mycred-module-settings.php:
|
5599 |
msgid "User Email"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: ../modules/mycred-module-settings.php:
|
5603 |
msgid "User Login"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: ../modules/mycred-module-settings.php:
|
5607 |
msgid ""
|
5608 |
"Use ID if you intend to use this export as a backup of your current site "
|
5609 |
"while Email is recommended if you want to export to a different site."
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: ../modules/mycred-module-settings.php:
|
5613 |
msgid "Import Log Entry"
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: ../modules/mycred-module-settings.php:
|
5617 |
#, php-format
|
5618 |
msgid ""
|
5619 |
"Optional log entry to use if you intend to import this file in a different "
|
5620 |
"%s installation."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5624 |
msgid "BadgeOS"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5628 |
msgid ""
|
5629 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5630 |
"overridden for individual achievement type."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5634 |
#, php-format
|
5635 |
msgid ""
|
5636 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5637 |
"feature."
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5641 |
msgid "%plural% to Award"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5645 |
msgid "Use zero to disable"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5649 |
msgid "Deduction Log Template"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5653 |
#, php-format
|
5654 |
msgid "Default %s for %s"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5658 |
msgid "Use zero to disable users gaining %_plural%"
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5662 |
msgid "Default Log template"
|
5663 |
msgstr ""
|
5664 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:53:06 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: English (USA)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: en_US"
|
26 |
|
27 |
+
#: ../mycred.php:425
|
28 |
msgid "Balance"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../mycred.php:450
|
32 |
msgid "%label% History"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../mycred.php:543
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../mycred.php:552
|
41 |
msgid "Awesome People"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
+
#: includes/mycred-shortcodes.php:631
|
49 |
msgid "Processing..."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../mycred.php:638
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../mycred.php:639
|
59 |
msgid ""
|
60 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
61 |
"can not be undone!"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../mycred.php:640
|
65 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../mycred.php:641
|
69 |
msgid "Done!"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
73 |
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../mycred.php:643
|
77 |
msgid "Export users %plural%"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../mycred.php:659
|
81 |
msgid "Edit Users Balance"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../mycred.php:677
|
85 |
msgid "Edit Log Entry"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../mycred.php:681
|
89 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../mycred.php:682
|
93 |
msgid "Log entry updated"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
97 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
98 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
99 |
msgid "Setup"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
103 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
104 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
105 |
msgid "Settings"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../mycred.php:776
|
109 |
msgid ""
|
110 |
"Make sure to backup your database and files before updating, in case "
|
111 |
"anything goes wrong!"
|
143 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
144 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
145 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
146 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
147 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
148 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
149 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
150 |
msgid "Select"
|
151 |
msgstr ""
|
152 |
|
246 |
msgstr ""
|
247 |
|
248 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
249 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
250 |
msgid "Users"
|
251 |
msgstr ""
|
252 |
|
329 |
|
330 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
331 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
332 |
+
#: modules/mycred-module-buddypress.php:395
|
333 |
msgid "Do not show"
|
334 |
msgstr ""
|
335 |
|
336 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
337 |
+
#: buddypress.php:396
|
338 |
msgid "Include in Profile Header"
|
339 |
msgstr ""
|
340 |
|
341 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
342 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
343 |
msgid "Include under the \"Profile\" tab"
|
344 |
msgstr ""
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
347 |
+
#: buddypress.php:398
|
348 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
349 |
msgstr ""
|
350 |
|
413 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
414 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
415 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
416 |
+
#: modules/mycred-module-settings.php:313
|
417 |
msgid "Access Denied"
|
418 |
msgstr ""
|
419 |
|
564 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
565 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
566 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
567 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
568 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
569 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
570 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
571 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
662 |
|
663 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
664 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
665 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
666 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
667 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
668 |
+
#: includes/mycred-shortcodes.php:939
|
669 |
msgid "Amount"
|
670 |
msgstr ""
|
671 |
|
672 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
673 |
+
#: modules/mycred-module-hooks.php:2112
|
674 |
msgid "Interval"
|
675 |
msgstr ""
|
676 |
|
718 |
msgstr ""
|
719 |
|
720 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
721 |
+
#: addon-buy-creds.php:1635
|
722 |
msgid "No pending payments found"
|
723 |
msgstr ""
|
724 |
|
727 |
msgstr ""
|
728 |
|
729 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
730 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
731 |
msgid "Transaction ID"
|
732 |
msgstr ""
|
733 |
|
734 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
735 |
+
#: addon-buy-creds.php:985
|
736 |
msgid "Buyer"
|
737 |
msgstr ""
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
740 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
741 |
#: gateway.php:563
|
742 |
msgid "Cost"
|
743 |
msgstr ""
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
746 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
747 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
748 |
msgid "Gateway"
|
749 |
msgstr ""
|
792 |
|
793 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
794 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
795 |
+
#: module-settings.php:470
|
796 |
msgid "Point Types"
|
797 |
msgstr ""
|
798 |
|
845 |
msgstr ""
|
846 |
|
847 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
848 |
+
#: hooks.php:2792
|
849 |
msgid "Available Shortcodes"
|
850 |
msgstr ""
|
851 |
|
872 |
msgstr ""
|
873 |
|
874 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
875 |
+
#: addon-buy-creds.php:993
|
876 |
msgid "buyCRED Settings"
|
877 |
msgstr ""
|
878 |
|
897 |
msgstr ""
|
898 |
|
899 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
900 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
901 |
msgid "Update Settings"
|
902 |
msgstr ""
|
903 |
|
905 |
msgid "More Gateways"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
909 |
#: 634
|
910 |
msgid "Date"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
914 |
msgid "Payed"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
918 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
922 |
#: booking/mycred-eventespresso3.php:367
|
923 |
msgid "Gateway Settings"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
927 |
+
#: content/myCRED-addon-sell-content.php:1191
|
928 |
msgid "No purchases found"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
932 |
+
#: addon-buy-creds.php:1355
|
933 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
937 |
+
#: addon-buy-creds.php:1374
|
938 |
msgid "No gateways installed."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
942 |
+
#: addon-buy-creds.php:1375
|
943 |
msgid "Gateway does not exist."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
947 |
msgid "Yourself"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
951 |
msgid "No active gateways found."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
955 |
msgid "The selected gateway is not active."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
959 |
#, php-format
|
960 |
msgid "Buy with %gateway%"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
964 |
#: content/myCRED-addon-sell-content.php:44
|
965 |
msgid "Buy Now"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
969 |
msgid "No users found"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
973 |
msgid "To"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
977 |
msgid "Select Amount"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
981 |
msgid "min."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
985 |
msgid "Select Gateway"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
989 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
990 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
991 |
#: php:35
|
992 |
msgid "Pay Now"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
996 |
+
#: php:516
|
997 |
msgid "Cancel"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1001 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1002 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1003 |
msgid "Actions"
|
1004 |
msgstr ""
|
1005 |
|
1139 |
msgid "The following information will be sent to the gateway"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1143 |
msgid "Outside US"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1147 |
msgid "January"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1151 |
msgid "February"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1155 |
msgid "March"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1159 |
msgid "April"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1163 |
msgid "May"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1167 |
msgid "June"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1171 |
msgid "July"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1175 |
msgid "August"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1179 |
msgid "September"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1183 |
msgid "October"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1187 |
msgid "November"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1191 |
msgid "December"
|
1192 |
msgstr ""
|
1193 |
|
1426 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1427 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1428 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1429 |
+
#: modules/mycred-module-hooks.php:2757
|
1430 |
msgid "Title"
|
1431 |
msgstr ""
|
1432 |
|
1614 |
msgstr ""
|
1615 |
|
1616 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1617 |
+
#: php:2202
|
1618 |
msgid "Total"
|
1619 |
msgstr ""
|
1620 |
|
1776 |
msgstr ""
|
1777 |
|
1778 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1779 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1780 |
msgid "Email Notice"
|
1781 |
msgstr ""
|
1782 |
|
1961 |
msgstr ""
|
1962 |
|
1963 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1964 |
+
#: notices/myCRED-addon-email-notices.php:787
|
1965 |
msgid "Email Settings"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1969 |
+
#: notices/myCRED-addon-email-notices.php:910
|
1970 |
msgid "Senders Name:"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1974 |
+
#: notices/myCRED-addon-email-notices.php:912
|
1975 |
msgid "Senders Email:"
|
1976 |
msgstr ""
|
1977 |
|
1995 |
msgid "Ignored if HTML is not allowed in emails."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
1999 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2000 |
msgid "Email Subject"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2004 |
msgid "Status"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2008 |
msgid "Not Active"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2012 |
#, php-format
|
2013 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2017 |
msgid "Active"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2021 |
#, php-format
|
2022 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2026 |
msgid "Email is sent when"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2030 |
msgid "Missing instance for this notice!"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2034 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2035 |
+
#: addon-email-notices.php:775
|
2036 |
msgid "Sent To"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2040 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2041 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2042 |
msgid "User"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2046 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2047 |
msgid "Administrator"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2051 |
msgid "Both Administrator and User"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2055 |
msgid "Available Template Tags"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2059 |
msgid "Email Header"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2063 |
msgid "Send this email notice when..."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2067 |
msgid "Recipient:"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2071 |
msgid "Both"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2075 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2076 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2077 |
+
#: module-settings.php:527
|
2078 |
msgid "Label"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2082 |
msgid "Reply-To Email:"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2086 |
msgid "Save"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2090 |
msgid "CSS Styling"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2094 |
msgid "Site Related"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2098 |
msgid "Your websites title"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2102 |
msgid "Your websites address"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2106 |
msgid "Your websites tagline (description)"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2110 |
msgid "Your websites admin email"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2114 |
msgid "Total number of blog members"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2118 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2119 |
+
#: addon-email-notices.php:1040
|
2120 |
msgid "Email Notice Updated."
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2124 |
msgid "Email Notice Activated"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2128 |
msgid "Email Notice Saved"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2132 |
msgid ""
|
2133 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2134 |
"are not yet ready to use this email notice!"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2138 |
#, php-format
|
2139 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2143 |
msgid "This email notice is active."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2147 |
msgid "Settings saved."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2151 |
msgid "Unsubscribe"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2155 |
msgid "There are no email notifications yet."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2159 |
msgid "Save Changes"
|
2160 |
msgstr ""
|
2161 |
|
2202 |
|
2203 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2204 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2205 |
+
#: 52 ../includes/mycred-network.php:53
|
2206 |
msgid "myCRED"
|
2207 |
msgstr ""
|
2208 |
|
2276 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2277 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2278 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2279 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2280 |
msgid "Exchange Rate"
|
2281 |
msgstr ""
|
2282 |
|
2563 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2564 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2565 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2566 |
+
#: sell-content.php:669
|
2567 |
msgid "Button Label"
|
2568 |
msgstr ""
|
2569 |
|
2577 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2578 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2579 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2580 |
+
#: sell-content.php:665
|
2581 |
msgid "Price"
|
2582 |
msgstr ""
|
2583 |
|
2678 |
msgstr ""
|
2679 |
|
2680 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2681 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2682 |
+
#: modules/mycred-module-settings.php:508
|
2683 |
msgid "Delete"
|
2684 |
msgstr ""
|
2685 |
|
2796 |
msgstr ""
|
2797 |
|
2798 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2799 |
+
#: module-buddypress.php:439
|
2800 |
msgid "Template"
|
2801 |
msgstr ""
|
2802 |
|
3056 |
msgstr ""
|
3057 |
|
3058 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3059 |
+
#: php:402
|
3060 |
msgid "Do not show."
|
3061 |
msgstr ""
|
3062 |
|
3106 |
msgstr ""
|
3107 |
|
3108 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3109 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3110 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3111 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3112 |
msgid "error"
|
3113 |
msgstr ""
|
3114 |
|
3229 |
msgid "%s Sell This"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3233 |
#, php-format
|
3234 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3238 |
msgid "Setup add-on"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3242 |
msgid "Lets do it"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3246 |
#, php-format
|
3247 |
msgid "Enable sale of this %s"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3251 |
msgid "Purchase expires after"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3255 |
msgid "Thank you for your purchase!"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3259 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3260 |
msgid "The following content is set for sale:"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3264 |
msgid "Purchased"
|
3265 |
msgstr ""
|
3266 |
|
3273 |
msgstr ""
|
3274 |
|
3275 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3276 |
+
#: php:2367
|
3277 |
msgid "Transfer"
|
3278 |
msgstr ""
|
3279 |
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3311 |
+
#: php:1041
|
3312 |
msgid "Insufficient Funds. Please try a lower amount."
|
3313 |
msgstr ""
|
3314 |
|
3675 |
msgid "My Entire Log"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: ../includes/mycred-functions.php:1854
|
3679 |
msgid "ref empty"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: ../includes/mycred-functions.php:1862
|
3683 |
msgid "incorrect user id format"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: ../includes/mycred-functions.php:1875
|
3687 |
msgid "incorrect unix timestamp (from):"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: ../includes/mycred-functions.php:1884
|
3691 |
msgid "incorrect unix timestamp (to):"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: ../includes/mycred-functions.php:2254
|
3695 |
msgid "Website Registration"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: ../includes/mycred-functions.php:2255
|
3699 |
msgid "Website Visit"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: ../includes/mycred-functions.php:2256
|
3703 |
msgid "Viewing Content (Member)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: ../includes/mycred-functions.php:2257
|
3707 |
msgid "Viewing Content (Author)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: ../includes/mycred-functions.php:2258
|
3711 |
msgid "Logging in"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: ../includes/mycred-functions.php:2259
|
3715 |
msgid "Publishing Content"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3719 |
msgid "Approved Comment"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: ../includes/mycred-functions.php:2261
|
3723 |
msgid "Unapproved Comment"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: ../includes/mycred-functions.php:2262
|
3727 |
msgid "SPAM Comment"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: ../includes/mycred-functions.php:2263
|
3731 |
msgid "Deleted Comment"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: ../includes/mycred-functions.php:2264
|
3735 |
msgid "Link Click"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: ../includes/mycred-functions.php:2265
|
3739 |
msgid "Watching Video"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: ../includes/mycred-functions.php:2266
|
3743 |
msgid "Visitor Referral"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: ../includes/mycred-functions.php:2267
|
3747 |
msgid "Signup Referral"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: ../includes/mycred-functions.php:2271
|
3751 |
msgid "New Profile Update"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: ../includes/mycred-functions.php:2272
|
3755 |
msgid "Avatar Upload"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: ../includes/mycred-functions.php:2273
|
3759 |
msgid "New Friendship"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: ../includes/mycred-functions.php:2274
|
3763 |
msgid "Ended Friendship"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: ../includes/mycred-functions.php:2275
|
3767 |
msgid "New Profile Comment"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: ../includes/mycred-functions.php:2276
|
3771 |
msgid "Profile Comment Deletion"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: ../includes/mycred-functions.php:2277
|
3775 |
msgid "New Message"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: ../includes/mycred-functions.php:2278
|
3779 |
msgid "Sending Gift"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: ../includes/mycred-functions.php:2279
|
3783 |
msgid "New Group"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: ../includes/mycred-functions.php:2280
|
3787 |
msgid "Deleted Group"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: ../includes/mycred-functions.php:2281
|
3791 |
msgid "New Group Forum Topic"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: ../includes/mycred-functions.php:2282
|
3795 |
msgid "Edit Group Forum Topic"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: ../includes/mycred-functions.php:2283
|
3799 |
msgid "New Group Forum Post"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: ../includes/mycred-functions.php:2284
|
3803 |
msgid "Edit Group Forum Post"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: ../includes/mycred-functions.php:2285
|
3807 |
msgid "Joining Group"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: ../includes/mycred-functions.php:2286
|
3811 |
msgid "Leaving Group"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: ../includes/mycred-functions.php:2287
|
3815 |
msgid "New Group Avatar"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: ../includes/mycred-functions.php:2288
|
3819 |
msgid "New Group Comment"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3823 |
#: php:166
|
3824 |
msgid "Photo Upload"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3828 |
#: php:176
|
3829 |
msgid "Video Upload"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
3833 |
#: php:186
|
3834 |
msgid "Music Upload"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
#: ../includes/mycred-functions.php:2298
|
3838 |
msgid "New Link"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: ../includes/mycred-functions.php:2299
|
3842 |
msgid "Link Voting"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: ../includes/mycred-functions.php:2300
|
3846 |
msgid "Link Update"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
+
#: ../includes/mycred-functions.php:2304
|
3850 |
msgid "New Forum (bbPress)"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
+
#: ../includes/mycred-functions.php:2305
|
3854 |
msgid "New Forum Topic (bbPress)"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: ../includes/mycred-functions.php:2306
|
3858 |
msgid "Favorited Topic (bbPress)"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: ../includes/mycred-functions.php:2307
|
3862 |
msgid "New Topic Reply (bbPress)"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: ../includes/mycred-functions.php:2311
|
3866 |
msgid "Form Submission (Contact Form 7)"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: ../includes/mycred-functions.php:2314
|
3870 |
msgid "Form Submission (Gravity Form)"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: ../includes/mycred-functions.php:2317
|
3874 |
msgid "New Forum Topic (SimplePress)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: ../includes/mycred-functions.php:2318
|
3878 |
msgid "New Forum Post (SimplePress)"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: ../includes/mycred-functions.php:2322
|
3882 |
msgid "Poll Voting"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: ../includes/mycred-functions.php:2325
|
3886 |
msgid "Sending an Invite"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: ../includes/mycred-functions.php:2326
|
3890 |
msgid "Accepting an Invite"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: ../includes/mycred-functions.php:2332
|
3894 |
msgid "Banking Payout"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: ../includes/mycred-functions.php:2335
|
3898 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: ../includes/mycred-functions.php:2336
|
3902 |
msgid "buyCRED Purchase (Skrill)"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: ../includes/mycred-functions.php:2337
|
3906 |
msgid "buyCRED Purchase (Zombaio)"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: ../includes/mycred-functions.php:2338
|
3910 |
msgid "buyCRED Purchase (NETBilling)"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: ../includes/mycred-functions.php:2339
|
3914 |
msgid "buyCRED Purchase (BitPay)"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: ../includes/mycred-functions.php:2344
|
3918 |
msgid "Coupon Purchase"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: ../includes/mycred-functions.php:2347
|
3922 |
msgid "Store Purchase (WooCommerce)"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: ../includes/mycred-functions.php:2348
|
3926 |
msgid "Store Purchase (MarketPress)"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: ../includes/mycred-functions.php:2349
|
3930 |
msgid "Store Purchase (WP E-Commerce)"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: ../includes/mycred-functions.php:2354
|
3934 |
msgid "Event Payment (Event Espresso)"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: ../includes/mycred-functions.php:2355
|
3938 |
msgid "Event Sale (Event Espresso)"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: ../includes/mycred-functions.php:2359
|
3942 |
msgid "Event Payment (Events Manager)"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: ../includes/mycred-functions.php:2360
|
3946 |
msgid "Event Sale (Events Manager)"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: ../includes/mycred-functions.php:2364
|
3950 |
msgid "Content Purchase / Sale"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: ../includes/mycred-functions.php:2371
|
3954 |
msgid "Manual Adjustment by Admin"
|
3955 |
msgstr ""
|
3956 |
|
3998 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: ../includes/mycred-install.php:54
|
4002 |
msgid ""
|
4003 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4004 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4005 |
"for you!"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: ../includes/mycred-install.php:59
|
4009 |
msgid ""
|
4010 |
"Sorry but your WordPress installation does not reach the minimum "
|
4011 |
"requirements for running myCRED. The following errors were given:"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: ../includes/mycred-install.php:248
|
4015 |
msgid "myCRED needs your attention."
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: ../includes/mycred-install.php:248
|
4019 |
msgid "Run Setup"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4023 |
msgid "myCRED Setup"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: ../includes/mycred-install.php:390
|
4027 |
#, php-format
|
4028 |
msgid "%s Setup"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: ../includes/mycred-install.php:392
|
4032 |
msgid "Step"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: ../includes/mycred-install.php:416
|
4036 |
msgid ""
|
4037 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4038 |
"points format, layout and security settings."
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: ../includes/mycred-install.php:417
|
4042 |
msgid "Begin Setup"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: ../includes/mycred-install.php:472
|
4046 |
msgid "Select the format you want to use for your points."
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4050 |
msgid "Format"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: ../includes/mycred-install.php:476
|
4054 |
msgid "Separators"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: ../includes/mycred-install.php:486
|
4058 |
msgid "Decimals"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: ../includes/mycred-install.php:488
|
4062 |
msgid "Use zero for no decimals."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4066 |
msgid "Presentation"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4070 |
msgid "Name (Singular)"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4074 |
msgid "Name (Plural)"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4078 |
msgid "Prefix"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4082 |
msgid "Suffix"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: ../includes/mycred-install.php:516
|
4086 |
msgid "Cancel Setup"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4090 |
msgid "Next"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4094 |
msgid "Security"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: ../includes/mycred-install.php:551
|
4098 |
msgid "Edit Settings Capability"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: ../includes/mycred-install.php:555
|
4102 |
msgid "Edit Users %plural% Capability"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4106 |
msgid "Maximum %plural% payouts"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4110 |
msgid ""
|
4111 |
"As an added security, you can set the maximum amount a user can gain or "
|
4112 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4114 |
"disable."
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4118 |
msgid "Excludes"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4122 |
msgid "Exclude those who can \"Edit Settings\"."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4126 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4130 |
msgid "Exclude the following user IDs:"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4134 |
msgid "User Deletions"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4138 |
msgid "Delete log entries when user is deleted."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: ../includes/mycred-install.php:604
|
4142 |
msgid "Ready"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: ../includes/mycred-install.php:605
|
4146 |
msgid "Almost done! Click the button below to finish this setup."
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: ../includes/mycred-install.php:606
|
4150 |
msgid "Install & Run"
|
4151 |
msgstr ""
|
4152 |
|
4161 |
msgstr[0] ""
|
4162 |
msgstr[1] ""
|
4163 |
|
4164 |
+
#: ../includes/mycred-log.php:412
|
4165 |
msgid "Go to the first page"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: ../includes/mycred-log.php:419
|
4169 |
msgid "Go to the previous page"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: ../includes/mycred-log.php:428
|
4173 |
msgid "Current page"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: ../includes/mycred-log.php:434
|
4177 |
#, php-format
|
4178 |
msgctxt "paging"
|
4179 |
msgid "%1$s of %2$s"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: ../includes/mycred-log.php:438
|
4183 |
msgid "Go to the next page"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: ../includes/mycred-log.php:445
|
4187 |
msgid "Go to the last page"
|
4188 |
msgstr ""
|
4189 |
|
4191 |
msgid "Show all references"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4195 |
msgid "User ID"
|
4196 |
msgstr ""
|
4197 |
|
4405 |
"about your setup!"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: ../includes/mycred-shortcodes.php:178
|
4409 |
msgid "Leaderboard is empty."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4413 |
msgid "Amount missing!"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4417 |
msgid "Log Template Missing!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: ../includes/mycred-shortcodes.php:515
|
4421 |
msgid "Anchor missing URL!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: ../includes/mycred-shortcodes.php:577
|
4425 |
msgid "User ID missing for recipient."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: ../includes/mycred-shortcodes.php:632
|
4429 |
msgid "Sent"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: ../includes/mycred-shortcodes.php:633
|
4433 |
msgid "Error - Try Again"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: ../includes/mycred-shortcodes.php:742
|
4437 |
msgid "A video ID is required for this shortcode"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4441 |
msgid "Point types not found."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4445 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4446 |
#, php-format
|
4447 |
msgid "You are excluded from using %s."
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4451 |
msgid "Your balance is too low to use this feature."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: ../includes/mycred-shortcodes.php:924
|
4455 |
#, php-format
|
4456 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: ../includes/mycred-shortcodes.php:933
|
4460 |
#, php-format
|
4461 |
msgid "Your current %s balance"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: ../includes/mycred-shortcodes.php:941
|
4465 |
#, php-format
|
4466 |
msgid "Minimum %s"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: ../includes/mycred-shortcodes.php:945
|
4470 |
#, php-format
|
4471 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: ../includes/mycred-shortcodes.php:951
|
4475 |
msgid "Exchange"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4479 |
#, php-format
|
4480 |
msgid "You must exchange at least %s!"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4484 |
#, php-format
|
4485 |
msgid "Exchange from %s"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4489 |
#, php-format
|
4490 |
msgid "Exchange to %s"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4494 |
#, php-format
|
4495 |
msgid "You have successfully exchanged %s into %s."
|
4496 |
msgstr ""
|
4509 |
msgid "My Balance"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4513 |
msgid "%plural% History"
|
4514 |
msgstr ""
|
4515 |
|
4909 |
msgid "Current balance"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: ../modules/mycred-module-buddypress.php:347
|
4913 |
msgid "Go"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: ../modules/mycred-module-buddypress.php:403
|
4917 |
msgid "Show in Profile"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: ../modules/mycred-module-buddypress.php:418
|
4921 |
#, php-format
|
4922 |
msgid "%singular% Balance"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: ../modules/mycred-module-buddypress.php:434
|
4926 |
#, php-format
|
4927 |
msgid "Members and visitors can other members %_singular% balance."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: ../modules/mycred-module-buddypress.php:442
|
4931 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: ../modules/mycred-module-buddypress.php:462
|
4935 |
msgid "Members can view each others %_plural% history."
|
4936 |
msgstr ""
|
4937 |
|
4938 |
+
#: ../modules/mycred-module-buddypress.php:467
|
4939 |
msgid "Menu Title"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: ../modules/mycred-module-buddypress.php:469
|
4943 |
msgid "Title shown to me"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: ../modules/mycred-module-buddypress.php:474
|
4947 |
#, php-format
|
4948 |
msgid "Title shown to others. Use %s to show the first name."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: ../modules/mycred-module-buddypress.php:479
|
4952 |
msgid "Menu Position"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: ../modules/mycred-module-buddypress.php:481
|
4956 |
msgid "Current menu positions:"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: ../modules/mycred-module-buddypress.php:486
|
4960 |
msgid "History URL slug"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: ../modules/mycred-module-buddypress.php:488
|
4964 |
msgid "Do not use empty spaces!"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: ../modules/mycred-module-buddypress.php:493
|
4968 |
msgid "Number of history entries to show"
|
4969 |
msgstr ""
|
4970 |
|
5091 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5092 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5093 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5094 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5095 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5096 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5097 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5098 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5153 |
msgid "%plural% for viewing %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5157 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5158 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5159 |
msgid "Limit"
|
5160 |
msgstr ""
|
5236 |
msgid "Custom tags: %url%, %title% or %id%."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5240 |
msgid "Note!"
|
5241 |
msgstr ""
|
5242 |
|
5248 |
"by ID."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5252 |
msgid "Available Shortcode"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5256 |
msgid "Amount to award for viewing videos."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5260 |
msgid "Award Logic"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5264 |
#, php-format
|
5265 |
msgid "Select when %_plural% should be awarded or deducted."
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5269 |
msgid "Play - As soon as video starts playing."
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5273 |
msgid "Full - First when the entire video has played."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5277 |
msgid "Interval - For each x number of seconds watched."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5281 |
msgid "Number of seconds"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5285 |
msgid "Leniency"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5289 |
msgid ""
|
5290 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5291 |
"length."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5295 |
msgid ""
|
5296 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5297 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5298 |
"buffering or play back errors."
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5302 |
msgid "Affiliate Program"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5306 |
msgid "Per Day"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5310 |
msgid "Link"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5314 |
+
msgid "Visitors Referred"
|
5315 |
+
msgstr ""
|
5316 |
+
|
5317 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5318 |
+
msgid "Signups Referred"
|
5319 |
+
msgstr ""
|
5320 |
+
|
5321 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5322 |
msgid "Referring Visitors"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5326 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5330 |
msgid "Referring Signups"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5334 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5338 |
msgid "Registrations are disabled."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5342 |
msgid "Referral Links"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5346 |
msgid "Assign numeric referral IDs to each user."
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5350 |
msgid "Example"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5354 |
msgid "Assign usernames as IDs for each user."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5358 |
msgid "IP Limit"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5362 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5366 |
msgid "BuddyPress Profile"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5370 |
msgid "Insert Link in users Profile"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5374 |
msgid ""
|
5375 |
"Option to inser the referral link in users profiles. Links will only be "
|
5376 |
"visible to users viewing their own profiles or administrators."
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5380 |
msgid "Leave empty to hide."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5384 |
msgid "Description"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5388 |
msgid "Optional description to insert under the link."
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5392 |
msgid "Profile Positioning"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5396 |
msgid ""
|
5397 |
"You can move around the referral link on your users profile by changing the "
|
5398 |
"position. Increase to move up, decrease to move down."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5402 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5406 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5407 |
msgstr ""
|
5408 |
|
5409 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5410 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5411 |
msgid "Access denied for this action"
|
5412 |
msgstr ""
|
5413 |
|
5423 |
msgid "Entry Updated"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5427 |
msgid "Entries"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5431 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5432 |
msgid "Export"
|
5433 |
msgstr ""
|
5434 |
|
5475 |
msgstr ""
|
5476 |
|
5477 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5478 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5479 |
msgid "Missing point type"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: ../modules/mycred-module-settings.php:129
|
5483 |
msgid "Accounts successfully reset"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: ../modules/mycred-module-settings.php:175
|
5487 |
msgid "No users found to export"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: ../modules/mycred-module-settings.php:331
|
5491 |
#, php-format
|
5492 |
msgid "%s Settings"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: ../modules/mycred-module-settings.php:334
|
5496 |
msgid "Adjust your core or add-on settings."
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: ../modules/mycred-module-settings.php:339
|
5500 |
msgid "Core Settings"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: ../modules/mycred-module-settings.php:341
|
5504 |
msgid "Name"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: ../modules/mycred-module-settings.php:346
|
5508 |
#, php-format
|
5509 |
msgid "Accessible though the %singular% template tag."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: ../modules/mycred-module-settings.php:351
|
5513 |
msgid "Accessible though the %plural% template tag."
|
5514 |
msgstr ""
|
5515 |
|
5516 |
+
#: ../modules/mycred-module-settings.php:354
|
5517 |
msgid "Tip"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
+
#: ../modules/mycred-module-settings.php:354
|
5521 |
msgid ""
|
5522 |
"Adding an underscore at the beginning of template tag for names will return "
|
5523 |
"them in lowercase. i.e. %_singular%"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: ../modules/mycred-module-settings.php:372
|
5527 |
msgid "Separator"
|
5528 |
msgid_plural "Separators"
|
5529 |
msgstr[0] ""
|
5530 |
msgstr[1] ""
|
5531 |
|
5532 |
+
#: ../modules/mycred-module-settings.php:379
|
5533 |
msgid "Edit Settings"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5537 |
+
#: php:386
|
5538 |
msgid "Capability to check for."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: ../modules/mycred-module-settings.php:384
|
5542 |
msgid "Edit Users %plural%"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: ../modules/mycred-module-settings.php:408
|
5546 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: ../modules/mycred-module-settings.php:428
|
5550 |
msgid "Management"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: ../modules/mycred-module-settings.php:430
|
5554 |
msgid "The Log"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: ../modules/mycred-module-settings.php:433
|
5558 |
msgid "Table Name"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: ../modules/mycred-module-settings.php:442
|
5562 |
msgid "Empty Log"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: ../modules/mycred-module-settings.php:448
|
5566 |
msgid "User Meta Key"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: ../modules/mycred-module-settings.php:457
|
5570 |
msgid "Set all to zero"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: ../modules/mycred-module-settings.php:457
|
5574 |
msgid "CSV Export"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: ../modules/mycred-module-settings.php:478
|
5578 |
msgid "Default"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5582 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5583 |
msgid "Meta Key"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: ../modules/mycred-module-settings.php:519
|
5587 |
msgid "Add New Type"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: ../modules/mycred-module-settings.php:524
|
5591 |
msgid "A unique ID for this type."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: ../modules/mycred-module-settings.php:529
|
5595 |
msgid "Menu and page title."
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: ../modules/mycred-module-settings.php:532
|
5599 |
msgid "The meta key will define where your users balances are saved."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: ../modules/mycred-module-settings.php:553
|
5603 |
msgid "Identify users by"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: ../modules/mycred-module-settings.php:559
|
5607 |
msgid "User Email"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: ../modules/mycred-module-settings.php:560
|
5611 |
msgid "User Login"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: ../modules/mycred-module-settings.php:567
|
5615 |
msgid ""
|
5616 |
"Use ID if you intend to use this export as a backup of your current site "
|
5617 |
"while Email is recommended if you want to export to a different site."
|
5618 |
msgstr ""
|
5619 |
|
5620 |
+
#: ../modules/mycred-module-settings.php:570
|
5621 |
msgid "Import Log Entry"
|
5622 |
msgstr ""
|
5623 |
|
5624 |
+
#: ../modules/mycred-module-settings.php:572
|
5625 |
#, php-format
|
5626 |
msgid ""
|
5627 |
"Optional log entry to use if you intend to import this file in a different "
|
5628 |
"%s installation."
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5632 |
msgid "BadgeOS"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5636 |
msgid ""
|
5637 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5638 |
"overridden for individual achievement type."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5642 |
#, php-format
|
5643 |
msgid ""
|
5644 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5645 |
"feature."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5649 |
msgid "%plural% to Award"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5653 |
msgid "Use zero to disable"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5657 |
msgid "Deduction Log Template"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5661 |
#, php-format
|
5662 |
msgid "Default %s for %s"
|
5663 |
msgstr ""
|
5664 |
|
5665 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5666 |
msgid "Use zero to disable users gaining %_plural%"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5670 |
msgid "Default Log template"
|
5671 |
msgstr ""
|
5672 |
|
lang/mycred-es_ES.mo
CHANGED
Binary file
|
lang/mycred-es_ES.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Spanish\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -24,32 +24,32 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: es_ES"
|
26 |
|
27 |
-
#: ../mycred.php:
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
-
#: ../mycred.php:
|
32 |
msgid "%label% History"
|
33 |
msgstr "%lavel% Historial"
|
34 |
|
35 |
-
#: ../mycred.php:
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre"
|
39 |
|
40 |
-
#: ../mycred.php:
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Gente genial"
|
43 |
|
44 |
-
#: ../mycred.php:
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
-
#: includes/mycred-shortcodes.php:
|
49 |
msgid "Processing..."
|
50 |
msgstr "Procesando..."
|
51 |
|
52 |
-
#: ../mycred.php:
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
58 |
"¡Esto no se puede deshacer!"
|
59 |
|
60 |
-
#: ../mycred.php:
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
@@ -65,55 +65,55 @@ msgstr ""
|
|
65 |
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
66 |
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
67 |
|
68 |
-
#: ../mycred.php:
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
72 |
"deshacer!"
|
73 |
|
74 |
-
#: ../mycred.php:
|
75 |
msgid "Done!"
|
76 |
msgstr "¡Realizado!"
|
77 |
|
78 |
-
#: ../mycred.php:
|
79 |
msgid "Close"
|
80 |
msgstr "Cerrar"
|
81 |
|
82 |
-
#: ../mycred.php:
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar usuarios %plural%"
|
85 |
|
86 |
-
#: ../mycred.php:
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo del usuario"
|
89 |
|
90 |
-
#: ../mycred.php:
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Edidar entrada de registro"
|
93 |
|
94 |
-
#: ../mycred.php:
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
98 |
"deshacer!"
|
99 |
|
100 |
-
#: ../mycred.php:
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Entrada de registro actualizado"
|
103 |
|
104 |
-
#: ../mycred.php:
|
105 |
-
#: notices.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Configurar"
|
109 |
|
110 |
-
#: ../mycred.php:
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configuraciones"
|
115 |
|
116 |
-
#: ../mycred.php:
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
@@ -153,10 +153,10 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
|
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
157 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
160 |
msgid "Select"
|
161 |
msgstr "Seleccionar"
|
162 |
|
@@ -187,25 +187,25 @@ msgstr "Configuraciones Actualizadas"
|
|
187 |
#: addons/badges/myCRED-addon-badges.php:221 ../addons/badges/myCRED-addon-
|
188 |
#: badges.php:227 ../addons/badges/myCRED-addon-badges.php:233
|
189 |
msgid "Badges"
|
190 |
-
msgstr ""
|
191 |
|
192 |
#: ../addons/badges/myCRED-addon-badges.php:144
|
193 |
msgid "No users has yet earned this badge."
|
194 |
-
msgstr ""
|
195 |
|
196 |
#: ../addons/badges/myCRED-addon-badges.php:150
|
197 |
#, php-format
|
198 |
msgid "%d Users earned this badge."
|
199 |
-
msgstr ""
|
200 |
|
201 |
#: ../addons/badges/myCRED-addon-badges.php:171
|
202 |
#, php-format
|
203 |
msgid "%s connections where removed."
|
204 |
-
msgstr ""
|
205 |
|
206 |
#: ../addons/badges/myCRED-addon-badges.php:222
|
207 |
msgid "Badge"
|
208 |
-
msgstr ""
|
209 |
|
210 |
#: ../addons/badges/myCRED-addon-badges.php:223 ../addons/email-notices/myCRED-
|
211 |
#: addon-email-notices.php:165 ../addons/ranks/myCRED-addon-ranks.php:247
|
@@ -214,174 +214,176 @@ msgstr "Añade Nuevo"
|
|
214 |
|
215 |
#: ../addons/badges/myCRED-addon-badges.php:224
|
216 |
msgid "Add New Badge"
|
217 |
-
msgstr ""
|
218 |
|
219 |
#: ../addons/badges/myCRED-addon-badges.php:225
|
220 |
msgid "Edit Badge"
|
221 |
-
msgstr ""
|
222 |
|
223 |
#: ../addons/badges/myCRED-addon-badges.php:226
|
224 |
msgid "New Badge"
|
225 |
-
msgstr ""
|
226 |
|
227 |
#: ../addons/badges/myCRED-addon-badges.php:228
|
228 |
msgid "View Badge"
|
229 |
-
msgstr ""
|
230 |
|
231 |
#: ../addons/badges/myCRED-addon-badges.php:229
|
232 |
msgid "Search Badge"
|
233 |
-
msgstr ""
|
234 |
|
235 |
#: ../addons/badges/myCRED-addon-badges.php:230
|
236 |
msgid "No badges found"
|
237 |
-
msgstr ""
|
238 |
|
239 |
#: ../addons/badges/myCRED-addon-badges.php:231
|
240 |
msgid "No badges found in Trash"
|
241 |
-
msgstr ""
|
242 |
|
243 |
#: ../addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
|
244 |
#: badges.php:355
|
245 |
msgid "Badge Name"
|
246 |
-
msgstr ""
|
247 |
|
248 |
#: ../addons/badges/myCRED-addon-badges.php:274 ../addons/badges/myCRED-addon-
|
249 |
#: badges.php:376
|
250 |
msgid "Badge Images"
|
251 |
-
msgstr ""
|
252 |
|
253 |
#: ../addons/badges/myCRED-addon-badges.php:275 ../addons/badges/myCRED-addon-
|
254 |
#: badges.php:367
|
255 |
msgid "Requirements"
|
256 |
-
msgstr ""
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
260 |
msgid "Users"
|
261 |
msgstr "Usuarios"
|
262 |
|
263 |
#: ../addons/badges/myCRED-addon-badges.php:302
|
264 |
msgid "A user must have gained or lost:"
|
265 |
-
msgstr ""
|
266 |
|
267 |
#: ../addons/badges/myCRED-addon-badges.php:333 ../addons/badges/myCRED-addon-
|
268 |
#: badges.php:336 ../addons/badges/myCRED-addon-badges.php:340 ..
|
269 |
#: addons/badges/myCRED-addon-badges.php:341 ../addons/badges/myCRED-addon-
|
270 |
#: badges.php:342
|
271 |
msgid "Badge Updated."
|
272 |
-
msgstr ""
|
273 |
|
274 |
#: ../addons/badges/myCRED-addon-badges.php:338
|
275 |
msgid "Badge Enabled"
|
276 |
-
msgstr ""
|
277 |
|
278 |
#: ../addons/badges/myCRED-addon-badges.php:339
|
279 |
msgid "Badge Saved"
|
280 |
-
msgstr ""
|
281 |
|
282 |
#: ../addons/badges/myCRED-addon-badges.php:402
|
283 |
msgid "Assign Badge"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: ../addons/badges/myCRED-addon-badges.php:403
|
287 |
msgid "Remove Connections"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: ../addons/badges/myCRED-addon-badges.php:455
|
291 |
msgid "Time(s)"
|
292 |
-
msgstr ""
|
293 |
|
294 |
#: ../addons/badges/myCRED-addon-badges.php:456
|
295 |
msgid "In total"
|
296 |
-
msgstr ""
|
297 |
|
298 |
#: ../addons/badges/myCRED-addon-badges.php:478 ../addons/badges/myCRED-addon-
|
299 |
#: badges.php:625
|
300 |
msgid "Badge Image"
|
301 |
-
msgstr ""
|
302 |
|
303 |
#: ../addons/badges/myCRED-addon-badges.php:479 ../addons/badges/myCRED-addon-
|
304 |
#: badges.php:479
|
305 |
msgid "Set badge image"
|
306 |
-
msgstr ""
|
307 |
|
308 |
#: ../addons/badges/myCRED-addon-badges.php:571 ../addons/badges/myCRED-addon-
|
309 |
#: badges.php:591
|
310 |
msgid "no image"
|
311 |
-
msgstr ""
|
312 |
|
313 |
#: ../addons/badges/myCRED-addon-badges.php:578
|
314 |
msgid "Default Image"
|
315 |
-
msgstr ""
|
316 |
|
317 |
#: ../addons/badges/myCRED-addon-badges.php:579
|
318 |
msgid ""
|
319 |
"Option to show a default image if the user has not yet earned this badge. "
|
320 |
"Leave empty if not used."
|
321 |
msgstr ""
|
|
|
|
|
322 |
|
323 |
#: ../addons/badges/myCRED-addon-badges.php:582 ../addons/badges/myCRED-addon-
|
324 |
#: badges.php:602
|
325 |
msgid "image url"
|
326 |
-
msgstr ""
|
327 |
|
328 |
#: ../addons/badges/myCRED-addon-badges.php:598
|
329 |
msgid "Main Image"
|
330 |
-
msgstr ""
|
331 |
|
332 |
#: ../addons/badges/myCRED-addon-badges.php:599
|
333 |
msgid "Image to show when the user has earned this badge."
|
334 |
-
msgstr ""
|
335 |
|
336 |
#: ../addons/badges/myCRED-addon-badges.php:627
|
337 |
msgid "Use as Badge"
|
338 |
-
msgstr ""
|
339 |
|
340 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
341 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
342 |
-
#: modules/mycred-module-buddypress.php:
|
343 |
msgid "Do not show"
|
344 |
msgstr "No Mostrar"
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
347 |
-
#: buddypress.php:
|
348 |
msgid "Include in Profile Header"
|
349 |
-
msgstr ""
|
350 |
|
351 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
352 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
353 |
msgid "Include under the \"Profile\" tab"
|
354 |
msgstr "Incluir debajo de la pestaña del \"Perfil\""
|
355 |
|
356 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
357 |
-
#: buddypress.php:
|
358 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
359 |
-
msgstr ""
|
360 |
|
361 |
#: ../addons/badges/myCRED-addon-badges.php:730
|
362 |
msgid "Include in Profile"
|
363 |
-
msgstr ""
|
364 |
|
365 |
#: ../addons/badges/myCRED-addon-badges.php:731
|
366 |
msgid "Include in Forum Replies"
|
367 |
-
msgstr ""
|
368 |
|
369 |
#: ../addons/badges/myCRED-addon-badges.php:732
|
370 |
msgid "Include in Profile and Forum Replies"
|
371 |
-
msgstr ""
|
372 |
|
373 |
#: ../addons/badges/includes/mycred-badge-functions.php:61 ..
|
374 |
#: addons/badges/includes/mycred-badge-functions.php:63
|
375 |
msgid "for"
|
376 |
-
msgstr ""
|
377 |
|
378 |
#: ../addons/badges/includes/mycred-badge-functions.php:61
|
379 |
msgid "time(s)"
|
380 |
-
msgstr ""
|
381 |
|
382 |
#: ../addons/badges/includes/mycred-badge-functions.php:63
|
383 |
msgid "in total"
|
384 |
-
msgstr ""
|
385 |
|
386 |
#: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
|
387 |
#: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
|
@@ -390,7 +392,7 @@ msgstr "Banco"
|
|
390 |
|
391 |
#: ../addons/banking/myCRED-addon-banking.php:158
|
392 |
msgid "Central Banking"
|
393 |
-
msgstr ""
|
394 |
|
395 |
#: ../addons/banking/myCRED-addon-banking.php:159
|
396 |
#, php-format
|
@@ -399,6 +401,9 @@ msgid ""
|
|
399 |
"nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
|
400 |
"deposited back into this account."
|
401 |
msgstr ""
|
|
|
|
|
|
|
402 |
|
403 |
#: ../addons/banking/myCRED-addon-banking.php:165 ..
|
404 |
#: addons/banking/services/mycred-bank-service-interest.php:512
|
@@ -409,6 +414,8 @@ msgstr "Interés Compuesto"
|
|
409 |
#, php-format
|
410 |
msgid "Apply a positive or negative interest rate on your users %_plural% balances."
|
411 |
msgstr ""
|
|
|
|
|
412 |
|
413 |
#: ../addons/banking/myCRED-addon-banking.php:172
|
414 |
msgid "Recurring Payouts"
|
@@ -416,14 +423,14 @@ msgstr "Pagos Recurrentes"
|
|
416 |
|
417 |
#: ../addons/banking/myCRED-addon-banking.php:173
|
418 |
msgid "Setup mass %_singular% payouts for your users."
|
419 |
-
msgstr ""
|
420 |
|
421 |
#: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
|
422 |
#: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
|
423 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
424 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
425 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
426 |
-
#: modules/mycred-module-settings.php:
|
427 |
msgid "Access Denied"
|
428 |
msgstr "Acceso Denegado"
|
429 |
|
@@ -434,7 +441,7 @@ msgstr "%s Bancario"
|
|
434 |
|
435 |
#: ../addons/banking/myCRED-addon-banking.php:228
|
436 |
msgid "Your banking setup for %plural%."
|
437 |
-
msgstr ""
|
438 |
|
439 |
#: ../addons/banking/myCRED-addon-banking.php:231
|
440 |
msgid "WP-Cron deactivation detected!"
|
@@ -447,7 +454,7 @@ msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
|
|
447 |
#: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
|
448 |
#: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
|
449 |
msgid "Enable"
|
450 |
-
msgstr "
|
451 |
|
452 |
#: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
|
453 |
#: php:211
|
@@ -489,15 +496,17 @@ msgstr "Anual"
|
|
489 |
|
490 |
#: ../addons/banking/services/mycred-bank-service-central.php:105
|
491 |
msgid "Bank User"
|
492 |
-
msgstr ""
|
493 |
|
494 |
#: ../addons/banking/services/mycred-bank-service-central.php:109
|
495 |
msgid "The user ID of the central bank account. This user can not be excluded!"
|
496 |
msgstr ""
|
|
|
|
|
497 |
|
498 |
#: ../addons/banking/services/mycred-bank-service-central.php:112
|
499 |
msgid "Ignore Manual Adjustments"
|
500 |
-
msgstr ""
|
501 |
|
502 |
#: ../addons/banking/services/mycred-bank-service-interest.php:24
|
503 |
msgid "%plural% interest rate payment"
|
@@ -505,47 +514,47 @@ msgstr "%plural% pago de tasa de interés"
|
|
505 |
|
506 |
#: ../addons/banking/services/mycred-bank-service-interest.php:379
|
507 |
msgid "Compounding Interest"
|
508 |
-
msgstr ""
|
509 |
|
510 |
#: ../addons/banking/services/mycred-bank-service-interest.php:379
|
511 |
#, php-format
|
512 |
msgid "%d Users are left to process."
|
513 |
-
msgstr ""
|
514 |
|
515 |
#: ../addons/banking/services/mycred-bank-service-interest.php:388
|
516 |
msgid "Payout History"
|
517 |
-
msgstr ""
|
518 |
|
519 |
#: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
|
520 |
#: addons/banking/services/mycred-bank-service-interest.php:409 ..
|
521 |
#: addons/banking/services/mycred-bank-service-payouts.php:249
|
522 |
msgid "Run Count"
|
523 |
-
msgstr ""
|
524 |
|
525 |
#: ../addons/banking/services/mycred-bank-service-interest.php:397
|
526 |
msgid "Last Payout"
|
527 |
-
msgstr ""
|
528 |
|
529 |
#: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
|
530 |
#: addons/banking/services/mycred-bank-service-interest.php:414
|
531 |
msgid "Activated"
|
532 |
-
msgstr ""
|
533 |
|
534 |
#: ../addons/banking/services/mycred-bank-service-interest.php:401
|
535 |
msgid "Total Payed Interest"
|
536 |
-
msgstr ""
|
537 |
|
538 |
#: ../addons/banking/services/mycred-bank-service-interest.php:405
|
539 |
msgid "Compound History"
|
540 |
-
msgstr ""
|
541 |
|
542 |
#: ../addons/banking/services/mycred-bank-service-interest.php:414
|
543 |
msgid "Last Interest Compound"
|
544 |
-
msgstr ""
|
545 |
|
546 |
#: ../addons/banking/services/mycred-bank-service-interest.php:418
|
547 |
msgid "Total Compounded Interest"
|
548 |
-
msgstr ""
|
549 |
|
550 |
#: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
|
551 |
#: addons/banking/services/mycred-bank-service-interest.php:549
|
@@ -554,7 +563,7 @@ msgstr "Tasa de Interés"
|
|
554 |
|
555 |
#: ../addons/banking/services/mycred-bank-service-interest.php:425
|
556 |
msgid "Default Rate"
|
557 |
-
msgstr ""
|
558 |
|
559 |
#: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
|
560 |
#: addons/banking/services/mycred-bank-service-payouts.php:267
|
@@ -576,8 +585,8 @@ msgstr "Desembolso"
|
|
576 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
577 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
578 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
579 |
-
#: modules/mycred-module-hooks.php:
|
580 |
-
#: plugins/mycred-hook-badgeOS.php:
|
581 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
582 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
583 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -595,60 +604,60 @@ msgstr "Saldo Minimo"
|
|
595 |
#: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
|
596 |
#: addons/banking/services/mycred-bank-service-payouts.php:293
|
597 |
msgid "Optional minimum balance requirement."
|
598 |
-
msgstr ""
|
599 |
|
600 |
#: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
|
601 |
#: addons/banking/services/mycred-bank-service-payouts.php:296
|
602 |
msgid "Exclude"
|
603 |
-
msgstr ""
|
604 |
|
605 |
#: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
|
606 |
#: addons/banking/services/mycred-bank-service-payouts.php:299
|
607 |
msgid "Comma separated list of user IDs"
|
608 |
-
msgstr ""
|
609 |
|
610 |
#: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
|
611 |
#: addons/banking/services/mycred-bank-service-payouts.php:303
|
612 |
msgid "Roles"
|
613 |
-
msgstr ""
|
614 |
|
615 |
#: ../addons/banking/services/mycred-bank-service-interest.php:522
|
616 |
msgid "This user is excluded from receiving interest on this balance."
|
617 |
-
msgstr ""
|
618 |
|
619 |
#: ../addons/banking/services/mycred-bank-service-interest.php:525
|
620 |
msgid "Remove from Excluded List"
|
621 |
-
msgstr ""
|
622 |
|
623 |
#: ../addons/banking/services/mycred-bank-service-interest.php:537
|
624 |
msgid "This user role is excluded from receiving interest on this balance."
|
625 |
-
msgstr ""
|
626 |
|
627 |
#: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
|
628 |
#: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
|
629 |
#: content.php:113
|
630 |
msgid "Leave empty to use the default value."
|
631 |
-
msgstr ""
|
632 |
|
633 |
#: ../addons/banking/services/mycred-bank-service-interest.php:558
|
634 |
msgid "Save Interest Rate"
|
635 |
-
msgstr ""
|
636 |
|
637 |
#: ../addons/banking/services/mycred-bank-service-interest.php:559
|
638 |
msgid "Exclude from receiving interest"
|
639 |
-
msgstr ""
|
640 |
|
641 |
#: ../addons/banking/services/mycred-bank-service-interest.php:667
|
642 |
msgid "Compound interest rate saved."
|
643 |
-
msgstr ""
|
644 |
|
645 |
#: ../addons/banking/services/mycred-bank-service-interest.php:669
|
646 |
msgid "User excluded from receiving interest."
|
647 |
-
msgstr ""
|
648 |
|
649 |
#: ../addons/banking/services/mycred-bank-service-interest.php:671
|
650 |
msgid "User included in receiving interest."
|
651 |
-
msgstr ""
|
652 |
|
653 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:21
|
654 |
msgid "Daily %_plural%"
|
@@ -662,11 +671,11 @@ msgstr "Historial"
|
|
662 |
|
663 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:254
|
664 |
msgid "Last Run"
|
665 |
-
msgstr ""
|
666 |
|
667 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:258
|
668 |
msgid "Total Payouts"
|
669 |
-
msgstr ""
|
670 |
|
671 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:262
|
672 |
msgid "Pay Users"
|
@@ -674,15 +683,15 @@ msgstr "Pagar a los Usuarios"
|
|
674 |
|
675 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
676 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
677 |
-
#: creds.php:
|
678 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
679 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
680 |
-
#: includes/mycred-shortcodes.php:
|
681 |
msgid "Amount"
|
682 |
msgstr "Cantidad"
|
683 |
|
684 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
685 |
-
#: modules/mycred-module-hooks.php:
|
686 |
msgid "Interval"
|
687 |
msgstr "Interval"
|
688 |
|
@@ -717,60 +726,60 @@ msgstr "Pasarela de Pago"
|
|
717 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
|
718 |
msgctxt "Post Type General Name"
|
719 |
msgid "Pending Payments"
|
720 |
-
msgstr ""
|
721 |
|
722 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
|
723 |
msgctxt "Post Type Singular Name"
|
724 |
msgid "Pending Payment"
|
725 |
-
msgstr ""
|
726 |
|
727 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
|
728 |
#: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
|
729 |
msgid "Pending Payments"
|
730 |
-
msgstr ""
|
731 |
|
732 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
|
733 |
msgid "Edit Pending Payment"
|
734 |
-
msgstr ""
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
737 |
-
#: addon-buy-creds.php:
|
738 |
msgid "No pending payments found"
|
739 |
-
msgstr ""
|
740 |
|
741 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
|
742 |
msgid "Not found in Trash"
|
743 |
-
msgstr ""
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
746 |
-
#: addon-buy-creds.php:
|
747 |
msgid "Transaction ID"
|
748 |
msgstr "Identificación de la Transacción"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
751 |
-
#: addon-buy-creds.php:
|
752 |
msgid "Buyer"
|
753 |
-
msgstr ""
|
754 |
|
755 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
756 |
-
#: addon-buy-creds.php:
|
757 |
#: gateway.php:563
|
758 |
msgid "Cost"
|
759 |
msgstr "Costo"
|
760 |
|
761 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
762 |
-
#: addon-buy-creds.php:
|
763 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
764 |
msgid "Gateway"
|
765 |
msgstr "Pasarela"
|
766 |
|
767 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
|
768 |
msgid "Type"
|
769 |
-
msgstr ""
|
770 |
|
771 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:391
|
772 |
msgid "Pay Out"
|
773 |
-
msgstr ""
|
774 |
|
775 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:422
|
776 |
msgid "buyCRED Purchase Log"
|
@@ -810,13 +819,15 @@ msgstr ""
|
|
810 |
|
811 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
812 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
813 |
-
#: module-settings.php:
|
814 |
msgid "Point Types"
|
815 |
-
msgstr "
|
816 |
|
817 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:589
|
818 |
msgid "Select the point types that users can buy. You must select at least one!"
|
819 |
msgstr ""
|
|
|
|
|
820 |
|
821 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:600
|
822 |
msgid "Login Template"
|
@@ -863,26 +874,26 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
863 |
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
864 |
|
865 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
866 |
-
#: hooks.php:
|
867 |
msgid "Available Shortcodes"
|
868 |
msgstr "Códigos cortos Disponibles"
|
869 |
|
870 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:753
|
871 |
#, php-format
|
872 |
msgid "%s Exchange Rate"
|
873 |
-
msgstr ""
|
874 |
|
875 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
|
876 |
msgid "Save Exchange Rates"
|
877 |
-
msgstr ""
|
878 |
|
879 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
|
880 |
msgid "Exchange rate override saved"
|
881 |
-
msgstr ""
|
882 |
|
883 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
|
884 |
msgid "Payment completed"
|
885 |
-
msgstr ""
|
886 |
|
887 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
|
888 |
#, php-format
|
@@ -890,7 +901,7 @@ msgid "%s Payment Gateways"
|
|
890 |
msgstr "%s Pasarelas de Pago"
|
891 |
|
892 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
893 |
-
#: addon-buy-creds.php:
|
894 |
msgid "buyCRED Settings"
|
895 |
msgstr "Configuraciones de compraCRED"
|
896 |
|
@@ -905,7 +916,7 @@ msgstr "Habilitado"
|
|
905 |
#. also, "Inhabilitar"
|
906 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
|
907 |
msgid "Disabled"
|
908 |
-
msgstr "
|
909 |
|
910 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
|
911 |
msgid "Sandbox Mode"
|
@@ -916,111 +927,111 @@ msgid "Enable for test purchases."
|
|
916 |
msgstr "Habilitar para compras de prueba."
|
917 |
|
918 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
919 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
920 |
msgid "Update Settings"
|
921 |
msgstr "Actualizar Configuraciones"
|
922 |
|
923 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
|
924 |
msgid "More Gateways"
|
925 |
-
msgstr ""
|
926 |
|
927 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
928 |
#: 634
|
929 |
msgid "Date"
|
930 |
msgstr "Fecha"
|
931 |
|
932 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
933 |
msgid "Payed"
|
934 |
msgstr "Pagado"
|
935 |
|
936 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
937 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
938 |
msgstr "Registro de Compras de <strong>compra</strong>CRED"
|
939 |
|
940 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
941 |
#: booking/mycred-eventespresso3.php:367
|
942 |
msgid "Gateway Settings"
|
943 |
msgstr "Configuraciones de la Pasarela de Pago"
|
944 |
|
945 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
946 |
-
#: content/myCRED-addon-sell-content.php:
|
947 |
msgid "No purchases found"
|
948 |
msgstr "No se encontro ninguna compra"
|
949 |
|
950 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
951 |
-
#: addon-buy-creds.php:
|
952 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
953 |
msgstr ""
|
954 |
"Esta extensión (add-on) debe ser configurado antes de poder usar este código "
|
955 |
"corto (shortcode)."
|
956 |
|
957 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
958 |
-
#: addon-buy-creds.php:
|
959 |
msgid "No gateways installed."
|
960 |
msgstr "Ningun pasarela de pago instalado."
|
961 |
|
962 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
963 |
-
#: addon-buy-creds.php:
|
964 |
msgid "Gateway does not exist."
|
965 |
msgstr "Puerta de enlace no existe."
|
966 |
|
967 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
968 |
msgid "Yourself"
|
969 |
msgstr "Tu mismo"
|
970 |
|
971 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
972 |
msgid "No active gateways found."
|
973 |
msgstr "No se encuentra ningun puerta de enlace activo."
|
974 |
|
975 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
976 |
msgid "The selected gateway is not active."
|
977 |
msgstr "La puerta de enlace seleccionada no esta activo."
|
978 |
|
979 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
980 |
#, php-format
|
981 |
msgid "Buy with %gateway%"
|
982 |
msgstr "Compra con %gateway%"
|
983 |
|
984 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
985 |
#: content/myCRED-addon-sell-content.php:44
|
986 |
msgid "Buy Now"
|
987 |
msgstr "Compra Ahora"
|
988 |
|
989 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
990 |
msgid "No users found"
|
991 |
msgstr "Ningun Usuario Encontrado"
|
992 |
|
993 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
994 |
msgid "To"
|
995 |
msgstr "A"
|
996 |
|
997 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
998 |
msgid "Select Amount"
|
999 |
msgstr "Selecciona la Cantidad"
|
1000 |
|
1001 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1002 |
msgid "min."
|
1003 |
msgstr "min."
|
1004 |
|
1005 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1006 |
msgid "Select Gateway"
|
1007 |
msgstr "Selecciona la Pasarela de Pago"
|
1008 |
|
1009 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1010 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1011 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1012 |
#: php:35
|
1013 |
msgid "Pay Now"
|
1014 |
msgstr "Pagar Ahora"
|
1015 |
|
1016 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1017 |
-
#: php:
|
1018 |
msgid "Cancel"
|
1019 |
msgstr "Cancelar"
|
1020 |
|
1021 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1022 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1023 |
-
#: module-settings.php:
|
1024 |
msgid "Actions"
|
1025 |
msgstr "Acciones"
|
1026 |
|
@@ -1166,57 +1177,57 @@ msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
|
|
1166 |
msgid "The following information will be sent to the gateway"
|
1167 |
msgstr "La información siguiente sera transmitido a la pasarela de pago"
|
1168 |
|
1169 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1170 |
msgid "Outside US"
|
1171 |
msgstr "Fuera de los EEUU"
|
1172 |
|
1173 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1174 |
msgid "January"
|
1175 |
-
msgstr ""
|
1176 |
|
1177 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1178 |
msgid "February"
|
1179 |
-
msgstr ""
|
1180 |
|
1181 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1182 |
msgid "March"
|
1183 |
-
msgstr ""
|
1184 |
|
1185 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1186 |
msgid "April"
|
1187 |
-
msgstr ""
|
1188 |
|
1189 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1190 |
msgid "May"
|
1191 |
-
msgstr ""
|
1192 |
|
1193 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1194 |
msgid "June"
|
1195 |
-
msgstr ""
|
1196 |
|
1197 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1198 |
msgid "July"
|
1199 |
-
msgstr ""
|
1200 |
|
1201 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1202 |
msgid "August"
|
1203 |
-
msgstr ""
|
1204 |
|
1205 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1206 |
msgid "September"
|
1207 |
-
msgstr ""
|
1208 |
|
1209 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1210 |
msgid "October"
|
1211 |
-
msgstr ""
|
1212 |
|
1213 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1214 |
msgid "November"
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1218 |
msgid "December"
|
1219 |
-
msgstr ""
|
1220 |
|
1221 |
#: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
|
1222 |
#: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
|
@@ -1229,27 +1240,27 @@ msgstr "Compra de myCRED %plural%"
|
|
1229 |
#: php:142 ../addons/buy-creds/gateways/skrill.php:119
|
1230 |
#, php-format
|
1231 |
msgid "Price mismatch. Expected: %s Received: %s"
|
1232 |
-
msgstr ""
|
1233 |
|
1234 |
#: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
|
1235 |
#: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
|
1236 |
#, php-format
|
1237 |
msgid "Currency mismatch. Expected: %s Received: %s"
|
1238 |
-
msgstr ""
|
1239 |
|
1240 |
#: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
|
1241 |
#: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
|
1242 |
#: php:154 ../addons/buy-creds/gateways/skrill.php:131
|
1243 |
#, php-format
|
1244 |
msgid "Payment not completed. Received: %s"
|
1245 |
-
msgstr ""
|
1246 |
|
1247 |
#: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
|
1248 |
#: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
|
1249 |
#: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
|
1250 |
#: creds/gateways/zombaio.php:174
|
1251 |
msgid "Failed to credit users account."
|
1252 |
-
msgstr ""
|
1253 |
|
1254 |
#: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
|
1255 |
#: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
|
@@ -1307,7 +1318,7 @@ msgstr "Descripción del artículo que el usuario esta comprando."
|
|
1307 |
#: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
|
1308 |
#: php:298 ../addons/buy-creds/gateways/skrill.php:319
|
1309 |
msgid "Exchange Rates"
|
1310 |
-
msgstr ""
|
1311 |
|
1312 |
#: ../addons/buy-creds/gateways/bitpay.php:270
|
1313 |
msgid "Transaction Speed"
|
@@ -1469,7 +1480,7 @@ msgstr "Página de Pago"
|
|
1469 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1470 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1471 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1472 |
-
#: modules/mycred-module-hooks.php:
|
1473 |
msgid "Title"
|
1474 |
msgstr "Titulo"
|
1475 |
|
@@ -1536,12 +1547,12 @@ msgstr ""
|
|
1536 |
#: ../addons/buy-creds/gateways/zombaio.php:143
|
1537 |
#, php-format
|
1538 |
msgid "Duplicate transaction. Received: %s"
|
1539 |
-
msgstr ""
|
1540 |
|
1541 |
#: ../addons/buy-creds/gateways/zombaio.php:149
|
1542 |
#, php-format
|
1543 |
msgid "Live transaction while debug mode is enabled! Received: %s"
|
1544 |
-
msgstr ""
|
1545 |
|
1546 |
#: ../addons/buy-creds/gateways/zombaio.php:251
|
1547 |
msgid "Site ID"
|
@@ -1594,7 +1605,7 @@ msgstr "Cupón"
|
|
1594 |
|
1595 |
#: ../addons/coupons/myCRED-addon-coupons.php:88
|
1596 |
msgid "Create New"
|
1597 |
-
msgstr "
|
1598 |
|
1599 |
#: ../addons/coupons/myCRED-addon-coupons.php:89
|
1600 |
msgid "Create New Coupon"
|
@@ -1606,7 +1617,7 @@ msgstr "Editar Cupón"
|
|
1606 |
|
1607 |
#: ../addons/coupons/myCRED-addon-coupons.php:91
|
1608 |
msgid "New Coupon"
|
1609 |
-
msgstr "
|
1610 |
|
1611 |
#: ../addons/coupons/myCRED-addon-coupons.php:94
|
1612 |
msgid "Search coupons"
|
@@ -1618,7 +1629,7 @@ msgstr "Ningun Cupón Encontrado"
|
|
1618 |
|
1619 |
#: ../addons/coupons/myCRED-addon-coupons.php:96
|
1620 |
msgid "No coupons found in Trash"
|
1621 |
-
msgstr "Ningun Cupón Encontrado en Papelera"
|
1622 |
|
1623 |
#: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
|
1624 |
#: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
|
@@ -1676,7 +1687,7 @@ msgid "not yet used"
|
|
1676 |
msgstr "todavia no utilizado"
|
1677 |
|
1678 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1679 |
-
#: php:
|
1680 |
msgid "Total"
|
1681 |
msgstr "Total"
|
1682 |
|
@@ -1722,11 +1733,11 @@ msgstr "La cantidad de %plural% que vale este cupón."
|
|
1722 |
#: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
|
1723 |
#: includes/importers/mycred-cubepoints.php:365
|
1724 |
msgid "Point Type"
|
1725 |
-
msgstr "
|
1726 |
|
1727 |
#: ../addons/coupons/myCRED-addon-coupons.php:316
|
1728 |
msgid "Select the point type that this coupon is applied."
|
1729 |
-
msgstr "Elige el
|
1730 |
|
1731 |
#: ../addons/coupons/myCRED-addon-coupons.php:321
|
1732 |
msgid "Expire"
|
@@ -1854,7 +1865,7 @@ msgid "Apply Coupon"
|
|
1854 |
msgstr "Aplica el Cupón"
|
1855 |
|
1856 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1857 |
-
#: notices/myCRED-addon-email-notices.php:
|
1858 |
msgid "Email Notice"
|
1859 |
msgstr "Aviso por Correo Electrónico"
|
1860 |
|
@@ -2001,27 +2012,27 @@ msgstr ""
|
|
2001 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
|
2002 |
#: notices/myCRED-addon-email-notices.php:305
|
2003 |
msgid "Email Schedule"
|
2004 |
-
msgstr ""
|
2005 |
|
2006 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:301
|
2007 |
msgid "WordPress Cron is disabled. Emails will be sent immediately."
|
2008 |
-
msgstr ""
|
2009 |
|
2010 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:309
|
2011 |
msgid "Send emails immediately"
|
2012 |
-
msgstr ""
|
2013 |
|
2014 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:313
|
2015 |
msgid "Send emails once an hour"
|
2016 |
-
msgstr ""
|
2017 |
|
2018 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:317
|
2019 |
msgid "Send emails once a day"
|
2020 |
-
msgstr ""
|
2021 |
|
2022 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:320
|
2023 |
msgid "Subscriptions"
|
2024 |
-
msgstr ""
|
2025 |
|
2026 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:322
|
2027 |
#, php-format
|
@@ -2029,16 +2040,20 @@ msgid ""
|
|
2029 |
"Use the %s shortcode to allow users to subscribe / unsubscribe to email "
|
2030 |
"updates."
|
2031 |
msgstr ""
|
|
|
|
|
2032 |
|
2033 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:327
|
2034 |
msgid "SMTP Override"
|
2035 |
-
msgstr ""
|
2036 |
|
2037 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:331
|
2038 |
msgid ""
|
2039 |
"SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
|
2040 |
"use a SMTP plugin for emails."
|
2041 |
msgstr ""
|
|
|
|
|
2042 |
|
2043 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:334
|
2044 |
msgid ""
|
@@ -2049,17 +2064,17 @@ msgstr ""
|
|
2049 |
"pueden ser anulado individualmente cuando se edita correos electrónicos."
|
2050 |
|
2051 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2052 |
-
#: notices/myCRED-addon-email-notices.php:
|
2053 |
msgid "Email Settings"
|
2054 |
-
msgstr "
|
2055 |
|
2056 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2057 |
-
#: notices/myCRED-addon-email-notices.php:
|
2058 |
msgid "Senders Name:"
|
2059 |
msgstr "Nombre del Remitente"
|
2060 |
|
2061 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2062 |
-
#: notices/myCRED-addon-email-notices.php:
|
2063 |
msgid "Senders Email:"
|
2064 |
msgstr "Correo Electrónico del Remitente:"
|
2065 |
|
@@ -2083,140 +2098,140 @@ msgstr "Estilo de Correo Electrónico Predefinido"
|
|
2083 |
msgid "Ignored if HTML is not allowed in emails."
|
2084 |
msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
|
2085 |
|
2086 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2087 |
-
#: notices/myCRED-addon-email-notices.php:
|
2088 |
msgid "Email Subject"
|
2089 |
msgstr "Asunto del Correo Electrónico"
|
2090 |
|
2091 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2092 |
msgid "Status"
|
2093 |
msgstr "Estatus"
|
2094 |
|
2095 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2096 |
msgid "Not Active"
|
2097 |
msgstr "No esta Activo"
|
2098 |
|
2099 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2100 |
#, php-format
|
2101 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2102 |
msgstr "Programada:<br /><strong>%1$s</strong>"
|
2103 |
|
2104 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2105 |
msgid "Active"
|
2106 |
msgstr "Activo"
|
2107 |
|
2108 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2109 |
#, php-format
|
2110 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2111 |
msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
msgid "Email is sent when"
|
2115 |
msgstr "el Correo Electrónico se envia cuando"
|
2116 |
|
2117 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2118 |
msgid "Missing instance for this notice!"
|
2119 |
msgstr "¡Falta una instancia para este aviso!"
|
2120 |
|
2121 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2122 |
-
#: notices/myCRED-addon-email-notices.php:
|
2123 |
-
#: addon-email-notices.php:
|
2124 |
msgid "Sent To"
|
2125 |
msgstr "Enviado A:"
|
2126 |
|
2127 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2128 |
-
#: notices/myCRED-addon-email-notices.php:
|
2129 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2130 |
msgid "User"
|
2131 |
msgstr "Usuario"
|
2132 |
|
2133 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2134 |
-
#: notices/myCRED-addon-email-notices.php:
|
2135 |
msgid "Administrator"
|
2136 |
msgstr "Administrador"
|
2137 |
|
2138 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2139 |
msgid "Both Administrator and User"
|
2140 |
msgstr "Tanto Administrador como Usuario"
|
2141 |
|
2142 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2143 |
msgid "Available Template Tags"
|
2144 |
msgstr "Etiquetas (tags) de Plantilla Disponibles"
|
2145 |
|
2146 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2147 |
msgid "Email Header"
|
2148 |
msgstr "Encabezado del Correo Electrónico"
|
2149 |
|
2150 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2151 |
msgid "Send this email notice when..."
|
2152 |
msgstr "Envia este aviso por correo electrónico cuando..."
|
2153 |
|
2154 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2155 |
msgid "Recipient:"
|
2156 |
msgstr "Destinatario:"
|
2157 |
|
2158 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2159 |
msgid "Both"
|
2160 |
msgstr "Ambos"
|
2161 |
|
2162 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2163 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2164 |
-
#: settings.php:
|
2165 |
-
#: module-settings.php:
|
2166 |
msgid "Label"
|
2167 |
msgstr "Etiqueta"
|
2168 |
|
2169 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2170 |
msgid "Reply-To Email:"
|
2171 |
msgstr "Responder-A Correo Electrónico:"
|
2172 |
|
2173 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2174 |
msgid "Save"
|
2175 |
msgstr "Guardar"
|
2176 |
|
2177 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2178 |
msgid "CSS Styling"
|
2179 |
msgstr "Estilo CSS"
|
2180 |
|
2181 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2182 |
msgid "Site Related"
|
2183 |
msgstr "Relacionado al Sitio"
|
2184 |
|
2185 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2186 |
msgid "Your websites title"
|
2187 |
msgstr "Titulo de tu pagina web"
|
2188 |
|
2189 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2190 |
msgid "Your websites address"
|
2191 |
msgstr "Dirección de tu pagina web"
|
2192 |
|
2193 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2194 |
msgid "Your websites tagline (description)"
|
2195 |
msgstr "La descripción de tu sitio web (lema o eslogan)"
|
2196 |
|
2197 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2198 |
msgid "Your websites admin email"
|
2199 |
msgstr "El correo electrónico de admin para tu pagina web"
|
2200 |
|
2201 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2202 |
msgid "Total number of blog members"
|
2203 |
msgstr "Número total de miembros del blog"
|
2204 |
|
2205 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2206 |
-
#: notices/myCRED-addon-email-notices.php:
|
2207 |
-
#: addon-email-notices.php:
|
2208 |
msgid "Email Notice Updated."
|
2209 |
-
msgstr ""
|
2210 |
|
2211 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2212 |
msgid "Email Notice Activated"
|
2213 |
msgstr "Notificación atraves de Correo Electrónico Activado"
|
2214 |
|
2215 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2216 |
msgid "Email Notice Saved"
|
2217 |
msgstr "Aviso por Correo Electrónico Guardado"
|
2218 |
|
2219 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2220 |
msgid ""
|
2221 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2222 |
"are not yet ready to use this email notice!"
|
@@ -2224,30 +2239,30 @@ msgstr ""
|
|
2224 |
"¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
|
2225 |
"si aun no estás listo para utilizar este aviso por email!"
|
2226 |
|
2227 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2228 |
#, php-format
|
2229 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2230 |
msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
|
2231 |
|
2232 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2233 |
msgid "This email notice is active."
|
2234 |
msgstr "Esta notificación de correo electrónico esta activada."
|
2235 |
|
2236 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2237 |
msgid "Settings saved."
|
2238 |
-
msgstr ""
|
2239 |
|
2240 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2241 |
msgid "Unsubscribe"
|
2242 |
-
msgstr ""
|
2243 |
|
2244 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2245 |
msgid "There are no email notifications yet."
|
2246 |
-
msgstr ""
|
2247 |
|
2248 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2249 |
msgid "Save Changes"
|
2250 |
-
msgstr ""
|
2251 |
|
2252 |
#: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
|
2253 |
#: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
|
@@ -2294,7 +2309,7 @@ msgstr "Pagado"
|
|
2294 |
|
2295 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2296 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2297 |
-
#: 52 ../includes/mycred-network.php:53
|
2298 |
msgid "myCRED"
|
2299 |
msgstr "myCRED"
|
2300 |
|
@@ -2327,7 +2342,7 @@ msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balanc
|
|
2327 |
#: ../addons/gateway/carts/mycred-marketpress.php:361 ..
|
2328 |
#: addons/gateway/carts/mycred-woocommerce.php:237
|
2329 |
msgid "Insufficient funds."
|
2330 |
-
msgstr ""
|
2331 |
|
2332 |
#: ../addons/gateway/carts/mycred-marketpress.php:362
|
2333 |
msgid ""
|
@@ -2375,7 +2390,7 @@ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
|
|
2375 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2376 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2377 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2378 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2379 |
msgid "Exchange Rate"
|
2380 |
msgstr "Tipo de Cambio"
|
2381 |
|
@@ -2507,7 +2522,7 @@ msgstr "Restar la cantidad de su saldo de %_plural%"
|
|
2507 |
|
2508 |
#: ../addons/gateway/carts/mycred-woocommerce.php:110
|
2509 |
msgid "Select the point type users can use to pay."
|
2510 |
-
msgstr "Elige el
|
2511 |
|
2512 |
#: ../addons/gateway/carts/mycred-woocommerce.php:136
|
2513 |
msgid "Show Total"
|
@@ -2675,7 +2690,7 @@ msgstr "Titulo que se mostrara en tu pagina de Pago"
|
|
2675 |
|
2676 |
#: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
|
2677 |
msgid "Payment Type"
|
2678 |
-
msgstr "
|
2679 |
|
2680 |
#: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
|
2681 |
msgid "Title to show on receipts and logs"
|
@@ -2685,7 +2700,7 @@ msgstr "El titulo a mostrar en la factura y en los registros."
|
|
2685 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2686 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2687 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2688 |
-
#: sell-content.php:
|
2689 |
msgid "Button Label"
|
2690 |
msgstr "Eqiqueta Asignada al Botón"
|
2691 |
|
@@ -2699,7 +2714,7 @@ msgstr "Botón de Pago"
|
|
2699 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2700 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2701 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2702 |
-
#: sell-content.php:
|
2703 |
msgid "Price"
|
2704 |
msgstr "Precio"
|
2705 |
|
@@ -2792,7 +2807,7 @@ msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
|
|
2792 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
|
2793 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:333
|
2794 |
msgid "Ticket Type"
|
2795 |
-
msgstr "
|
2796 |
|
2797 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
|
2798 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:342
|
@@ -2808,8 +2823,8 @@ msgid "Reject"
|
|
2808 |
msgstr "Rechazar"
|
2809 |
|
2810 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2811 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2812 |
-
#: modules/mycred-module-settings.php:
|
2813 |
msgid "Delete"
|
2814 |
msgstr "Borrar"
|
2815 |
|
@@ -2936,7 +2951,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2936 |
msgstr "Utilice el Estilo CSS incluido para notificaciones."
|
2937 |
|
2938 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2939 |
-
#: module-buddypress.php:
|
2940 |
msgid "Template"
|
2941 |
msgstr "Plantilla"
|
2942 |
|
@@ -3034,11 +3049,11 @@ msgstr "Registro esta Vacío"
|
|
3034 |
#: php:555 ../addons/ranks/myCRED-addon-ranks.php:559 ../addons/ranks/myCRED-
|
3035 |
#: addon-ranks.php:560
|
3036 |
msgid "Rank Updated."
|
3037 |
-
msgstr ""
|
3038 |
|
3039 |
#: ../addons/ranks/myCRED-addon-ranks.php:557
|
3040 |
msgid "Rank Enabled"
|
3041 |
-
msgstr ""
|
3042 |
|
3043 |
#: ../addons/ranks/myCRED-addon-ranks.php:558
|
3044 |
msgid "Rank Saved"
|
@@ -3221,7 +3236,7 @@ msgstr ""
|
|
3221 |
"y/o en el frente si los rangos son \"Público\""
|
3222 |
|
3223 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3224 |
-
#: php:
|
3225 |
msgid "Do not show."
|
3226 |
msgstr "No mostrar."
|
3227 |
|
@@ -3231,7 +3246,7 @@ msgstr "Incluir en Encabezado del Perfil"
|
|
3231 |
|
3232 |
#: ../addons/ranks/myCRED-addon-ranks.php:861
|
3233 |
msgid "Include under the \"Profile\" tab and Profile Header."
|
3234 |
-
msgstr "Incluir
|
3235 |
|
3236 |
#: ../addons/ranks/myCRED-addon-ranks.php:864
|
3237 |
msgid "Rank in BuddyPress"
|
@@ -3271,9 +3286,9 @@ msgid "No users found with this rank"
|
|
3271 |
msgstr "Ningun usuario encontrado con este rango"
|
3272 |
|
3273 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3274 |
-
#: shortcodes.php:
|
3275 |
-
#: shortcodes.php:
|
3276 |
-
#: shortcodes.php:
|
3277 |
msgid "error"
|
3278 |
msgstr "error"
|
3279 |
|
@@ -3287,15 +3302,15 @@ msgstr "Horas"
|
|
3287 |
|
3288 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:110
|
3289 |
msgid "Profit Share"
|
3290 |
-
msgstr ""
|
3291 |
|
3292 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:118
|
3293 |
msgid "Save Profit Share"
|
3294 |
-
msgstr ""
|
3295 |
|
3296 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:164
|
3297 |
msgid "Profit Share override saved"
|
3298 |
-
msgstr ""
|
3299 |
|
3300 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:326
|
3301 |
msgid "You can not buy this content."
|
@@ -3361,7 +3376,7 @@ msgstr "Usa cero para ventas permanentes."
|
|
3361 |
|
3362 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:475
|
3363 |
msgid "For Visitors"
|
3364 |
-
msgstr ""
|
3365 |
|
3366 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:480
|
3367 |
#, php-format
|
@@ -3374,7 +3389,7 @@ msgstr ""
|
|
3374 |
|
3375 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:485
|
3376 |
msgid "For Members"
|
3377 |
-
msgstr ""
|
3378 |
|
3379 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
|
3380 |
#: content/myCRED-addon-sell-content.php:500
|
@@ -3386,7 +3401,7 @@ msgstr ""
|
|
3386 |
|
3387 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:495
|
3388 |
msgid "For members that can not afford to buy"
|
3389 |
-
msgstr ""
|
3390 |
|
3391 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:504
|
3392 |
msgid "Log template for Purchases"
|
@@ -3401,40 +3416,40 @@ msgstr "Plantilla de registros para Ventas"
|
|
3401 |
msgid "%s Sell This"
|
3402 |
msgstr "%s Vende Esto"
|
3403 |
|
3404 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3405 |
#, php-format
|
3406 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3407 |
msgstr ""
|
3408 |
"%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
|
3409 |
"esta característica técnica."
|
3410 |
|
3411 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3412 |
msgid "Setup add-on"
|
3413 |
msgstr "Configurar Extensión"
|
3414 |
|
3415 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3416 |
msgid "Lets do it"
|
3417 |
msgstr "Vamos a hacerlo."
|
3418 |
|
3419 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3420 |
#, php-format
|
3421 |
msgid "Enable sale of this %s"
|
3422 |
-
msgstr ""
|
3423 |
|
3424 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3425 |
msgid "Purchase expires after"
|
3426 |
msgstr "Compra caduca despues de"
|
3427 |
|
3428 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3429 |
msgid "Thank you for your purchase!"
|
3430 |
msgstr "¡Gracias por su compra!"
|
3431 |
|
3432 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3433 |
-
#: content/myCRED-addon-sell-content.php:
|
3434 |
msgid "The following content is set for sale:"
|
3435 |
msgstr "El siguiente contenido esta listo para la venta:"
|
3436 |
|
3437 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3438 |
msgid "Purchased"
|
3439 |
msgstr "Comprado"
|
3440 |
|
@@ -3447,7 +3462,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3447 |
msgstr "Has excedido tu limite de transferencia de %limit%."
|
3448 |
|
3449 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3450 |
-
#: php:
|
3451 |
msgid "Transfer"
|
3452 |
msgstr "Transferir"
|
3453 |
|
@@ -3486,9 +3501,9 @@ msgstr ""
|
|
3486 |
"transferencias hasta que se haga esto."
|
3487 |
|
3488 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3489 |
-
#: php:
|
3490 |
msgid "Insufficient Funds. Please try a lower amount."
|
3491 |
-
msgstr ""
|
3492 |
|
3493 |
#: ../addons/transfer/myCRED-addon-transfer.php:148
|
3494 |
msgid "Transfer Limit exceeded."
|
@@ -3521,7 +3536,7 @@ msgstr "Transferencias"
|
|
3521 |
|
3522 |
#: ../addons/transfer/myCRED-addon-transfer.php:200
|
3523 |
msgid "Select the point types that users can transfer."
|
3524 |
-
msgstr "Elige el
|
3525 |
|
3526 |
#: ../addons/transfer/myCRED-addon-transfer.php:208
|
3527 |
msgid "Log template for sending"
|
@@ -3551,7 +3566,7 @@ msgstr "Actualizar la pagina despues de transferencias finalizadas."
|
|
3551 |
|
3552 |
#: ../addons/transfer/myCRED-addon-transfer.php:260
|
3553 |
msgid "Limit Amount"
|
3554 |
-
msgstr ""
|
3555 |
|
3556 |
#: ../addons/transfer/myCRED-addon-transfer.php:264
|
3557 |
msgid "Form Templates"
|
@@ -3684,21 +3699,24 @@ msgstr "Bienvenido a %s %s"
|
|
3684 |
|
3685 |
#: ../includes/mycred-admin.php:192
|
3686 |
msgid "A log entry is required in order to adjust this users balance"
|
3687 |
-
msgstr ""
|
3688 |
|
3689 |
#: ../includes/mycred-admin.php:194
|
3690 |
msgid "Users balance saved"
|
3691 |
-
msgstr ""
|
3692 |
|
3693 |
#: ../includes/mycred-admin.php:202
|
3694 |
msgid "Users excluded"
|
3695 |
-
msgstr ""
|
3696 |
|
3697 |
#: ../includes/mycred-admin.php:207
|
3698 |
msgid ""
|
3699 |
"All buyCRED Payment Gateways have been disabled! Please check your exchange "
|
3700 |
"rate settings and update all premium payment gateways!"
|
3701 |
msgstr ""
|
|
|
|
|
|
|
3702 |
|
3703 |
#: ../includes/mycred-admin.php:235
|
3704 |
msgid "User is excluded"
|
@@ -3723,7 +3741,7 @@ msgstr "Excluido"
|
|
3723 |
#: ../includes/mycred-admin.php:396
|
3724 |
#, php-format
|
3725 |
msgid "Total: %s"
|
3726 |
-
msgstr ""
|
3727 |
|
3728 |
#: ../includes/mycred-admin.php:405
|
3729 |
msgid "Adjust"
|
@@ -3731,62 +3749,64 @@ msgstr "Modificar"
|
|
3731 |
|
3732 |
#: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
|
3733 |
msgid "Edit Balance"
|
3734 |
-
msgstr ""
|
3735 |
|
3736 |
#: ../includes/mycred-admin.php:462
|
3737 |
msgid "Profile"
|
3738 |
-
msgstr ""
|
3739 |
|
3740 |
#: ../includes/mycred-admin.php:469
|
3741 |
msgid "Extended Profile"
|
3742 |
-
msgstr ""
|
3743 |
|
3744 |
#: ../includes/mycred-admin.php:559
|
3745 |
#, php-format
|
3746 |
msgid "This user is excluded from using %s"
|
3747 |
-
msgstr ""
|
3748 |
|
3749 |
#: ../includes/mycred-admin.php:582
|
3750 |
msgid "Edit User"
|
3751 |
-
msgstr ""
|
3752 |
|
3753 |
#: ../includes/mycred-admin.php:584
|
3754 |
msgctxt "user"
|
3755 |
msgid "Add New"
|
3756 |
-
msgstr ""
|
3757 |
|
3758 |
#: ../includes/mycred-admin.php:586
|
3759 |
msgctxt "user"
|
3760 |
msgid "Add Existing"
|
3761 |
-
msgstr ""
|
3762 |
|
3763 |
#: ../includes/mycred-admin.php:597
|
3764 |
#, php-format
|
3765 |
msgid "Total %s Accumulated"
|
3766 |
-
msgstr ""
|
3767 |
|
3768 |
#: ../includes/mycred-admin.php:598
|
3769 |
#, php-format
|
3770 |
msgid "Total %s Spent"
|
3771 |
-
msgstr ""
|
3772 |
|
3773 |
#: ../includes/mycred-admin.php:609
|
3774 |
msgid "View History"
|
3775 |
-
msgstr ""
|
3776 |
|
3777 |
#: ../includes/mycred-admin.php:610
|
3778 |
msgid "Exclude User"
|
3779 |
-
msgstr ""
|
3780 |
|
3781 |
#: ../includes/mycred-admin.php:614
|
3782 |
msgid "Adjust Balance"
|
3783 |
-
msgstr ""
|
3784 |
|
3785 |
#: ../includes/mycred-admin.php:623
|
3786 |
msgid ""
|
3787 |
"Warning! Excluding this user will result in their balance being deleted "
|
3788 |
"along with any entries currently in your log! This can not be undone!"
|
3789 |
msgstr ""
|
|
|
|
|
3790 |
|
3791 |
#: ../includes/mycred-admin.php:681
|
3792 |
#, php-format
|
@@ -3869,284 +3889,284 @@ msgstr "Resultados de la Búsqueda"
|
|
3869 |
msgid "My Entire Log"
|
3870 |
msgstr "Mi Registro Entero"
|
3871 |
|
3872 |
-
#: ../includes/mycred-functions.php:
|
3873 |
msgid "ref empty"
|
3874 |
msgstr "ref vacío"
|
3875 |
|
3876 |
-
#: ../includes/mycred-functions.php:
|
3877 |
msgid "incorrect user id format"
|
3878 |
msgstr "Formato incorrecto para id del usuario"
|
3879 |
|
3880 |
-
#: ../includes/mycred-functions.php:
|
3881 |
msgid "incorrect unix timestamp (from):"
|
3882 |
msgstr "erroneo marca de tiempo de unix (desde):"
|
3883 |
|
3884 |
-
#: ../includes/mycred-functions.php:
|
3885 |
msgid "incorrect unix timestamp (to):"
|
3886 |
msgstr "erroneo marca de tiempo de unix (a):"
|
3887 |
|
3888 |
-
#: ../includes/mycred-functions.php:
|
3889 |
msgid "Website Registration"
|
3890 |
-
msgstr ""
|
3891 |
|
3892 |
-
#: ../includes/mycred-functions.php:
|
3893 |
msgid "Website Visit"
|
3894 |
-
msgstr ""
|
3895 |
|
3896 |
-
#: ../includes/mycred-functions.php:
|
3897 |
msgid "Viewing Content (Member)"
|
3898 |
-
msgstr ""
|
3899 |
|
3900 |
-
#: ../includes/mycred-functions.php:
|
3901 |
msgid "Viewing Content (Author)"
|
3902 |
-
msgstr ""
|
3903 |
|
3904 |
-
#: ../includes/mycred-functions.php:
|
3905 |
msgid "Logging in"
|
3906 |
-
msgstr ""
|
3907 |
|
3908 |
-
#: ../includes/mycred-functions.php:
|
3909 |
msgid "Publishing Content"
|
3910 |
-
msgstr ""
|
3911 |
|
3912 |
-
#: ../includes/mycred-functions.php:
|
3913 |
msgid "Approved Comment"
|
3914 |
msgstr "Comentario Aprobado"
|
3915 |
|
3916 |
-
#: ../includes/mycred-functions.php:
|
3917 |
msgid "Unapproved Comment"
|
3918 |
-
msgstr ""
|
3919 |
|
3920 |
-
#: ../includes/mycred-functions.php:
|
3921 |
msgid "SPAM Comment"
|
3922 |
-
msgstr ""
|
3923 |
|
3924 |
-
#: ../includes/mycred-functions.php:
|
3925 |
msgid "Deleted Comment"
|
3926 |
-
msgstr ""
|
3927 |
|
3928 |
-
#: ../includes/mycred-functions.php:
|
3929 |
msgid "Link Click"
|
3930 |
-
msgstr ""
|
3931 |
|
3932 |
-
#: ../includes/mycred-functions.php:
|
3933 |
msgid "Watching Video"
|
3934 |
-
msgstr ""
|
3935 |
|
3936 |
-
#: ../includes/mycred-functions.php:
|
3937 |
msgid "Visitor Referral"
|
3938 |
-
msgstr ""
|
3939 |
|
3940 |
-
#: ../includes/mycred-functions.php:
|
3941 |
msgid "Signup Referral"
|
3942 |
-
msgstr ""
|
3943 |
|
3944 |
-
#: ../includes/mycred-functions.php:
|
3945 |
msgid "New Profile Update"
|
3946 |
-
msgstr ""
|
3947 |
|
3948 |
-
#: ../includes/mycred-functions.php:
|
3949 |
msgid "Avatar Upload"
|
3950 |
-
msgstr ""
|
3951 |
|
3952 |
-
#: ../includes/mycred-functions.php:
|
3953 |
msgid "New Friendship"
|
3954 |
-
msgstr ""
|
3955 |
|
3956 |
-
#: ../includes/mycred-functions.php:
|
3957 |
msgid "Ended Friendship"
|
3958 |
-
msgstr ""
|
3959 |
|
3960 |
-
#: ../includes/mycred-functions.php:
|
3961 |
msgid "New Profile Comment"
|
3962 |
-
msgstr ""
|
3963 |
|
3964 |
-
#: ../includes/mycred-functions.php:
|
3965 |
msgid "Profile Comment Deletion"
|
3966 |
-
msgstr ""
|
3967 |
|
3968 |
-
#: ../includes/mycred-functions.php:
|
3969 |
msgid "New Message"
|
3970 |
-
msgstr ""
|
3971 |
|
3972 |
-
#: ../includes/mycred-functions.php:
|
3973 |
msgid "Sending Gift"
|
3974 |
-
msgstr ""
|
3975 |
|
3976 |
-
#: ../includes/mycred-functions.php:
|
3977 |
msgid "New Group"
|
3978 |
-
msgstr ""
|
3979 |
|
3980 |
-
#: ../includes/mycred-functions.php:
|
3981 |
msgid "Deleted Group"
|
3982 |
-
msgstr ""
|
3983 |
|
3984 |
-
#: ../includes/mycred-functions.php:
|
3985 |
msgid "New Group Forum Topic"
|
3986 |
-
msgstr ""
|
3987 |
|
3988 |
-
#: ../includes/mycred-functions.php:
|
3989 |
msgid "Edit Group Forum Topic"
|
3990 |
-
msgstr ""
|
3991 |
|
3992 |
-
#: ../includes/mycred-functions.php:
|
3993 |
msgid "New Group Forum Post"
|
3994 |
-
msgstr ""
|
3995 |
|
3996 |
-
#: ../includes/mycred-functions.php:
|
3997 |
msgid "Edit Group Forum Post"
|
3998 |
-
msgstr ""
|
3999 |
|
4000 |
-
#: ../includes/mycred-functions.php:
|
4001 |
msgid "Joining Group"
|
4002 |
-
msgstr ""
|
4003 |
|
4004 |
-
#: ../includes/mycred-functions.php:
|
4005 |
msgid "Leaving Group"
|
4006 |
-
msgstr ""
|
4007 |
|
4008 |
-
#: ../includes/mycred-functions.php:
|
4009 |
msgid "New Group Avatar"
|
4010 |
-
msgstr ""
|
4011 |
|
4012 |
-
#: ../includes/mycred-functions.php:
|
4013 |
msgid "New Group Comment"
|
4014 |
-
msgstr ""
|
4015 |
|
4016 |
-
#: ../includes/mycred-functions.php:
|
4017 |
#: php:166
|
4018 |
msgid "Photo Upload"
|
4019 |
msgstr "Subir Foto"
|
4020 |
|
4021 |
-
#: ../includes/mycred-functions.php:
|
4022 |
#: php:176
|
4023 |
msgid "Video Upload"
|
4024 |
msgstr "Subir Video"
|
4025 |
|
4026 |
-
#: ../includes/mycred-functions.php:
|
4027 |
#: php:186
|
4028 |
msgid "Music Upload"
|
4029 |
msgstr "Subir Música"
|
4030 |
|
4031 |
-
#: ../includes/mycred-functions.php:
|
4032 |
msgid "New Link"
|
4033 |
-
msgstr ""
|
4034 |
|
4035 |
-
#: ../includes/mycred-functions.php:
|
4036 |
msgid "Link Voting"
|
4037 |
-
msgstr ""
|
4038 |
|
4039 |
-
#: ../includes/mycred-functions.php:
|
4040 |
msgid "Link Update"
|
4041 |
-
msgstr ""
|
4042 |
|
4043 |
-
#: ../includes/mycred-functions.php:
|
4044 |
msgid "New Forum (bbPress)"
|
4045 |
-
msgstr ""
|
4046 |
|
4047 |
-
#: ../includes/mycred-functions.php:
|
4048 |
msgid "New Forum Topic (bbPress)"
|
4049 |
-
msgstr ""
|
4050 |
|
4051 |
-
#: ../includes/mycred-functions.php:
|
4052 |
msgid "Favorited Topic (bbPress)"
|
4053 |
-
msgstr ""
|
4054 |
|
4055 |
-
#: ../includes/mycred-functions.php:
|
4056 |
msgid "New Topic Reply (bbPress)"
|
4057 |
-
msgstr ""
|
4058 |
|
4059 |
-
#: ../includes/mycred-functions.php:
|
4060 |
msgid "Form Submission (Contact Form 7)"
|
4061 |
-
msgstr ""
|
4062 |
|
4063 |
-
#: ../includes/mycred-functions.php:
|
4064 |
msgid "Form Submission (Gravity Form)"
|
4065 |
-
msgstr ""
|
4066 |
|
4067 |
-
#: ../includes/mycred-functions.php:
|
4068 |
msgid "New Forum Topic (SimplePress)"
|
4069 |
-
msgstr ""
|
4070 |
|
4071 |
-
#: ../includes/mycred-functions.php:
|
4072 |
msgid "New Forum Post (SimplePress)"
|
4073 |
-
msgstr ""
|
4074 |
|
4075 |
-
#: ../includes/mycred-functions.php:
|
4076 |
msgid "Poll Voting"
|
4077 |
-
msgstr ""
|
4078 |
|
4079 |
-
#: ../includes/mycred-functions.php:
|
4080 |
msgid "Sending an Invite"
|
4081 |
-
msgstr ""
|
4082 |
|
4083 |
-
#: ../includes/mycred-functions.php:
|
4084 |
msgid "Accepting an Invite"
|
4085 |
-
msgstr ""
|
4086 |
|
4087 |
-
#: ../includes/mycred-functions.php:
|
4088 |
msgid "Banking Payout"
|
4089 |
-
msgstr ""
|
4090 |
|
4091 |
-
#: ../includes/mycred-functions.php:
|
4092 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4093 |
-
msgstr ""
|
4094 |
|
4095 |
-
#: ../includes/mycred-functions.php:
|
4096 |
msgid "buyCRED Purchase (Skrill)"
|
4097 |
-
msgstr ""
|
4098 |
|
4099 |
-
#: ../includes/mycred-functions.php:
|
4100 |
msgid "buyCRED Purchase (Zombaio)"
|
4101 |
-
msgstr ""
|
4102 |
|
4103 |
-
#: ../includes/mycred-functions.php:
|
4104 |
msgid "buyCRED Purchase (NETBilling)"
|
4105 |
-
msgstr ""
|
4106 |
|
4107 |
-
#: ../includes/mycred-functions.php:
|
4108 |
msgid "buyCRED Purchase (BitPay)"
|
4109 |
-
msgstr ""
|
4110 |
|
4111 |
-
#: ../includes/mycred-functions.php:
|
4112 |
msgid "Coupon Purchase"
|
4113 |
-
msgstr ""
|
4114 |
|
4115 |
-
#: ../includes/mycred-functions.php:
|
4116 |
msgid "Store Purchase (WooCommerce)"
|
4117 |
-
msgstr ""
|
4118 |
|
4119 |
-
#: ../includes/mycred-functions.php:
|
4120 |
msgid "Store Purchase (MarketPress)"
|
4121 |
-
msgstr ""
|
4122 |
|
4123 |
-
#: ../includes/mycred-functions.php:
|
4124 |
msgid "Store Purchase (WP E-Commerce)"
|
4125 |
-
msgstr ""
|
4126 |
|
4127 |
-
#: ../includes/mycred-functions.php:
|
4128 |
msgid "Event Payment (Event Espresso)"
|
4129 |
-
msgstr ""
|
4130 |
|
4131 |
-
#: ../includes/mycred-functions.php:
|
4132 |
msgid "Event Sale (Event Espresso)"
|
4133 |
-
msgstr ""
|
4134 |
|
4135 |
-
#: ../includes/mycred-functions.php:
|
4136 |
msgid "Event Payment (Events Manager)"
|
4137 |
-
msgstr ""
|
4138 |
|
4139 |
-
#: ../includes/mycred-functions.php:
|
4140 |
msgid "Event Sale (Events Manager)"
|
4141 |
-
msgstr ""
|
4142 |
|
4143 |
-
#: ../includes/mycred-functions.php:
|
4144 |
msgid "Content Purchase / Sale"
|
4145 |
-
msgstr ""
|
4146 |
|
4147 |
-
#: ../includes/mycred-functions.php:
|
4148 |
msgid "Manual Adjustment by Admin"
|
4149 |
-
msgstr ""
|
4150 |
|
4151 |
#: ../includes/mycred-importer.php:11
|
4152 |
#, php-format
|
@@ -4182,7 +4202,7 @@ msgstr "No existe ningun registro de CubePoints."
|
|
4182 |
|
4183 |
#: ../includes/mycred-install.php:39
|
4184 |
msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
|
4185 |
-
msgstr ""
|
4186 |
|
4187 |
#: ../includes/mycred-install.php:44
|
4188 |
msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
|
@@ -4192,14 +4212,17 @@ msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
|
|
4192 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4193 |
msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
|
4194 |
|
4195 |
-
#: ../includes/mycred-install.php:
|
4196 |
msgid ""
|
4197 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4198 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4199 |
"for you!"
|
4200 |
msgstr ""
|
|
|
|
|
|
|
4201 |
|
4202 |
-
#: ../includes/mycred-install.php:
|
4203 |
msgid ""
|
4204 |
"Sorry but your WordPress installation does not reach the minimum "
|
4205 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4207,28 +4230,28 @@ msgstr ""
|
|
4207 |
"Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
|
4208 |
"mínimos de mycred. Se produce los siguientes errores:"
|
4209 |
|
4210 |
-
#: ../includes/mycred-install.php:
|
4211 |
msgid "myCRED needs your attention."
|
4212 |
msgstr "myCRED precisa tu atención."
|
4213 |
|
4214 |
-
#: ../includes/mycred-install.php:
|
4215 |
msgid "Run Setup"
|
4216 |
msgstr "Ejecutar Configuración"
|
4217 |
|
4218 |
-
#: ../includes/mycred-install.php:
|
4219 |
msgid "myCRED Setup"
|
4220 |
msgstr "Instalación de myCRED"
|
4221 |
|
4222 |
-
#: ../includes/mycred-install.php:
|
4223 |
#, php-format
|
4224 |
msgid "%s Setup"
|
4225 |
msgstr "Configurar %s"
|
4226 |
|
4227 |
-
#: ../includes/mycred-install.php:
|
4228 |
msgid "Step"
|
4229 |
msgstr "Paso"
|
4230 |
|
4231 |
-
#: ../includes/mycred-install.php:
|
4232 |
msgid ""
|
4233 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4234 |
"points format, layout and security settings."
|
@@ -4236,76 +4259,76 @@ msgstr ""
|
|
4236 |
"Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
|
4237 |
"el formato de puntos, disposiciones y configuraciones de seguridad."
|
4238 |
|
4239 |
-
#: ../includes/mycred-install.php:
|
4240 |
msgid "Begin Setup"
|
4241 |
msgstr "Empezar la Instalación"
|
4242 |
|
4243 |
-
#: ../includes/mycred-install.php:
|
4244 |
msgid "Select the format you want to use for your points."
|
4245 |
msgstr "Elige el formato que quieres usar para tus puntos."
|
4246 |
|
4247 |
-
#: ../includes/mycred-install.php:
|
4248 |
msgid "Format"
|
4249 |
msgstr "Formato"
|
4250 |
|
4251 |
-
#: ../includes/mycred-install.php:
|
4252 |
msgid "Separators"
|
4253 |
msgstr "Separadores"
|
4254 |
|
4255 |
-
#: ../includes/mycred-install.php:
|
4256 |
msgid "Decimals"
|
4257 |
msgstr "Decimales"
|
4258 |
|
4259 |
-
#: ../includes/mycred-install.php:
|
4260 |
msgid "Use zero for no decimals."
|
4261 |
msgstr "Usa cero para no tener decimales."
|
4262 |
|
4263 |
-
#: ../includes/mycred-install.php:
|
4264 |
msgid "Presentation"
|
4265 |
msgstr "Presentación"
|
4266 |
|
4267 |
-
#: ../includes/mycred-install.php:
|
4268 |
msgid "Name (Singular)"
|
4269 |
msgstr "Nombre (singular)"
|
4270 |
|
4271 |
-
#: ../includes/mycred-install.php:
|
4272 |
msgid "Name (Plural)"
|
4273 |
msgstr "Nombre (plural)"
|
4274 |
|
4275 |
-
#: ../includes/mycred-install.php:
|
4276 |
msgid "Prefix"
|
4277 |
msgstr "Prefijo"
|
4278 |
|
4279 |
-
#: ../includes/mycred-install.php:
|
4280 |
msgid "Suffix"
|
4281 |
msgstr "Sufijo"
|
4282 |
|
4283 |
-
#: ../includes/mycred-install.php:
|
4284 |
msgid "Cancel Setup"
|
4285 |
msgstr "Cancelar la Instalación"
|
4286 |
|
4287 |
-
#: ../includes/mycred-install.php:
|
4288 |
msgid "Next"
|
4289 |
msgstr "Siguiente"
|
4290 |
|
4291 |
-
#: ../includes/mycred-install.php:
|
4292 |
msgid "Security"
|
4293 |
msgstr "Seguridad"
|
4294 |
|
4295 |
-
#: ../includes/mycred-install.php:
|
4296 |
msgid "Edit Settings Capability"
|
4297 |
msgstr "Editar la capacidad de las configuraciones"
|
4298 |
|
4299 |
#. is this user's or users (plural)?
|
4300 |
-
#: ../includes/mycred-install.php:
|
4301 |
msgid "Edit Users %plural% Capability"
|
4302 |
msgstr "Editar la Capacidad de %plural% del Usuario"
|
4303 |
|
4304 |
-
#: ../includes/mycred-install.php:
|
4305 |
msgid "Maximum %plural% payouts"
|
4306 |
msgstr "Desembolso %plural% Máximo"
|
4307 |
|
4308 |
-
#: ../includes/mycred-install.php:
|
4309 |
msgid ""
|
4310 |
"As an added security, you can set the maximum amount a user can gain or "
|
4311 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4317,41 +4340,41 @@ msgstr ""
|
|
4317 |
"que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
|
4318 |
"o gastar en tu tienda. Ponga zero para desactivar."
|
4319 |
|
4320 |
-
#: ../includes/mycred-install.php:
|
4321 |
msgid "Excludes"
|
4322 |
msgstr "Excluye"
|
4323 |
|
4324 |
-
#: ../includes/mycred-install.php:
|
4325 |
msgid "Exclude those who can \"Edit Settings\"."
|
4326 |
msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
|
4327 |
|
4328 |
-
#: ../includes/mycred-install.php:
|
4329 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4330 |
msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
|
4331 |
|
4332 |
-
#: ../includes/mycred-install.php:
|
4333 |
msgid "Exclude the following user IDs:"
|
4334 |
msgstr "Excluir a los siguientes IDs de usuarios"
|
4335 |
|
4336 |
-
#: ../includes/mycred-install.php:
|
4337 |
msgid "User Deletions"
|
4338 |
msgstr "Eliminación de Usuarios"
|
4339 |
|
4340 |
-
#: ../includes/mycred-install.php:
|
4341 |
msgid "Delete log entries when user is deleted."
|
4342 |
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
4343 |
|
4344 |
-
#: ../includes/mycred-install.php:
|
4345 |
msgid "Ready"
|
4346 |
msgstr "Listo"
|
4347 |
|
4348 |
-
#: ../includes/mycred-install.php:
|
4349 |
msgid "Almost done! Click the button below to finish this setup."
|
4350 |
msgstr ""
|
4351 |
"¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
|
4352 |
"configuración."
|
4353 |
|
4354 |
-
#: ../includes/mycred-install.php:
|
4355 |
msgid "Install & Run"
|
4356 |
msgstr "Instalar e ejecutar"
|
4357 |
|
@@ -4365,29 +4388,29 @@ msgstr "Mostrando %d %s"
|
|
4365 |
msgid "entry"
|
4366 |
msgstr "entrada"
|
4367 |
|
4368 |
-
#: ../includes/mycred-log.php:
|
4369 |
msgid "Go to the first page"
|
4370 |
msgstr "Ir a la primera página"
|
4371 |
|
4372 |
-
#: ../includes/mycred-log.php:
|
4373 |
msgid "Go to the previous page"
|
4374 |
msgstr "Ir a la página anterior"
|
4375 |
|
4376 |
-
#: ../includes/mycred-log.php:
|
4377 |
msgid "Current page"
|
4378 |
msgstr "Página corriente"
|
4379 |
|
4380 |
-
#: ../includes/mycred-log.php:
|
4381 |
#, php-format
|
4382 |
msgctxt "paging"
|
4383 |
msgid "%1$s of %2$s"
|
4384 |
msgstr "%1$s de %2$s"
|
4385 |
|
4386 |
-
#: ../includes/mycred-log.php:
|
4387 |
msgid "Go to the next page"
|
4388 |
msgstr "Ir a la página siguiente"
|
4389 |
|
4390 |
-
#: ../includes/mycred-log.php:
|
4391 |
msgid "Go to the last page"
|
4392 |
msgstr "Ir a la última página"
|
4393 |
|
@@ -4395,7 +4418,7 @@ msgstr "Ir a la última página"
|
|
4395 |
msgid "Show all references"
|
4396 |
msgstr "Muestra todas las referencias"
|
4397 |
|
4398 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4399 |
msgid "User ID"
|
4400 |
msgstr "ID del Usuario"
|
4401 |
|
@@ -4630,95 +4653,95 @@ msgstr ""
|
|
4630 |
"Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
|
4631 |
"maliciosas conozcan detalles de tu configuración!"
|
4632 |
|
4633 |
-
#: ../includes/mycred-shortcodes.php:
|
4634 |
msgid "Leaderboard is empty."
|
4635 |
msgstr "La Tabla de Clasificación esta vacía"
|
4636 |
|
4637 |
-
#: ../includes/mycred-shortcodes.php:
|
4638 |
msgid "Amount missing!"
|
4639 |
msgstr "¡Falta la cantidad!"
|
4640 |
|
4641 |
-
#: ../includes/mycred-shortcodes.php:
|
4642 |
msgid "Log Template Missing!"
|
4643 |
msgstr "¡Plantilla de Registro No Encontrado!"
|
4644 |
|
4645 |
-
#: ../includes/mycred-shortcodes.php:
|
4646 |
msgid "Anchor missing URL!"
|
4647 |
msgstr "¡La Ancla falta el URL!"
|
4648 |
|
4649 |
-
#: ../includes/mycred-shortcodes.php:
|
4650 |
msgid "User ID missing for recipient."
|
4651 |
msgstr "ID del Usuario falta para el destinatario"
|
4652 |
|
4653 |
-
#: ../includes/mycred-shortcodes.php:
|
4654 |
msgid "Sent"
|
4655 |
msgstr "Enviado"
|
4656 |
|
4657 |
-
#: ../includes/mycred-shortcodes.php:
|
4658 |
msgid "Error - Try Again"
|
4659 |
msgstr "Error - Inténtelo de nuevo."
|
4660 |
|
4661 |
-
#: ../includes/mycred-shortcodes.php:
|
4662 |
msgid "A video ID is required for this shortcode"
|
4663 |
msgstr "Este código corto (shortcode) precisa un ID del video."
|
4664 |
|
4665 |
-
#: ../includes/mycred-shortcodes.php:
|
4666 |
msgid "Point types not found."
|
4667 |
-
msgstr ""
|
4668 |
|
4669 |
-
#: ../includes/mycred-shortcodes.php:
|
4670 |
-
#: includes/mycred-shortcodes.php:
|
4671 |
#, php-format
|
4672 |
msgid "You are excluded from using %s."
|
4673 |
-
msgstr ""
|
4674 |
|
4675 |
-
#: ../includes/mycred-shortcodes.php:
|
4676 |
msgid "Your balance is too low to use this feature."
|
4677 |
-
msgstr ""
|
4678 |
|
4679 |
-
#: ../includes/mycred-shortcodes.php:
|
4680 |
#, php-format
|
4681 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4682 |
-
msgstr ""
|
4683 |
|
4684 |
-
#: ../includes/mycred-shortcodes.php:
|
4685 |
#, php-format
|
4686 |
msgid "Your current %s balance"
|
4687 |
-
msgstr ""
|
4688 |
|
4689 |
-
#: ../includes/mycred-shortcodes.php:
|
4690 |
#, php-format
|
4691 |
msgid "Minimum %s"
|
4692 |
-
msgstr ""
|
4693 |
|
4694 |
-
#: ../includes/mycred-shortcodes.php:
|
4695 |
#, php-format
|
4696 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4697 |
-
msgstr ""
|
4698 |
|
4699 |
-
#: ../includes/mycred-shortcodes.php:
|
4700 |
msgid "Exchange"
|
4701 |
-
msgstr ""
|
4702 |
|
4703 |
-
#: ../includes/mycred-shortcodes.php:
|
4704 |
#, php-format
|
4705 |
msgid "You must exchange at least %s!"
|
4706 |
-
msgstr ""
|
4707 |
|
4708 |
-
#: ../includes/mycred-shortcodes.php:
|
4709 |
#, php-format
|
4710 |
msgid "Exchange from %s"
|
4711 |
-
msgstr ""
|
4712 |
|
4713 |
-
#: ../includes/mycred-shortcodes.php:
|
4714 |
#, php-format
|
4715 |
msgid "Exchange to %s"
|
4716 |
-
msgstr ""
|
4717 |
|
4718 |
-
#: ../includes/mycred-shortcodes.php:
|
4719 |
#, php-format
|
4720 |
msgid "You have successfully exchanged %s into %s."
|
4721 |
-
msgstr ""
|
4722 |
|
4723 |
#: ../includes/mycred-widgets.php:21
|
4724 |
#, php-format
|
@@ -4734,7 +4757,7 @@ msgstr "(%s) Mi Saldo"
|
|
4734 |
msgid "My Balance"
|
4735 |
msgstr "Mi Saldo"
|
4736 |
|
4737 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4738 |
msgid "%plural% History"
|
4739 |
msgstr "Historial de %plural%"
|
4740 |
|
@@ -4795,17 +4818,19 @@ msgstr "Tabla de Clasificación"
|
|
4795 |
|
4796 |
#: ../includes/mycred-widgets.php:411
|
4797 |
msgid "Based On"
|
4798 |
-
msgstr ""
|
4799 |
|
4800 |
#: ../includes/mycred-widgets.php:413
|
4801 |
msgid ""
|
4802 |
"Use \"balance\" to base the leaderboard on your users current balances or use "
|
4803 |
"a specific reference."
|
4804 |
msgstr ""
|
|
|
|
|
4805 |
|
4806 |
#: ../includes/mycred-widgets.php:413
|
4807 |
msgid "Reference Guide"
|
4808 |
-
msgstr ""
|
4809 |
|
4810 |
#: ../includes/mycred-widgets.php:418
|
4811 |
msgid "Visible to non-members"
|
@@ -4843,7 +4868,7 @@ msgstr ""
|
|
4843 |
|
4844 |
#: ../includes/mycred-widgets.php:504
|
4845 |
msgid "Shows the current users balances for each point type."
|
4846 |
-
msgstr "Mostrar el saldo actual del usuario para cada
|
4847 |
|
4848 |
#: ../includes/mycred-widgets.php:506
|
4849 |
#, php-format
|
@@ -5023,7 +5048,7 @@ msgstr "Extensiones"
|
|
5023 |
|
5024 |
#: ../modules/mycred-module-addons.php:147
|
5025 |
msgid "Give your users badges based on their interaction with your website."
|
5026 |
-
msgstr ""
|
5027 |
|
5028 |
#: ../modules/mycred-module-addons.php:158
|
5029 |
msgid "Setup recurring payouts or offer / charge interest on user account balances."
|
@@ -5172,64 +5197,64 @@ msgstr "La Historial de %s"
|
|
5172 |
msgid "Current balance"
|
5173 |
msgstr "Saldo Actual"
|
5174 |
|
5175 |
-
#: ../modules/mycred-module-buddypress.php:
|
5176 |
msgid "Go"
|
5177 |
msgstr "Ir a"
|
5178 |
|
5179 |
-
#: ../modules/mycred-module-buddypress.php:
|
5180 |
msgid "Show in Profile"
|
5181 |
msgstr "Mostrar en Perfil"
|
5182 |
|
5183 |
-
#: ../modules/mycred-module-buddypress.php:
|
5184 |
#, php-format
|
5185 |
msgid "%singular% Balance"
|
5186 |
msgstr "%singular% Saldo"
|
5187 |
|
5188 |
-
#: ../modules/mycred-module-buddypress.php:
|
5189 |
#, php-format
|
5190 |
msgid "Members and visitors can other members %_singular% balance."
|
5191 |
msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
|
5192 |
|
5193 |
-
#: ../modules/mycred-module-buddypress.php:
|
5194 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5195 |
msgstr ""
|
5196 |
"Ten en cuenta que tambien puedes usar %rank_logo% para mostrar la imagen "
|
5197 |
"principal del rango."
|
5198 |
|
5199 |
-
#: ../modules/mycred-module-buddypress.php:
|
5200 |
msgid "Members can view each others %_plural% history."
|
5201 |
msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
|
5202 |
|
5203 |
-
#: ../modules/mycred-module-buddypress.php:
|
5204 |
msgid "Menu Title"
|
5205 |
msgstr "Título de Menú"
|
5206 |
|
5207 |
-
#: ../modules/mycred-module-buddypress.php:
|
5208 |
msgid "Title shown to me"
|
5209 |
msgstr "Título mostrado a mi"
|
5210 |
|
5211 |
-
#: ../modules/mycred-module-buddypress.php:
|
5212 |
#, php-format
|
5213 |
msgid "Title shown to others. Use %s to show the first name."
|
5214 |
msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
|
5215 |
|
5216 |
-
#: ../modules/mycred-module-buddypress.php:
|
5217 |
msgid "Menu Position"
|
5218 |
msgstr "Posición del Menú"
|
5219 |
|
5220 |
-
#: ../modules/mycred-module-buddypress.php:
|
5221 |
msgid "Current menu positions:"
|
5222 |
msgstr "Posiciones Acuales del Menú"
|
5223 |
|
5224 |
-
#: ../modules/mycred-module-buddypress.php:
|
5225 |
msgid "History URL slug"
|
5226 |
msgstr "La ficha historial de la URL"
|
5227 |
|
5228 |
-
#: ../modules/mycred-module-buddypress.php:
|
5229 |
msgid "Do not use empty spaces!"
|
5230 |
msgstr "¡No utilice espacios vacíos!"
|
5231 |
|
5232 |
-
#: ../modules/mycred-module-buddypress.php:
|
5233 |
msgid "Number of history entries to show"
|
5234 |
msgstr "Numero de entradas de historial a mostrar"
|
5235 |
|
@@ -5246,28 +5271,30 @@ msgstr "%plural% por inscripciones"
|
|
5246 |
#: ../modules/mycred-module-hooks.php:88
|
5247 |
#, php-format
|
5248 |
msgid "Award %_plural% for users joining your website."
|
5249 |
-
msgstr "Concede %_plural% a usuarios
|
5250 |
|
5251 |
#: ../modules/mycred-module-hooks.php:94
|
5252 |
#, php-format
|
5253 |
msgid "%plural% for daily visits"
|
5254 |
-
msgstr ""
|
5255 |
|
5256 |
#: ../modules/mycred-module-hooks.php:95
|
5257 |
#, php-format
|
5258 |
msgid "Award %_plural% for users visiting your website on a daily basis."
|
5259 |
-
msgstr ""
|
5260 |
|
5261 |
#: ../modules/mycred-module-hooks.php:101
|
5262 |
#, php-format
|
5263 |
msgid "%plural% for viewing content"
|
5264 |
-
msgstr ""
|
5265 |
|
5266 |
#: ../modules/mycred-module-hooks.php:102
|
5267 |
msgid ""
|
5268 |
"Award %_plural% to your users for viewing posts and / or %plural% to your "
|
5269 |
"authors for members viewing their content."
|
5270 |
msgstr ""
|
|
|
|
|
5271 |
|
5272 |
#: ../modules/mycred-module-hooks.php:108
|
5273 |
#, php-format
|
@@ -5366,8 +5393,8 @@ msgstr ""
|
|
5366 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5367 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5368 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5369 |
-
#:
|
5370 |
-
#: php:
|
5371 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5372 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5373 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5402,13 +5429,13 @@ msgstr "Plantilla de Registro"
|
|
5402 |
#: ../modules/mycred-module-hooks.php:586
|
5403 |
#, php-format
|
5404 |
msgid "%plural% for viewing Posts"
|
5405 |
-
msgstr ""
|
5406 |
|
5407 |
#: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
|
5408 |
#: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
|
5409 |
#: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
|
5410 |
msgid "Member"
|
5411 |
-
msgstr ""
|
5412 |
|
5413 |
#: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
|
5414 |
#: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
|
@@ -5421,15 +5448,15 @@ msgstr "Autor del Contenido"
|
|
5421 |
#: ../modules/mycred-module-hooks.php:611
|
5422 |
#, php-format
|
5423 |
msgid "%plural% for viewing Pages"
|
5424 |
-
msgstr ""
|
5425 |
|
5426 |
#: ../modules/mycred-module-hooks.php:673
|
5427 |
#, php-format
|
5428 |
msgid "%plural% for viewing %s"
|
5429 |
-
msgstr ""
|
5430 |
|
5431 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5432 |
-
#: ../modules/mycred-module-hooks.php:
|
5433 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5434 |
msgid "Limit"
|
5435 |
msgstr "Límite"
|
@@ -5522,7 +5549,7 @@ msgstr ""
|
|
5522 |
msgid "Custom tags: %url%, %title% or %id%."
|
5523 |
msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
|
5524 |
|
5525 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5526 |
msgid "Note!"
|
5527 |
msgstr "¡Atención!"
|
5528 |
|
@@ -5538,44 +5565,44 @@ msgstr ""
|
|
5538 |
"valor fijado en href. Si estas utilizando esta función para \"compartir\" "
|
5539 |
"contenidos, se recomienda que limites por ID."
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5542 |
msgid "Available Shortcode"
|
5543 |
msgstr "Código corto Disponible"
|
5544 |
|
5545 |
-
#: ../modules/mycred-module-hooks.php:
|
5546 |
msgid "Amount to award for viewing videos."
|
5547 |
msgstr "Cantidad a ceder para ver videos."
|
5548 |
|
5549 |
-
#: ../modules/mycred-module-hooks.php:
|
5550 |
msgid "Award Logic"
|
5551 |
msgstr "Lógica de Concesión"
|
5552 |
|
5553 |
-
#: ../modules/mycred-module-hooks.php:
|
5554 |
#, php-format
|
5555 |
msgid "Select when %_plural% should be awarded or deducted."
|
5556 |
msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-hooks.php:
|
5559 |
msgid "Play - As soon as video starts playing."
|
5560 |
msgstr "Play - En cuanto el video empiece a reproducirse."
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-hooks.php:
|
5563 |
msgid "Full - First when the entire video has played."
|
5564 |
msgstr "Completo - Primero cuando el video entero se haya reproducido."
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-hooks.php:
|
5567 |
msgid "Interval - For each x number of seconds watched."
|
5568 |
msgstr "Intervalo - Para cada x numero de segundos vistos."
|
5569 |
|
5570 |
-
#: ../modules/mycred-module-hooks.php:
|
5571 |
msgid "Number of seconds"
|
5572 |
msgstr "Numero de segundos"
|
5573 |
|
5574 |
-
#: ../modules/mycred-module-hooks.php:
|
5575 |
msgid "Leniency"
|
5576 |
msgstr "Lenidad"
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-hooks.php:
|
5579 |
msgid ""
|
5580 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5581 |
"length."
|
@@ -5583,7 +5610,7 @@ msgstr ""
|
|
5583 |
"El porcentaje máximo medido que un usuario vea puede variar con la duración "
|
5584 |
"actual del video."
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-hooks.php:
|
5587 |
msgid ""
|
5588 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5589 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5593,75 +5620,83 @@ msgstr ""
|
|
5593 |
"usuario ve una película y a veces la contador puede disminuir por pocos "
|
5594 |
"segundos por falta de buffering o por errores de reproducción."
|
5595 |
|
5596 |
-
#: ../modules/mycred-module-hooks.php:
|
5597 |
msgid "Affiliate Program"
|
5598 |
msgstr "Programa de Afiliados"
|
5599 |
|
5600 |
-
#: ../modules/mycred-module-hooks.php:
|
5601 |
msgid "Per Day"
|
5602 |
msgstr "Por Día"
|
5603 |
|
5604 |
-
#: ../modules/mycred-module-hooks.php:
|
5605 |
msgid "Link"
|
5606 |
msgstr "Enlace"
|
5607 |
|
5608 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5609 |
msgid "Referring Visitors"
|
5610 |
msgstr "Referiendo Visitantes"
|
5611 |
|
5612 |
-
#: ../modules/mycred-module-hooks.php:
|
5613 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5614 |
msgstr ""
|
5615 |
"El numero de referencias que cada miembro puede hacer. Utilice cero para "
|
5616 |
"ilimitado."
|
5617 |
|
5618 |
-
#: ../modules/mycred-module-hooks.php:
|
5619 |
msgid "Referring Signups"
|
5620 |
msgstr "Inscripciones a través de Referencias"
|
5621 |
|
5622 |
-
#: ../modules/mycred-module-hooks.php:
|
5623 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5624 |
msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
|
5625 |
|
5626 |
-
#: ../modules/mycred-module-hooks.php:
|
5627 |
msgid "Registrations are disabled."
|
5628 |
msgstr "Se han deshabilitado inscripciones."
|
5629 |
|
5630 |
-
#: ../modules/mycred-module-hooks.php:
|
5631 |
msgid "Referral Links"
|
5632 |
msgstr "Enlaces Referentes"
|
5633 |
|
5634 |
-
#: ../modules/mycred-module-hooks.php:
|
5635 |
msgid "Assign numeric referral IDs to each user."
|
5636 |
msgstr "Asignar ID numerica referente a cada usuario."
|
5637 |
|
5638 |
-
#: ../modules/mycred-module-hooks.php:
|
5639 |
msgid "Example"
|
5640 |
msgstr "Ejemplo"
|
5641 |
|
5642 |
-
#: ../modules/mycred-module-hooks.php:
|
5643 |
msgid "Assign usernames as IDs for each user."
|
5644 |
msgstr "Asignar los nombres de usuario como ID para cada usuario."
|
5645 |
|
5646 |
-
#: ../modules/mycred-module-hooks.php:
|
5647 |
msgid "IP Limit"
|
5648 |
msgstr "Límite de IP"
|
5649 |
|
5650 |
-
#: ../modules/mycred-module-hooks.php:
|
5651 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5652 |
msgstr ""
|
5653 |
"El numero de veces que cada IP concede %_plural%. Utilice cero para un "
|
5654 |
"número ilimitado"
|
5655 |
|
5656 |
-
#: ../modules/mycred-module-hooks.php:
|
5657 |
msgid "BuddyPress Profile"
|
5658 |
msgstr "Perfil de BuddyPress"
|
5659 |
|
5660 |
-
#: ../modules/mycred-module-hooks.php:
|
5661 |
msgid "Insert Link in users Profile"
|
5662 |
msgstr "Insertar enlace en el perfil del usuario"
|
5663 |
|
5664 |
-
#: ../modules/mycred-module-hooks.php:
|
5665 |
msgid ""
|
5666 |
"Option to inser the referral link in users profiles. Links will only be "
|
5667 |
"visible to users viewing their own profiles or administrators."
|
@@ -5670,23 +5705,23 @@ msgstr ""
|
|
5670 |
" Estos enlaces serán visibles a los administradores o a los usuarios cuando "
|
5671 |
"ven a sus propios perfiles."
|
5672 |
|
5673 |
-
#: ../modules/mycred-module-hooks.php:
|
5674 |
msgid "Leave empty to hide."
|
5675 |
msgstr "Deje el campo vacío para ocultarlo."
|
5676 |
|
5677 |
-
#: ../modules/mycred-module-hooks.php:
|
5678 |
msgid "Description"
|
5679 |
msgstr "Descripción"
|
5680 |
|
5681 |
-
#: ../modules/mycred-module-hooks.php:
|
5682 |
msgid "Optional description to insert under the link."
|
5683 |
msgstr "Insertar la descripción opcional debajo del enlace."
|
5684 |
|
5685 |
-
#: ../modules/mycred-module-hooks.php:
|
5686 |
msgid "Profile Positioning"
|
5687 |
msgstr "Posicionamiento del Perfil"
|
5688 |
|
5689 |
-
#: ../modules/mycred-module-hooks.php:
|
5690 |
msgid ""
|
5691 |
"You can move around the referral link on your users profile by changing the "
|
5692 |
"position. Increase to move up, decrease to move down."
|
@@ -5694,18 +5729,18 @@ msgstr ""
|
|
5694 |
"Puedes moverte por el enlace de referencia en su perfil los usuarios "
|
5695 |
"cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
|
5696 |
|
5697 |
-
#: ../modules/mycred-module-hooks.php:
|
5698 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5699 |
msgstr ""
|
5700 |
"¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
|
5701 |
"en el perfil del usuario!"
|
5702 |
|
5703 |
-
#: ../modules/mycred-module-hooks.php:
|
5704 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5705 |
-
msgstr "Requiere que
|
5706 |
|
5707 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5708 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5709 |
msgid "Access denied for this action"
|
5710 |
msgstr "Acceso denegado para esta acción"
|
5711 |
|
@@ -5721,12 +5756,12 @@ msgstr "No se encontro la entrada de registro "
|
|
5721 |
msgid "Entry Updated"
|
5722 |
msgstr "Entrada Actualizada"
|
5723 |
|
5724 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5725 |
msgid "Entries"
|
5726 |
msgstr "Entradas"
|
5727 |
|
5728 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5729 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5730 |
msgid "Export"
|
5731 |
msgstr "Exportar"
|
5732 |
|
@@ -5773,49 +5808,49 @@ msgid "My %s History"
|
|
5773 |
msgstr "Mi Historial de %s"
|
5774 |
|
5775 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5776 |
-
#:
|
5777 |
msgid "Missing point type"
|
5778 |
-
msgstr "Falta el
|
5779 |
|
5780 |
-
#: ../modules/mycred-module-settings.php:
|
5781 |
msgid "Accounts successfully reset"
|
5782 |
msgstr "Las cuentas fueron reiniciadas con éxito."
|
5783 |
|
5784 |
-
#: ../modules/mycred-module-settings.php:
|
5785 |
msgid "No users found to export"
|
5786 |
msgstr "No se encontro usuarios para exportar"
|
5787 |
|
5788 |
-
#: ../modules/mycred-module-settings.php:
|
5789 |
#, php-format
|
5790 |
msgid "%s Settings"
|
5791 |
msgstr "Configuración de %s"
|
5792 |
|
5793 |
-
#: ../modules/mycred-module-settings.php:
|
5794 |
msgid "Adjust your core or add-on settings."
|
5795 |
-
msgstr ""
|
5796 |
|
5797 |
-
#: ../modules/mycred-module-settings.php:
|
5798 |
msgid "Core Settings"
|
5799 |
msgstr "Ajustes Basicos"
|
5800 |
|
5801 |
-
#: ../modules/mycred-module-settings.php:
|
5802 |
msgid "Name"
|
5803 |
msgstr "Nombre"
|
5804 |
|
5805 |
-
#: ../modules/mycred-module-settings.php:
|
5806 |
#, php-format
|
5807 |
msgid "Accessible though the %singular% template tag."
|
5808 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5809 |
|
5810 |
-
#: ../modules/mycred-module-settings.php:
|
5811 |
msgid "Accessible though the %plural% template tag."
|
5812 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5813 |
|
5814 |
-
#: ../modules/mycred-module-settings.php:
|
5815 |
msgid "Tip"
|
5816 |
msgstr "Pista"
|
5817 |
|
5818 |
-
#: ../modules/mycred-module-settings.php:
|
5819 |
msgid ""
|
5820 |
"Adding an underscore at the beginning of template tag for names will return "
|
5821 |
"them in lowercase. i.e. %_singular%"
|
@@ -5823,96 +5858,96 @@ msgstr ""
|
|
5823 |
"Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
|
5824 |
"nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
|
5825 |
|
5826 |
-
#: ../modules/mycred-module-settings.php:
|
5827 |
msgid "Separator"
|
5828 |
msgstr "Separador"
|
5829 |
|
5830 |
-
#: ../modules/mycred-module-settings.php:
|
5831 |
msgid "Edit Settings"
|
5832 |
msgstr "Editar las Configuraciones"
|
5833 |
|
5834 |
#. or "Verificar la capacidad de"
|
5835 |
-
#: ../modules/mycred-module-settings.php:
|
5836 |
-
#: php:
|
5837 |
msgid "Capability to check for."
|
5838 |
msgstr "La capacidad que se va a verificar."
|
5839 |
|
5840 |
-
#: ../modules/mycred-module-settings.php:
|
5841 |
msgid "Edit Users %plural%"
|
5842 |
msgstr "Edita %plural% de Usuarios"
|
5843 |
|
5844 |
-
#: ../modules/mycred-module-settings.php:
|
5845 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5846 |
msgstr ""
|
5847 |
"Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
|
5848 |
"espacios!"
|
5849 |
|
5850 |
-
#: ../modules/mycred-module-settings.php:
|
5851 |
msgid "Management"
|
5852 |
msgstr "Gestión"
|
5853 |
|
5854 |
-
#: ../modules/mycred-module-settings.php:
|
5855 |
msgid "The Log"
|
5856 |
msgstr "El Registro"
|
5857 |
|
5858 |
-
#: ../modules/mycred-module-settings.php:
|
5859 |
msgid "Table Name"
|
5860 |
msgstr "Nombre de Tabla"
|
5861 |
|
5862 |
-
#: ../modules/mycred-module-settings.php:
|
5863 |
msgid "Empty Log"
|
5864 |
msgstr "Registro Vacío"
|
5865 |
|
5866 |
-
#: ../modules/mycred-module-settings.php:
|
5867 |
msgid "User Meta Key"
|
5868 |
msgstr "Clave Meta del Usuario"
|
5869 |
|
5870 |
-
#: ../modules/mycred-module-settings.php:
|
5871 |
msgid "Set all to zero"
|
5872 |
msgstr "Ajusta todo a cero"
|
5873 |
|
5874 |
-
#: ../modules/mycred-module-settings.php:
|
5875 |
msgid "CSV Export"
|
5876 |
msgstr "Exportar CSV"
|
5877 |
|
5878 |
-
#: ../modules/mycred-module-settings.php:
|
5879 |
msgid "Default"
|
5880 |
msgstr "Predefinido"
|
5881 |
|
5882 |
-
#: ../modules/mycred-module-settings.php:
|
5883 |
-
#: php:
|
5884 |
msgid "Meta Key"
|
5885 |
msgstr "Clave Meta"
|
5886 |
|
5887 |
-
#: ../modules/mycred-module-settings.php:
|
5888 |
msgid "Add New Type"
|
5889 |
-
msgstr "Añadir Nuevo
|
5890 |
|
5891 |
-
#: ../modules/mycred-module-settings.php:
|
5892 |
msgid "A unique ID for this type."
|
5893 |
-
msgstr "Una ID exclusiva para este
|
5894 |
|
5895 |
-
#: ../modules/mycred-module-settings.php:
|
5896 |
msgid "Menu and page title."
|
5897 |
msgstr "Título del Menú y de la Página\n"
|
5898 |
|
5899 |
-
#: ../modules/mycred-module-settings.php:
|
5900 |
msgid "The meta key will define where your users balances are saved."
|
5901 |
msgstr "La clave meta sera definida cuando los saldos de tus usuarios sea guardado."
|
5902 |
|
5903 |
-
#: ../modules/mycred-module-settings.php:
|
5904 |
msgid "Identify users by"
|
5905 |
msgstr "Identifique usuarios por"
|
5906 |
|
5907 |
-
#: ../modules/mycred-module-settings.php:
|
5908 |
msgid "User Email"
|
5909 |
msgstr "Email de Usuario"
|
5910 |
|
5911 |
-
#: ../modules/mycred-module-settings.php:
|
5912 |
msgid "User Login"
|
5913 |
msgstr "Ingreso de Usuario"
|
5914 |
|
5915 |
-
#: ../modules/mycred-module-settings.php:
|
5916 |
msgid ""
|
5917 |
"Use ID if you intend to use this export as a backup of your current site "
|
5918 |
"while Email is recommended if you want to export to a different site."
|
@@ -5920,11 +5955,11 @@ msgstr ""
|
|
5920 |
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
5921 |
"Email si deseas exportar la data a otro sitio"
|
5922 |
|
5923 |
-
#: ../modules/mycred-module-settings.php:
|
5924 |
msgid "Import Log Entry"
|
5925 |
msgstr "Importa la entrada de registro"
|
5926 |
|
5927 |
-
#: ../modules/mycred-module-settings.php:
|
5928 |
#, php-format
|
5929 |
msgid ""
|
5930 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5933,19 +5968,19 @@ msgstr ""
|
|
5933 |
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
5934 |
"fichero en otra instalación %s."
|
5935 |
|
5936 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5937 |
msgid "BadgeOS"
|
5938 |
msgstr "BadgeOS"
|
5939 |
|
5940 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5941 |
msgid ""
|
5942 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5943 |
"overridden for individual achievement type."
|
5944 |
msgstr ""
|
5945 |
-
"Configuraciones predefinidos para cada
|
5946 |
"Estos ajustes pueden ser anulados para el tipo de logro individual."
|
5947 |
|
5948 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5949 |
#, php-format
|
5950 |
msgid ""
|
5951 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5954,29 +5989,29 @@ msgstr ""
|
|
5954 |
"Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
|
5955 |
"de usar este función."
|
5956 |
|
5957 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5958 |
msgid "%plural% to Award"
|
5959 |
msgstr "%plural% a Conceder"
|
5960 |
|
5961 |
#. also "Ponga cero para inhabilitar"
|
5962 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5963 |
msgid "Use zero to disable"
|
5964 |
msgstr "Ponga cero para desactivar"
|
5965 |
|
5966 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5967 |
msgid "Deduction Log Template"
|
5968 |
msgstr "Plantilla de Registro Descontado"
|
5969 |
|
5970 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5971 |
#, php-format
|
5972 |
msgid "Default %s for %s"
|
5973 |
msgstr "Predeterminar %s por %s"
|
5974 |
|
5975 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5976 |
msgid "Use zero to disable users gaining %_plural%"
|
5977 |
msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
|
5978 |
|
5979 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5980 |
msgid "Default Log template"
|
5981 |
msgstr "Plantilla de Registro Predefinido"
|
5982 |
|
@@ -6050,7 +6085,7 @@ msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
|
|
6050 |
#: ../plugins/mycred-hook-bbPress.php:568
|
6051 |
#, php-format
|
6052 |
msgid "%plural% for Reply Deletion"
|
6053 |
-
msgstr ""
|
6054 |
|
6055 |
#: ../plugins/mycred-hook-buddypress-gallery.php:19
|
6056 |
msgid "BuddyPress: Gallery Actions"
|
@@ -6082,7 +6117,7 @@ msgstr "Concede %_plural% por acciones relacionados a enlaces."
|
|
6082 |
#: ../plugins/mycred-hook-buddypress-links.php:247
|
6083 |
#, php-format
|
6084 |
msgid "%plural% for New Links"
|
6085 |
-
msgstr "%plural% por
|
6086 |
|
6087 |
#: ../plugins/mycred-hook-buddypress-links.php:260
|
6088 |
#, php-format
|
@@ -6410,7 +6445,7 @@ msgstr "Suscripciónes a commentarios"
|
|
6410 |
#: ../plugins/mycred-hook-sharethis.php:18
|
6411 |
#, php-format
|
6412 |
msgid "%plural% for Sharing"
|
6413 |
-
msgstr ""
|
6414 |
|
6415 |
#: ../plugins/mycred-hook-sharethis.php:19
|
6416 |
#, php-format
|
@@ -6418,14 +6453,16 @@ msgid ""
|
|
6418 |
"Awards %_plural% for users sharing / liking your website content to popular "
|
6419 |
"social media sites."
|
6420 |
msgstr ""
|
|
|
|
|
6421 |
|
6422 |
#: ../plugins/mycred-hook-sharethis.php:215
|
6423 |
msgid "Your ShareThis public key is not set."
|
6424 |
-
msgstr ""
|
6425 |
|
6426 |
#: ../plugins/mycred-hook-sharethis.php:220
|
6427 |
msgid "No ShareThis services detected. Please check your installation."
|
6428 |
-
msgstr ""
|
6429 |
|
6430 |
#: ../plugins/mycred-hook-simplepress.php:18
|
6431 |
msgid "Simple:Press"
|
@@ -6453,16 +6490,18 @@ msgstr "%plural% por Borrar la Tema del Post"
|
|
6453 |
|
6454 |
#: ../plugins/mycred-hook-woocommerce.php:67
|
6455 |
msgid "Reward with %plural%"
|
6456 |
-
msgstr ""
|
6457 |
|
6458 |
#: ../plugins/mycred-hook-woocommerce.php:197
|
6459 |
msgid "WooCommerce Product Reviews"
|
6460 |
-
msgstr ""
|
6461 |
|
6462 |
#: ../plugins/mycred-hook-woocommerce.php:198
|
6463 |
#, php-format
|
6464 |
msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
|
6465 |
msgstr ""
|
|
|
|
|
6466 |
|
6467 |
#: ../plugins/mycred-hook-wp-favorite-posts.php:18
|
6468 |
msgid "WP Favorite Posts"
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:57:41 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Spanish\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: es_ES"
|
26 |
|
27 |
+
#: ../mycred.php:425
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
+
#: ../mycred.php:450
|
32 |
msgid "%label% History"
|
33 |
msgstr "%lavel% Historial"
|
34 |
|
35 |
+
#: ../mycred.php:543
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre"
|
39 |
|
40 |
+
#: ../mycred.php:552
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Gente genial"
|
43 |
|
44 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
+
#: includes/mycred-shortcodes.php:631
|
49 |
msgid "Processing..."
|
50 |
msgstr "Procesando..."
|
51 |
|
52 |
+
#: ../mycred.php:638
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
57 |
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
58 |
"¡Esto no se puede deshacer!"
|
59 |
|
60 |
+
#: ../mycred.php:639
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
65 |
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
66 |
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
67 |
|
68 |
+
#: ../mycred.php:640
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
72 |
"deshacer!"
|
73 |
|
74 |
+
#: ../mycred.php:641
|
75 |
msgid "Done!"
|
76 |
msgstr "¡Realizado!"
|
77 |
|
78 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
79 |
msgid "Close"
|
80 |
msgstr "Cerrar"
|
81 |
|
82 |
+
#: ../mycred.php:643
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar usuarios %plural%"
|
85 |
|
86 |
+
#: ../mycred.php:659
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo del usuario"
|
89 |
|
90 |
+
#: ../mycred.php:677
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Edidar entrada de registro"
|
93 |
|
94 |
+
#: ../mycred.php:681
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
98 |
"deshacer!"
|
99 |
|
100 |
+
#: ../mycred.php:682
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Entrada de registro actualizado"
|
103 |
|
104 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
105 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Configurar"
|
109 |
|
110 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configuraciones"
|
115 |
|
116 |
+
#: ../mycred.php:776
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
157 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
160 |
msgid "Select"
|
161 |
msgstr "Seleccionar"
|
162 |
|
187 |
#: addons/badges/myCRED-addon-badges.php:221 ../addons/badges/myCRED-addon-
|
188 |
#: badges.php:227 ../addons/badges/myCRED-addon-badges.php:233
|
189 |
msgid "Badges"
|
190 |
+
msgstr "Insignias"
|
191 |
|
192 |
#: ../addons/badges/myCRED-addon-badges.php:144
|
193 |
msgid "No users has yet earned this badge."
|
194 |
+
msgstr "Ningun usuario ha ganado esta insignia."
|
195 |
|
196 |
#: ../addons/badges/myCRED-addon-badges.php:150
|
197 |
#, php-format
|
198 |
msgid "%d Users earned this badge."
|
199 |
+
msgstr "%d Usuarios que han ganado esta insignia."
|
200 |
|
201 |
#: ../addons/badges/myCRED-addon-badges.php:171
|
202 |
#, php-format
|
203 |
msgid "%s connections where removed."
|
204 |
+
msgstr "%s conexiones han sido quitados."
|
205 |
|
206 |
#: ../addons/badges/myCRED-addon-badges.php:222
|
207 |
msgid "Badge"
|
208 |
+
msgstr "Insignia"
|
209 |
|
210 |
#: ../addons/badges/myCRED-addon-badges.php:223 ../addons/email-notices/myCRED-
|
211 |
#: addon-email-notices.php:165 ../addons/ranks/myCRED-addon-ranks.php:247
|
214 |
|
215 |
#: ../addons/badges/myCRED-addon-badges.php:224
|
216 |
msgid "Add New Badge"
|
217 |
+
msgstr "Añadir Nueva Insignia"
|
218 |
|
219 |
#: ../addons/badges/myCRED-addon-badges.php:225
|
220 |
msgid "Edit Badge"
|
221 |
+
msgstr "Editar Insignia"
|
222 |
|
223 |
#: ../addons/badges/myCRED-addon-badges.php:226
|
224 |
msgid "New Badge"
|
225 |
+
msgstr "Nueva Insignia"
|
226 |
|
227 |
#: ../addons/badges/myCRED-addon-badges.php:228
|
228 |
msgid "View Badge"
|
229 |
+
msgstr "Ver Insignia"
|
230 |
|
231 |
#: ../addons/badges/myCRED-addon-badges.php:229
|
232 |
msgid "Search Badge"
|
233 |
+
msgstr "Buscar Insignia"
|
234 |
|
235 |
#: ../addons/badges/myCRED-addon-badges.php:230
|
236 |
msgid "No badges found"
|
237 |
+
msgstr "Ninguna Insignia Encontrada"
|
238 |
|
239 |
#: ../addons/badges/myCRED-addon-badges.php:231
|
240 |
msgid "No badges found in Trash"
|
241 |
+
msgstr "Ninguna Insignia Encontrada en la Papelera"
|
242 |
|
243 |
#: ../addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
|
244 |
#: badges.php:355
|
245 |
msgid "Badge Name"
|
246 |
+
msgstr "Nombre de Insignia"
|
247 |
|
248 |
#: ../addons/badges/myCRED-addon-badges.php:274 ../addons/badges/myCRED-addon-
|
249 |
#: badges.php:376
|
250 |
msgid "Badge Images"
|
251 |
+
msgstr "Imagen de la Insignia"
|
252 |
|
253 |
#: ../addons/badges/myCRED-addon-badges.php:275 ../addons/badges/myCRED-addon-
|
254 |
#: badges.php:367
|
255 |
msgid "Requirements"
|
256 |
+
msgstr "Requisitos"
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
260 |
msgid "Users"
|
261 |
msgstr "Usuarios"
|
262 |
|
263 |
#: ../addons/badges/myCRED-addon-badges.php:302
|
264 |
msgid "A user must have gained or lost:"
|
265 |
+
msgstr "Un usuario deberia ganado o perdido:"
|
266 |
|
267 |
#: ../addons/badges/myCRED-addon-badges.php:333 ../addons/badges/myCRED-addon-
|
268 |
#: badges.php:336 ../addons/badges/myCRED-addon-badges.php:340 ..
|
269 |
#: addons/badges/myCRED-addon-badges.php:341 ../addons/badges/myCRED-addon-
|
270 |
#: badges.php:342
|
271 |
msgid "Badge Updated."
|
272 |
+
msgstr "Insignia Actualizada"
|
273 |
|
274 |
#: ../addons/badges/myCRED-addon-badges.php:338
|
275 |
msgid "Badge Enabled"
|
276 |
+
msgstr "Insignia Habilitado"
|
277 |
|
278 |
#: ../addons/badges/myCRED-addon-badges.php:339
|
279 |
msgid "Badge Saved"
|
280 |
+
msgstr "Insignia Guardada"
|
281 |
|
282 |
#: ../addons/badges/myCRED-addon-badges.php:402
|
283 |
msgid "Assign Badge"
|
284 |
+
msgstr "Asignar Insignia"
|
285 |
|
286 |
#: ../addons/badges/myCRED-addon-badges.php:403
|
287 |
msgid "Remove Connections"
|
288 |
+
msgstr "Quitar Conexiones"
|
289 |
|
290 |
#: ../addons/badges/myCRED-addon-badges.php:455
|
291 |
msgid "Time(s)"
|
292 |
+
msgstr "Tiempo(s)"
|
293 |
|
294 |
#: ../addons/badges/myCRED-addon-badges.php:456
|
295 |
msgid "In total"
|
296 |
+
msgstr "En Total"
|
297 |
|
298 |
#: ../addons/badges/myCRED-addon-badges.php:478 ../addons/badges/myCRED-addon-
|
299 |
#: badges.php:625
|
300 |
msgid "Badge Image"
|
301 |
+
msgstr "Imagen de la Insignia"
|
302 |
|
303 |
#: ../addons/badges/myCRED-addon-badges.php:479 ../addons/badges/myCRED-addon-
|
304 |
#: badges.php:479
|
305 |
msgid "Set badge image"
|
306 |
+
msgstr "Configurar la imagen para la insignia"
|
307 |
|
308 |
#: ../addons/badges/myCRED-addon-badges.php:571 ../addons/badges/myCRED-addon-
|
309 |
#: badges.php:591
|
310 |
msgid "no image"
|
311 |
+
msgstr "ningun imagen"
|
312 |
|
313 |
#: ../addons/badges/myCRED-addon-badges.php:578
|
314 |
msgid "Default Image"
|
315 |
+
msgstr "Imagen Predefinida"
|
316 |
|
317 |
#: ../addons/badges/myCRED-addon-badges.php:579
|
318 |
msgid ""
|
319 |
"Option to show a default image if the user has not yet earned this badge. "
|
320 |
"Leave empty if not used."
|
321 |
msgstr ""
|
322 |
+
"Opción para mostrar una imagen predefinida si el usuario todavia no ha "
|
323 |
+
"ganado esta insignia. Dejar vacio si no se va a utilizar."
|
324 |
|
325 |
#: ../addons/badges/myCRED-addon-badges.php:582 ../addons/badges/myCRED-addon-
|
326 |
#: badges.php:602
|
327 |
msgid "image url"
|
328 |
+
msgstr "enlace de la imagen"
|
329 |
|
330 |
#: ../addons/badges/myCRED-addon-badges.php:598
|
331 |
msgid "Main Image"
|
332 |
+
msgstr "Imagen Principal"
|
333 |
|
334 |
#: ../addons/badges/myCRED-addon-badges.php:599
|
335 |
msgid "Image to show when the user has earned this badge."
|
336 |
+
msgstr "Mostrar esta imagen cuando el usuario ha ganado esta insignia."
|
337 |
|
338 |
#: ../addons/badges/myCRED-addon-badges.php:627
|
339 |
msgid "Use as Badge"
|
340 |
+
msgstr "Utiliza como Insignia"
|
341 |
|
342 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
343 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
344 |
+
#: modules/mycred-module-buddypress.php:395
|
345 |
msgid "Do not show"
|
346 |
msgstr "No Mostrar"
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
349 |
+
#: buddypress.php:396
|
350 |
msgid "Include in Profile Header"
|
351 |
+
msgstr "Incluir en el Encabezado del Perfil"
|
352 |
|
353 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
354 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
355 |
msgid "Include under the \"Profile\" tab"
|
356 |
msgstr "Incluir debajo de la pestaña del \"Perfil\""
|
357 |
|
358 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
359 |
+
#: buddypress.php:398
|
360 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
361 |
+
msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
|
362 |
|
363 |
#: ../addons/badges/myCRED-addon-badges.php:730
|
364 |
msgid "Include in Profile"
|
365 |
+
msgstr "Incluir en el Perfil"
|
366 |
|
367 |
#: ../addons/badges/myCRED-addon-badges.php:731
|
368 |
msgid "Include in Forum Replies"
|
369 |
+
msgstr "Incluir en Respuesta de Fórum"
|
370 |
|
371 |
#: ../addons/badges/myCRED-addon-badges.php:732
|
372 |
msgid "Include in Profile and Forum Replies"
|
373 |
+
msgstr "Incluir en Perfil y Respuestas de Fórum"
|
374 |
|
375 |
#: ../addons/badges/includes/mycred-badge-functions.php:61 ..
|
376 |
#: addons/badges/includes/mycred-badge-functions.php:63
|
377 |
msgid "for"
|
378 |
+
msgstr "por (para)"
|
379 |
|
380 |
#: ../addons/badges/includes/mycred-badge-functions.php:61
|
381 |
msgid "time(s)"
|
382 |
+
msgstr "tiempo(s)"
|
383 |
|
384 |
#: ../addons/badges/includes/mycred-badge-functions.php:63
|
385 |
msgid "in total"
|
386 |
+
msgstr "en total"
|
387 |
|
388 |
#: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
|
389 |
#: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
|
392 |
|
393 |
#: ../addons/banking/myCRED-addon-banking.php:158
|
394 |
msgid "Central Banking"
|
395 |
+
msgstr "Banco Central"
|
396 |
|
397 |
#: ../addons/banking/myCRED-addon-banking.php:159
|
398 |
#, php-format
|
401 |
"nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
|
402 |
"deposited back into this account."
|
403 |
msgstr ""
|
404 |
+
"En vez de crear %_plural% de la nada, todos los desembolsos seran hechos "
|
405 |
+
"desde una cuenta nominada del \"Banco Central\". Qualquier %_plural% que un "
|
406 |
+
"usuario gaste o pierda seran depositados a esta misma cuenta."
|
407 |
|
408 |
#: ../addons/banking/myCRED-addon-banking.php:165 ..
|
409 |
#: addons/banking/services/mycred-bank-service-interest.php:512
|
414 |
#, php-format
|
415 |
msgid "Apply a positive or negative interest rate on your users %_plural% balances."
|
416 |
msgstr ""
|
417 |
+
"Aplicar un tipo de interés compuesto positivo o negativo al saldo de "
|
418 |
+
"%_plural% de tus usuarios."
|
419 |
|
420 |
#: ../addons/banking/myCRED-addon-banking.php:172
|
421 |
msgid "Recurring Payouts"
|
423 |
|
424 |
#: ../addons/banking/myCRED-addon-banking.php:173
|
425 |
msgid "Setup mass %_singular% payouts for your users."
|
426 |
+
msgstr "Configurar pago en masa &_singular% para tus usuarios."
|
427 |
|
428 |
#: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
|
429 |
#: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
|
430 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
431 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
432 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
433 |
+
#: modules/mycred-module-settings.php:313
|
434 |
msgid "Access Denied"
|
435 |
msgstr "Acceso Denegado"
|
436 |
|
441 |
|
442 |
#: ../addons/banking/myCRED-addon-banking.php:228
|
443 |
msgid "Your banking setup for %plural%."
|
444 |
+
msgstr "Tu configuración bancario para %plural%."
|
445 |
|
446 |
#: ../addons/banking/myCRED-addon-banking.php:231
|
447 |
msgid "WP-Cron deactivation detected!"
|
454 |
#: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
|
455 |
#: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
|
456 |
msgid "Enable"
|
457 |
+
msgstr "Habilitar"
|
458 |
|
459 |
#: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
|
460 |
#: php:211
|
496 |
|
497 |
#: ../addons/banking/services/mycred-bank-service-central.php:105
|
498 |
msgid "Bank User"
|
499 |
+
msgstr "Usuario del Banco"
|
500 |
|
501 |
#: ../addons/banking/services/mycred-bank-service-central.php:109
|
502 |
msgid "The user ID of the central bank account. This user can not be excluded!"
|
503 |
msgstr ""
|
504 |
+
"El ID de la cuenta de usuario del banco central. Este usuario no puede ser "
|
505 |
+
"excluido!"
|
506 |
|
507 |
#: ../addons/banking/services/mycred-bank-service-central.php:112
|
508 |
msgid "Ignore Manual Adjustments"
|
509 |
+
msgstr "Ignorar Ajustes Manuales"
|
510 |
|
511 |
#: ../addons/banking/services/mycred-bank-service-interest.php:24
|
512 |
msgid "%plural% interest rate payment"
|
514 |
|
515 |
#: ../addons/banking/services/mycred-bank-service-interest.php:379
|
516 |
msgid "Compounding Interest"
|
517 |
+
msgstr "Interés Compuesto"
|
518 |
|
519 |
#: ../addons/banking/services/mycred-bank-service-interest.php:379
|
520 |
#, php-format
|
521 |
msgid "%d Users are left to process."
|
522 |
+
msgstr "Quedan %d usuarios para procesar."
|
523 |
|
524 |
#: ../addons/banking/services/mycred-bank-service-interest.php:388
|
525 |
msgid "Payout History"
|
526 |
+
msgstr "Historial de Desembolso"
|
527 |
|
528 |
#: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
|
529 |
#: addons/banking/services/mycred-bank-service-interest.php:409 ..
|
530 |
#: addons/banking/services/mycred-bank-service-payouts.php:249
|
531 |
msgid "Run Count"
|
532 |
+
msgstr "Cuenta de Ejecución"
|
533 |
|
534 |
#: ../addons/banking/services/mycred-bank-service-interest.php:397
|
535 |
msgid "Last Payout"
|
536 |
+
msgstr "Ultimo Desembolso"
|
537 |
|
538 |
#: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
|
539 |
#: addons/banking/services/mycred-bank-service-interest.php:414
|
540 |
msgid "Activated"
|
541 |
+
msgstr "Activado"
|
542 |
|
543 |
#: ../addons/banking/services/mycred-bank-service-interest.php:401
|
544 |
msgid "Total Payed Interest"
|
545 |
+
msgstr "Total Interés Pagado"
|
546 |
|
547 |
#: ../addons/banking/services/mycred-bank-service-interest.php:405
|
548 |
msgid "Compound History"
|
549 |
+
msgstr "Historial del Compuesto"
|
550 |
|
551 |
#: ../addons/banking/services/mycred-bank-service-interest.php:414
|
552 |
msgid "Last Interest Compound"
|
553 |
+
msgstr "Ultimo Interés Compuesto"
|
554 |
|
555 |
#: ../addons/banking/services/mycred-bank-service-interest.php:418
|
556 |
msgid "Total Compounded Interest"
|
557 |
+
msgstr "Total Interés Compuesto"
|
558 |
|
559 |
#: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
|
560 |
#: addons/banking/services/mycred-bank-service-interest.php:549
|
563 |
|
564 |
#: ../addons/banking/services/mycred-bank-service-interest.php:425
|
565 |
msgid "Default Rate"
|
566 |
+
msgstr "Tasa de Incumplimiento"
|
567 |
|
568 |
#: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
|
569 |
#: addons/banking/services/mycred-bank-service-payouts.php:267
|
585 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
586 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
587 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
588 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
589 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
590 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
591 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
592 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
604 |
#: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
|
605 |
#: addons/banking/services/mycred-bank-service-payouts.php:293
|
606 |
msgid "Optional minimum balance requirement."
|
607 |
+
msgstr "Requerimiento opcional de saldo minimo."
|
608 |
|
609 |
#: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
|
610 |
#: addons/banking/services/mycred-bank-service-payouts.php:296
|
611 |
msgid "Exclude"
|
612 |
+
msgstr "Excluir"
|
613 |
|
614 |
#: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
|
615 |
#: addons/banking/services/mycred-bank-service-payouts.php:299
|
616 |
msgid "Comma separated list of user IDs"
|
617 |
+
msgstr "Lista del IDs de usuarios delimitado por comas"
|
618 |
|
619 |
#: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
|
620 |
#: addons/banking/services/mycred-bank-service-payouts.php:303
|
621 |
msgid "Roles"
|
622 |
+
msgstr "Papeles"
|
623 |
|
624 |
#: ../addons/banking/services/mycred-bank-service-interest.php:522
|
625 |
msgid "This user is excluded from receiving interest on this balance."
|
626 |
+
msgstr "Este usuario esta excluido la concesión de interés sobre este saldo."
|
627 |
|
628 |
#: ../addons/banking/services/mycred-bank-service-interest.php:525
|
629 |
msgid "Remove from Excluded List"
|
630 |
+
msgstr "Quitar de la Lista de Exclusion"
|
631 |
|
632 |
#: ../addons/banking/services/mycred-bank-service-interest.php:537
|
633 |
msgid "This user role is excluded from receiving interest on this balance."
|
634 |
+
msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
|
635 |
|
636 |
#: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
|
637 |
#: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
|
638 |
#: content.php:113
|
639 |
msgid "Leave empty to use the default value."
|
640 |
+
msgstr "Dejar vacio si va a utilizar el valor predefinido."
|
641 |
|
642 |
#: ../addons/banking/services/mycred-bank-service-interest.php:558
|
643 |
msgid "Save Interest Rate"
|
644 |
+
msgstr "Guardar el tipo de interés"
|
645 |
|
646 |
#: ../addons/banking/services/mycred-bank-service-interest.php:559
|
647 |
msgid "Exclude from receiving interest"
|
648 |
+
msgstr "Excluir de recibir interés"
|
649 |
|
650 |
#: ../addons/banking/services/mycred-bank-service-interest.php:667
|
651 |
msgid "Compound interest rate saved."
|
652 |
+
msgstr "Tipo de interés compuesto guardado."
|
653 |
|
654 |
#: ../addons/banking/services/mycred-bank-service-interest.php:669
|
655 |
msgid "User excluded from receiving interest."
|
656 |
+
msgstr "Usuario excluido la concesión de interés."
|
657 |
|
658 |
#: ../addons/banking/services/mycred-bank-service-interest.php:671
|
659 |
msgid "User included in receiving interest."
|
660 |
+
msgstr "Usuario permitido la concesión de interés."
|
661 |
|
662 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:21
|
663 |
msgid "Daily %_plural%"
|
671 |
|
672 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:254
|
673 |
msgid "Last Run"
|
674 |
+
msgstr "Ultima Ejecución"
|
675 |
|
676 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:258
|
677 |
msgid "Total Payouts"
|
678 |
+
msgstr "Total Desembolsos"
|
679 |
|
680 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:262
|
681 |
msgid "Pay Users"
|
683 |
|
684 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
685 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
686 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
687 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
688 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
689 |
+
#: includes/mycred-shortcodes.php:939
|
690 |
msgid "Amount"
|
691 |
msgstr "Cantidad"
|
692 |
|
693 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
694 |
+
#: modules/mycred-module-hooks.php:2112
|
695 |
msgid "Interval"
|
696 |
msgstr "Interval"
|
697 |
|
726 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
|
727 |
msgctxt "Post Type General Name"
|
728 |
msgid "Pending Payments"
|
729 |
+
msgstr "Pagos Pendientes"
|
730 |
|
731 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
|
732 |
msgctxt "Post Type Singular Name"
|
733 |
msgid "Pending Payment"
|
734 |
+
msgstr "Pago Pendiente"
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
|
737 |
#: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
|
738 |
msgid "Pending Payments"
|
739 |
+
msgstr "Pagos Pendientes"
|
740 |
|
741 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
|
742 |
msgid "Edit Pending Payment"
|
743 |
+
msgstr "Editar Pago Pendiente"
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
746 |
+
#: addon-buy-creds.php:1635
|
747 |
msgid "No pending payments found"
|
748 |
+
msgstr "Ningun pago pendiente encontrado"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
|
751 |
msgid "Not found in Trash"
|
752 |
+
msgstr "No ha sido encontrado en la Papelera"
|
753 |
|
754 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
755 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
756 |
msgid "Transaction ID"
|
757 |
msgstr "Identificación de la Transacción"
|
758 |
|
759 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
760 |
+
#: addon-buy-creds.php:985
|
761 |
msgid "Buyer"
|
762 |
+
msgstr "Comprador"
|
763 |
|
764 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
765 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
766 |
#: gateway.php:563
|
767 |
msgid "Cost"
|
768 |
msgstr "Costo"
|
769 |
|
770 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
771 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
772 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
773 |
msgid "Gateway"
|
774 |
msgstr "Pasarela"
|
775 |
|
776 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
|
777 |
msgid "Type"
|
778 |
+
msgstr "Clase"
|
779 |
|
780 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:391
|
781 |
msgid "Pay Out"
|
782 |
+
msgstr "Desembolso"
|
783 |
|
784 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:422
|
785 |
msgid "buyCRED Purchase Log"
|
819 |
|
820 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
821 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
822 |
+
#: module-settings.php:470
|
823 |
msgid "Point Types"
|
824 |
+
msgstr "Clase de Puntos"
|
825 |
|
826 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:589
|
827 |
msgid "Select the point types that users can buy. You must select at least one!"
|
828 |
msgstr ""
|
829 |
+
"Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
|
830 |
+
"uno!"
|
831 |
|
832 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:600
|
833 |
msgid "Login Template"
|
874 |
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
875 |
|
876 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
877 |
+
#: hooks.php:2792
|
878 |
msgid "Available Shortcodes"
|
879 |
msgstr "Códigos cortos Disponibles"
|
880 |
|
881 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:753
|
882 |
#, php-format
|
883 |
msgid "%s Exchange Rate"
|
884 |
+
msgstr "Tipo de Cambio %s"
|
885 |
|
886 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
|
887 |
msgid "Save Exchange Rates"
|
888 |
+
msgstr "Guardar Tipo de Cambio"
|
889 |
|
890 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
|
891 |
msgid "Exchange rate override saved"
|
892 |
+
msgstr "Anulación de de tipo de cambio guardado"
|
893 |
|
894 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
|
895 |
msgid "Payment completed"
|
896 |
+
msgstr "Pago finalizado"
|
897 |
|
898 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
|
899 |
#, php-format
|
901 |
msgstr "%s Pasarelas de Pago"
|
902 |
|
903 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
904 |
+
#: addon-buy-creds.php:993
|
905 |
msgid "buyCRED Settings"
|
906 |
msgstr "Configuraciones de compraCRED"
|
907 |
|
916 |
#. also, "Inhabilitar"
|
917 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
|
918 |
msgid "Disabled"
|
919 |
+
msgstr "Desactivado"
|
920 |
|
921 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
|
922 |
msgid "Sandbox Mode"
|
927 |
msgstr "Habilitar para compras de prueba."
|
928 |
|
929 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
930 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
931 |
msgid "Update Settings"
|
932 |
msgstr "Actualizar Configuraciones"
|
933 |
|
934 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
|
935 |
msgid "More Gateways"
|
936 |
+
msgstr "Mas Pasarelas"
|
937 |
|
938 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
939 |
#: 634
|
940 |
msgid "Date"
|
941 |
msgstr "Fecha"
|
942 |
|
943 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
944 |
msgid "Payed"
|
945 |
msgstr "Pagado"
|
946 |
|
947 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
948 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
949 |
msgstr "Registro de Compras de <strong>compra</strong>CRED"
|
950 |
|
951 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
952 |
#: booking/mycred-eventespresso3.php:367
|
953 |
msgid "Gateway Settings"
|
954 |
msgstr "Configuraciones de la Pasarela de Pago"
|
955 |
|
956 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
957 |
+
#: content/myCRED-addon-sell-content.php:1191
|
958 |
msgid "No purchases found"
|
959 |
msgstr "No se encontro ninguna compra"
|
960 |
|
961 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
962 |
+
#: addon-buy-creds.php:1355
|
963 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
964 |
msgstr ""
|
965 |
"Esta extensión (add-on) debe ser configurado antes de poder usar este código "
|
966 |
"corto (shortcode)."
|
967 |
|
968 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
969 |
+
#: addon-buy-creds.php:1374
|
970 |
msgid "No gateways installed."
|
971 |
msgstr "Ningun pasarela de pago instalado."
|
972 |
|
973 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
974 |
+
#: addon-buy-creds.php:1375
|
975 |
msgid "Gateway does not exist."
|
976 |
msgstr "Puerta de enlace no existe."
|
977 |
|
978 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
979 |
msgid "Yourself"
|
980 |
msgstr "Tu mismo"
|
981 |
|
982 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
983 |
msgid "No active gateways found."
|
984 |
msgstr "No se encuentra ningun puerta de enlace activo."
|
985 |
|
986 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
987 |
msgid "The selected gateway is not active."
|
988 |
msgstr "La puerta de enlace seleccionada no esta activo."
|
989 |
|
990 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
991 |
#, php-format
|
992 |
msgid "Buy with %gateway%"
|
993 |
msgstr "Compra con %gateway%"
|
994 |
|
995 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
996 |
#: content/myCRED-addon-sell-content.php:44
|
997 |
msgid "Buy Now"
|
998 |
msgstr "Compra Ahora"
|
999 |
|
1000 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
1001 |
msgid "No users found"
|
1002 |
msgstr "Ningun Usuario Encontrado"
|
1003 |
|
1004 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
1005 |
msgid "To"
|
1006 |
msgstr "A"
|
1007 |
|
1008 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
1009 |
msgid "Select Amount"
|
1010 |
msgstr "Selecciona la Cantidad"
|
1011 |
|
1012 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
1013 |
msgid "min."
|
1014 |
msgstr "min."
|
1015 |
|
1016 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
1017 |
msgid "Select Gateway"
|
1018 |
msgstr "Selecciona la Pasarela de Pago"
|
1019 |
|
1020 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1021 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1022 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1023 |
#: php:35
|
1024 |
msgid "Pay Now"
|
1025 |
msgstr "Pagar Ahora"
|
1026 |
|
1027 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1028 |
+
#: php:516
|
1029 |
msgid "Cancel"
|
1030 |
msgstr "Cancelar"
|
1031 |
|
1032 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1033 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1034 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1035 |
msgid "Actions"
|
1036 |
msgstr "Acciones"
|
1037 |
|
1177 |
msgid "The following information will be sent to the gateway"
|
1178 |
msgstr "La información siguiente sera transmitido a la pasarela de pago"
|
1179 |
|
1180 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1181 |
msgid "Outside US"
|
1182 |
msgstr "Fuera de los EEUU"
|
1183 |
|
1184 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1185 |
msgid "January"
|
1186 |
+
msgstr "Enero"
|
1187 |
|
1188 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1189 |
msgid "February"
|
1190 |
+
msgstr "Febrero"
|
1191 |
|
1192 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1193 |
msgid "March"
|
1194 |
+
msgstr "Marzo"
|
1195 |
|
1196 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1197 |
msgid "April"
|
1198 |
+
msgstr "Abril"
|
1199 |
|
1200 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1201 |
msgid "May"
|
1202 |
+
msgstr "Mayo"
|
1203 |
|
1204 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1205 |
msgid "June"
|
1206 |
+
msgstr "Junio"
|
1207 |
|
1208 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1209 |
msgid "July"
|
1210 |
+
msgstr "Julio"
|
1211 |
|
1212 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1213 |
msgid "August"
|
1214 |
+
msgstr "Agosto"
|
1215 |
|
1216 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1217 |
msgid "September"
|
1218 |
+
msgstr "Septiembre"
|
1219 |
|
1220 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1221 |
msgid "October"
|
1222 |
+
msgstr "Octubre"
|
1223 |
|
1224 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1225 |
msgid "November"
|
1226 |
+
msgstr "Noviembre"
|
1227 |
|
1228 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1229 |
msgid "December"
|
1230 |
+
msgstr "Diciembre"
|
1231 |
|
1232 |
#: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
|
1233 |
#: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
|
1240 |
#: php:142 ../addons/buy-creds/gateways/skrill.php:119
|
1241 |
#, php-format
|
1242 |
msgid "Price mismatch. Expected: %s Received: %s"
|
1243 |
+
msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
|
1244 |
|
1245 |
#: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
|
1246 |
#: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
|
1247 |
#, php-format
|
1248 |
msgid "Currency mismatch. Expected: %s Received: %s"
|
1249 |
+
msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
|
1250 |
|
1251 |
#: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
|
1252 |
#: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
|
1253 |
#: php:154 ../addons/buy-creds/gateways/skrill.php:131
|
1254 |
#, php-format
|
1255 |
msgid "Payment not completed. Received: %s"
|
1256 |
+
msgstr "Pago no cumplido. Recibido: %s"
|
1257 |
|
1258 |
#: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
|
1259 |
#: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
|
1260 |
#: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
|
1261 |
#: creds/gateways/zombaio.php:174
|
1262 |
msgid "Failed to credit users account."
|
1263 |
+
msgstr "No se pudo creditar la cuenta del usuario."
|
1264 |
|
1265 |
#: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
|
1266 |
#: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
|
1318 |
#: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
|
1319 |
#: php:298 ../addons/buy-creds/gateways/skrill.php:319
|
1320 |
msgid "Exchange Rates"
|
1321 |
+
msgstr "Tipo de Cambio"
|
1322 |
|
1323 |
#: ../addons/buy-creds/gateways/bitpay.php:270
|
1324 |
msgid "Transaction Speed"
|
1480 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1481 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1482 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1483 |
+
#: modules/mycred-module-hooks.php:2757
|
1484 |
msgid "Title"
|
1485 |
msgstr "Titulo"
|
1486 |
|
1547 |
#: ../addons/buy-creds/gateways/zombaio.php:143
|
1548 |
#, php-format
|
1549 |
msgid "Duplicate transaction. Received: %s"
|
1550 |
+
msgstr "Transacción duplicado. Recibido: %s"
|
1551 |
|
1552 |
#: ../addons/buy-creds/gateways/zombaio.php:149
|
1553 |
#, php-format
|
1554 |
msgid "Live transaction while debug mode is enabled! Received: %s"
|
1555 |
+
msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
|
1556 |
|
1557 |
#: ../addons/buy-creds/gateways/zombaio.php:251
|
1558 |
msgid "Site ID"
|
1605 |
|
1606 |
#: ../addons/coupons/myCRED-addon-coupons.php:88
|
1607 |
msgid "Create New"
|
1608 |
+
msgstr "Crear Nuevo"
|
1609 |
|
1610 |
#: ../addons/coupons/myCRED-addon-coupons.php:89
|
1611 |
msgid "Create New Coupon"
|
1617 |
|
1618 |
#: ../addons/coupons/myCRED-addon-coupons.php:91
|
1619 |
msgid "New Coupon"
|
1620 |
+
msgstr "Nuevo Cupón"
|
1621 |
|
1622 |
#: ../addons/coupons/myCRED-addon-coupons.php:94
|
1623 |
msgid "Search coupons"
|
1629 |
|
1630 |
#: ../addons/coupons/myCRED-addon-coupons.php:96
|
1631 |
msgid "No coupons found in Trash"
|
1632 |
+
msgstr "Ningun Cupón Encontrado en la Papelera"
|
1633 |
|
1634 |
#: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
|
1635 |
#: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
|
1687 |
msgstr "todavia no utilizado"
|
1688 |
|
1689 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1690 |
+
#: php:2202
|
1691 |
msgid "Total"
|
1692 |
msgstr "Total"
|
1693 |
|
1733 |
#: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
|
1734 |
#: includes/importers/mycred-cubepoints.php:365
|
1735 |
msgid "Point Type"
|
1736 |
+
msgstr "Clase de Puntos"
|
1737 |
|
1738 |
#: ../addons/coupons/myCRED-addon-coupons.php:316
|
1739 |
msgid "Select the point type that this coupon is applied."
|
1740 |
+
msgstr "Elige el clase de puntos al cual este cupón se aplica."
|
1741 |
|
1742 |
#: ../addons/coupons/myCRED-addon-coupons.php:321
|
1743 |
msgid "Expire"
|
1865 |
msgstr "Aplica el Cupón"
|
1866 |
|
1867 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1868 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1869 |
msgid "Email Notice"
|
1870 |
msgstr "Aviso por Correo Electrónico"
|
1871 |
|
2012 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
|
2013 |
#: notices/myCRED-addon-email-notices.php:305
|
2014 |
msgid "Email Schedule"
|
2015 |
+
msgstr "Itinerario de Emails"
|
2016 |
|
2017 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:301
|
2018 |
msgid "WordPress Cron is disabled. Emails will be sent immediately."
|
2019 |
+
msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
|
2020 |
|
2021 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:309
|
2022 |
msgid "Send emails immediately"
|
2023 |
+
msgstr "Mandar emails inmediatamente"
|
2024 |
|
2025 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:313
|
2026 |
msgid "Send emails once an hour"
|
2027 |
+
msgstr "Mandar emails una vez a la hora"
|
2028 |
|
2029 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:317
|
2030 |
msgid "Send emails once a day"
|
2031 |
+
msgstr "Mandar emails una vez al dia"
|
2032 |
|
2033 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:320
|
2034 |
msgid "Subscriptions"
|
2035 |
+
msgstr "Suscripciones"
|
2036 |
|
2037 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:322
|
2038 |
#, php-format
|
2040 |
"Use the %s shortcode to allow users to subscribe / unsubscribe to email "
|
2041 |
"updates."
|
2042 |
msgstr ""
|
2043 |
+
"Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
|
2044 |
+
"de baja a informes vía correo electrónico."
|
2045 |
|
2046 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:327
|
2047 |
msgid "SMTP Override"
|
2048 |
+
msgstr "Invalidar SMTP"
|
2049 |
|
2050 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:331
|
2051 |
msgid ""
|
2052 |
"SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
|
2053 |
"use a SMTP plugin for emails."
|
2054 |
msgstr ""
|
2055 |
+
"Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
|
2056 |
+
"SMTP para email."
|
2057 |
|
2058 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:334
|
2059 |
msgid ""
|
2064 |
"pueden ser anulado individualmente cuando se edita correos electrónicos."
|
2065 |
|
2066 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2067 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2068 |
msgid "Email Settings"
|
2069 |
+
msgstr "Configuraciones de Correo Electrónico"
|
2070 |
|
2071 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2072 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2073 |
msgid "Senders Name:"
|
2074 |
msgstr "Nombre del Remitente"
|
2075 |
|
2076 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2077 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2078 |
msgid "Senders Email:"
|
2079 |
msgstr "Correo Electrónico del Remitente:"
|
2080 |
|
2098 |
msgid "Ignored if HTML is not allowed in emails."
|
2099 |
msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
|
2100 |
|
2101 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2102 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2103 |
msgid "Email Subject"
|
2104 |
msgstr "Asunto del Correo Electrónico"
|
2105 |
|
2106 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2107 |
msgid "Status"
|
2108 |
msgstr "Estatus"
|
2109 |
|
2110 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2111 |
msgid "Not Active"
|
2112 |
msgstr "No esta Activo"
|
2113 |
|
2114 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2115 |
#, php-format
|
2116 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2117 |
msgstr "Programada:<br /><strong>%1$s</strong>"
|
2118 |
|
2119 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2120 |
msgid "Active"
|
2121 |
msgstr "Activo"
|
2122 |
|
2123 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2124 |
#, php-format
|
2125 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2126 |
msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
|
2127 |
|
2128 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2129 |
msgid "Email is sent when"
|
2130 |
msgstr "el Correo Electrónico se envia cuando"
|
2131 |
|
2132 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2133 |
msgid "Missing instance for this notice!"
|
2134 |
msgstr "¡Falta una instancia para este aviso!"
|
2135 |
|
2136 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2137 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2138 |
+
#: addon-email-notices.php:775
|
2139 |
msgid "Sent To"
|
2140 |
msgstr "Enviado A:"
|
2141 |
|
2142 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2143 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2144 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2145 |
msgid "User"
|
2146 |
msgstr "Usuario"
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2149 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2150 |
msgid "Administrator"
|
2151 |
msgstr "Administrador"
|
2152 |
|
2153 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2154 |
msgid "Both Administrator and User"
|
2155 |
msgstr "Tanto Administrador como Usuario"
|
2156 |
|
2157 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2158 |
msgid "Available Template Tags"
|
2159 |
msgstr "Etiquetas (tags) de Plantilla Disponibles"
|
2160 |
|
2161 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2162 |
msgid "Email Header"
|
2163 |
msgstr "Encabezado del Correo Electrónico"
|
2164 |
|
2165 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2166 |
msgid "Send this email notice when..."
|
2167 |
msgstr "Envia este aviso por correo electrónico cuando..."
|
2168 |
|
2169 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2170 |
msgid "Recipient:"
|
2171 |
msgstr "Destinatario:"
|
2172 |
|
2173 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2174 |
msgid "Both"
|
2175 |
msgstr "Ambos"
|
2176 |
|
2177 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2178 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2179 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2180 |
+
#: module-settings.php:527
|
2181 |
msgid "Label"
|
2182 |
msgstr "Etiqueta"
|
2183 |
|
2184 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2185 |
msgid "Reply-To Email:"
|
2186 |
msgstr "Responder-A Correo Electrónico:"
|
2187 |
|
2188 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2189 |
msgid "Save"
|
2190 |
msgstr "Guardar"
|
2191 |
|
2192 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2193 |
msgid "CSS Styling"
|
2194 |
msgstr "Estilo CSS"
|
2195 |
|
2196 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2197 |
msgid "Site Related"
|
2198 |
msgstr "Relacionado al Sitio"
|
2199 |
|
2200 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2201 |
msgid "Your websites title"
|
2202 |
msgstr "Titulo de tu pagina web"
|
2203 |
|
2204 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2205 |
msgid "Your websites address"
|
2206 |
msgstr "Dirección de tu pagina web"
|
2207 |
|
2208 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2209 |
msgid "Your websites tagline (description)"
|
2210 |
msgstr "La descripción de tu sitio web (lema o eslogan)"
|
2211 |
|
2212 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2213 |
msgid "Your websites admin email"
|
2214 |
msgstr "El correo electrónico de admin para tu pagina web"
|
2215 |
|
2216 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2217 |
msgid "Total number of blog members"
|
2218 |
msgstr "Número total de miembros del blog"
|
2219 |
|
2220 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2221 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2222 |
+
#: addon-email-notices.php:1040
|
2223 |
msgid "Email Notice Updated."
|
2224 |
+
msgstr "Aviso atraves de correo electrónico Actualizado."
|
2225 |
|
2226 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2227 |
msgid "Email Notice Activated"
|
2228 |
msgstr "Notificación atraves de Correo Electrónico Activado"
|
2229 |
|
2230 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2231 |
msgid "Email Notice Saved"
|
2232 |
msgstr "Aviso por Correo Electrónico Guardado"
|
2233 |
|
2234 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2235 |
msgid ""
|
2236 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2237 |
"are not yet ready to use this email notice!"
|
2239 |
"¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
|
2240 |
"si aun no estás listo para utilizar este aviso por email!"
|
2241 |
|
2242 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2243 |
#, php-format
|
2244 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2245 |
msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
|
2246 |
|
2247 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2248 |
msgid "This email notice is active."
|
2249 |
msgstr "Esta notificación de correo electrónico esta activada."
|
2250 |
|
2251 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2252 |
msgid "Settings saved."
|
2253 |
+
msgstr "Configuraciones Guardadas"
|
2254 |
|
2255 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2256 |
msgid "Unsubscribe"
|
2257 |
+
msgstr "Cancelar la Suscripción"
|
2258 |
|
2259 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2260 |
msgid "There are no email notifications yet."
|
2261 |
+
msgstr "Todavía no hay notificaciones de email."
|
2262 |
|
2263 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2264 |
msgid "Save Changes"
|
2265 |
+
msgstr "Guardar Cambios"
|
2266 |
|
2267 |
#: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
|
2268 |
#: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
|
2309 |
|
2310 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2311 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2312 |
+
#: 52 ../includes/mycred-network.php:53
|
2313 |
msgid "myCRED"
|
2314 |
msgstr "myCRED"
|
2315 |
|
2342 |
#: ../addons/gateway/carts/mycred-marketpress.php:361 ..
|
2343 |
#: addons/gateway/carts/mycred-woocommerce.php:237
|
2344 |
msgid "Insufficient funds."
|
2345 |
+
msgstr "Fondos Insuficientes."
|
2346 |
|
2347 |
#: ../addons/gateway/carts/mycred-marketpress.php:362
|
2348 |
msgid ""
|
2390 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2391 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2392 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2393 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2394 |
msgid "Exchange Rate"
|
2395 |
msgstr "Tipo de Cambio"
|
2396 |
|
2522 |
|
2523 |
#: ../addons/gateway/carts/mycred-woocommerce.php:110
|
2524 |
msgid "Select the point type users can use to pay."
|
2525 |
+
msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
|
2526 |
|
2527 |
#: ../addons/gateway/carts/mycred-woocommerce.php:136
|
2528 |
msgid "Show Total"
|
2690 |
|
2691 |
#: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
|
2692 |
msgid "Payment Type"
|
2693 |
+
msgstr "Clase de Pago"
|
2694 |
|
2695 |
#: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
|
2696 |
msgid "Title to show on receipts and logs"
|
2700 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2701 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2702 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2703 |
+
#: sell-content.php:669
|
2704 |
msgid "Button Label"
|
2705 |
msgstr "Eqiqueta Asignada al Botón"
|
2706 |
|
2714 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2715 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2716 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2717 |
+
#: sell-content.php:665
|
2718 |
msgid "Price"
|
2719 |
msgstr "Precio"
|
2720 |
|
2807 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
|
2808 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:333
|
2809 |
msgid "Ticket Type"
|
2810 |
+
msgstr "Clase de Billete"
|
2811 |
|
2812 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
|
2813 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:342
|
2823 |
msgstr "Rechazar"
|
2824 |
|
2825 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2826 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2827 |
+
#: modules/mycred-module-settings.php:508
|
2828 |
msgid "Delete"
|
2829 |
msgstr "Borrar"
|
2830 |
|
2951 |
msgstr "Utilice el Estilo CSS incluido para notificaciones."
|
2952 |
|
2953 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2954 |
+
#: module-buddypress.php:439
|
2955 |
msgid "Template"
|
2956 |
msgstr "Plantilla"
|
2957 |
|
3049 |
#: php:555 ../addons/ranks/myCRED-addon-ranks.php:559 ../addons/ranks/myCRED-
|
3050 |
#: addon-ranks.php:560
|
3051 |
msgid "Rank Updated."
|
3052 |
+
msgstr "Rango Actualizado."
|
3053 |
|
3054 |
#: ../addons/ranks/myCRED-addon-ranks.php:557
|
3055 |
msgid "Rank Enabled"
|
3056 |
+
msgstr "Rango Habilitado"
|
3057 |
|
3058 |
#: ../addons/ranks/myCRED-addon-ranks.php:558
|
3059 |
msgid "Rank Saved"
|
3236 |
"y/o en el frente si los rangos son \"Público\""
|
3237 |
|
3238 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3239 |
+
#: php:402
|
3240 |
msgid "Do not show."
|
3241 |
msgstr "No mostrar."
|
3242 |
|
3246 |
|
3247 |
#: ../addons/ranks/myCRED-addon-ranks.php:861
|
3248 |
msgid "Include under the \"Profile\" tab and Profile Header."
|
3249 |
+
msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
|
3250 |
|
3251 |
#: ../addons/ranks/myCRED-addon-ranks.php:864
|
3252 |
msgid "Rank in BuddyPress"
|
3286 |
msgstr "Ningun usuario encontrado con este rango"
|
3287 |
|
3288 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3289 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3290 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3291 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3292 |
msgid "error"
|
3293 |
msgstr "error"
|
3294 |
|
3302 |
|
3303 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:110
|
3304 |
msgid "Profit Share"
|
3305 |
+
msgstr "Reparto de Utilidades"
|
3306 |
|
3307 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:118
|
3308 |
msgid "Save Profit Share"
|
3309 |
+
msgstr "Guardar Reparto de Utilidades"
|
3310 |
|
3311 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:164
|
3312 |
msgid "Profit Share override saved"
|
3313 |
+
msgstr "Anulación de reparto de utilidades guardado"
|
3314 |
|
3315 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:326
|
3316 |
msgid "You can not buy this content."
|
3376 |
|
3377 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:475
|
3378 |
msgid "For Visitors"
|
3379 |
+
msgstr "Para Visitantes"
|
3380 |
|
3381 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:480
|
3382 |
#, php-format
|
3389 |
|
3390 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:485
|
3391 |
msgid "For Members"
|
3392 |
+
msgstr "Para Miembros"
|
3393 |
|
3394 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
|
3395 |
#: content/myCRED-addon-sell-content.php:500
|
3401 |
|
3402 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:495
|
3403 |
msgid "For members that can not afford to buy"
|
3404 |
+
msgstr "Para los miembros que no tienen al alcance comprar"
|
3405 |
|
3406 |
#: ../addons/sell-content/myCRED-addon-sell-content.php:504
|
3407 |
msgid "Log template for Purchases"
|
3416 |
msgid "%s Sell This"
|
3417 |
msgstr "%s Vende Esto"
|
3418 |
|
3419 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3420 |
#, php-format
|
3421 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3422 |
msgstr ""
|
3423 |
"%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
|
3424 |
"esta característica técnica."
|
3425 |
|
3426 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3427 |
msgid "Setup add-on"
|
3428 |
msgstr "Configurar Extensión"
|
3429 |
|
3430 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3431 |
msgid "Lets do it"
|
3432 |
msgstr "Vamos a hacerlo."
|
3433 |
|
3434 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3435 |
#, php-format
|
3436 |
msgid "Enable sale of this %s"
|
3437 |
+
msgstr "Habilitar la venta de esto %s"
|
3438 |
|
3439 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3440 |
msgid "Purchase expires after"
|
3441 |
msgstr "Compra caduca despues de"
|
3442 |
|
3443 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3444 |
msgid "Thank you for your purchase!"
|
3445 |
msgstr "¡Gracias por su compra!"
|
3446 |
|
3447 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3448 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3449 |
msgid "The following content is set for sale:"
|
3450 |
msgstr "El siguiente contenido esta listo para la venta:"
|
3451 |
|
3452 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3453 |
msgid "Purchased"
|
3454 |
msgstr "Comprado"
|
3455 |
|
3462 |
msgstr "Has excedido tu limite de transferencia de %limit%."
|
3463 |
|
3464 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3465 |
+
#: php:2367
|
3466 |
msgid "Transfer"
|
3467 |
msgstr "Transferir"
|
3468 |
|
3501 |
"transferencias hasta que se haga esto."
|
3502 |
|
3503 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3504 |
+
#: php:1041
|
3505 |
msgid "Insufficient Funds. Please try a lower amount."
|
3506 |
+
msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
|
3507 |
|
3508 |
#: ../addons/transfer/myCRED-addon-transfer.php:148
|
3509 |
msgid "Transfer Limit exceeded."
|
3536 |
|
3537 |
#: ../addons/transfer/myCRED-addon-transfer.php:200
|
3538 |
msgid "Select the point types that users can transfer."
|
3539 |
+
msgstr "Elige el clase de punto que el usuario puede transferir."
|
3540 |
|
3541 |
#: ../addons/transfer/myCRED-addon-transfer.php:208
|
3542 |
msgid "Log template for sending"
|
3566 |
|
3567 |
#: ../addons/transfer/myCRED-addon-transfer.php:260
|
3568 |
msgid "Limit Amount"
|
3569 |
+
msgstr "Limitar la Cantidad"
|
3570 |
|
3571 |
#: ../addons/transfer/myCRED-addon-transfer.php:264
|
3572 |
msgid "Form Templates"
|
3699 |
|
3700 |
#: ../includes/mycred-admin.php:192
|
3701 |
msgid "A log entry is required in order to adjust this users balance"
|
3702 |
+
msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
|
3703 |
|
3704 |
#: ../includes/mycred-admin.php:194
|
3705 |
msgid "Users balance saved"
|
3706 |
+
msgstr "Saldo de Usuario(s) Guardado"
|
3707 |
|
3708 |
#: ../includes/mycred-admin.php:202
|
3709 |
msgid "Users excluded"
|
3710 |
+
msgstr "Usuarios Excluidos"
|
3711 |
|
3712 |
#: ../includes/mycred-admin.php:207
|
3713 |
msgid ""
|
3714 |
"All buyCRED Payment Gateways have been disabled! Please check your exchange "
|
3715 |
"rate settings and update all premium payment gateways!"
|
3716 |
msgstr ""
|
3717 |
+
"¡Todas las Pasarelas de Pago de buyCRED han sido desactivado! ¡Por favor "
|
3718 |
+
"verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
|
3719 |
+
"de pago!"
|
3720 |
|
3721 |
#: ../includes/mycred-admin.php:235
|
3722 |
msgid "User is excluded"
|
3741 |
#: ../includes/mycred-admin.php:396
|
3742 |
#, php-format
|
3743 |
msgid "Total: %s"
|
3744 |
+
msgstr "Total: %s"
|
3745 |
|
3746 |
#: ../includes/mycred-admin.php:405
|
3747 |
msgid "Adjust"
|
3749 |
|
3750 |
#: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
|
3751 |
msgid "Edit Balance"
|
3752 |
+
msgstr "Editar Saldo"
|
3753 |
|
3754 |
#: ../includes/mycred-admin.php:462
|
3755 |
msgid "Profile"
|
3756 |
+
msgstr "Perfil"
|
3757 |
|
3758 |
#: ../includes/mycred-admin.php:469
|
3759 |
msgid "Extended Profile"
|
3760 |
+
msgstr "Perfil Extendido"
|
3761 |
|
3762 |
#: ../includes/mycred-admin.php:559
|
3763 |
#, php-format
|
3764 |
msgid "This user is excluded from using %s"
|
3765 |
+
msgstr "Este usuario esta excluido de poder utilizar %s"
|
3766 |
|
3767 |
#: ../includes/mycred-admin.php:582
|
3768 |
msgid "Edit User"
|
3769 |
+
msgstr "Editar Usuario"
|
3770 |
|
3771 |
#: ../includes/mycred-admin.php:584
|
3772 |
msgctxt "user"
|
3773 |
msgid "Add New"
|
3774 |
+
msgstr "Añadir Nuevo"
|
3775 |
|
3776 |
#: ../includes/mycred-admin.php:586
|
3777 |
msgctxt "user"
|
3778 |
msgid "Add Existing"
|
3779 |
+
msgstr "Añadir Existente"
|
3780 |
|
3781 |
#: ../includes/mycred-admin.php:597
|
3782 |
#, php-format
|
3783 |
msgid "Total %s Accumulated"
|
3784 |
+
msgstr "Total %s Acumulado"
|
3785 |
|
3786 |
#: ../includes/mycred-admin.php:598
|
3787 |
#, php-format
|
3788 |
msgid "Total %s Spent"
|
3789 |
+
msgstr "Total %s Gastado"
|
3790 |
|
3791 |
#: ../includes/mycred-admin.php:609
|
3792 |
msgid "View History"
|
3793 |
+
msgstr "Ver Historial"
|
3794 |
|
3795 |
#: ../includes/mycred-admin.php:610
|
3796 |
msgid "Exclude User"
|
3797 |
+
msgstr "Excluir Usuario"
|
3798 |
|
3799 |
#: ../includes/mycred-admin.php:614
|
3800 |
msgid "Adjust Balance"
|
3801 |
+
msgstr "Ajustar Saldo"
|
3802 |
|
3803 |
#: ../includes/mycred-admin.php:623
|
3804 |
msgid ""
|
3805 |
"Warning! Excluding this user will result in their balance being deleted "
|
3806 |
"along with any entries currently in your log! This can not be undone!"
|
3807 |
msgstr ""
|
3808 |
+
"¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
|
3809 |
+
"de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
|
3810 |
|
3811 |
#: ../includes/mycred-admin.php:681
|
3812 |
#, php-format
|
3889 |
msgid "My Entire Log"
|
3890 |
msgstr "Mi Registro Entero"
|
3891 |
|
3892 |
+
#: ../includes/mycred-functions.php:1854
|
3893 |
msgid "ref empty"
|
3894 |
msgstr "ref vacío"
|
3895 |
|
3896 |
+
#: ../includes/mycred-functions.php:1862
|
3897 |
msgid "incorrect user id format"
|
3898 |
msgstr "Formato incorrecto para id del usuario"
|
3899 |
|
3900 |
+
#: ../includes/mycred-functions.php:1875
|
3901 |
msgid "incorrect unix timestamp (from):"
|
3902 |
msgstr "erroneo marca de tiempo de unix (desde):"
|
3903 |
|
3904 |
+
#: ../includes/mycred-functions.php:1884
|
3905 |
msgid "incorrect unix timestamp (to):"
|
3906 |
msgstr "erroneo marca de tiempo de unix (a):"
|
3907 |
|
3908 |
+
#: ../includes/mycred-functions.php:2254
|
3909 |
msgid "Website Registration"
|
3910 |
+
msgstr "Inscripción del Sitio Web"
|
3911 |
|
3912 |
+
#: ../includes/mycred-functions.php:2255
|
3913 |
msgid "Website Visit"
|
3914 |
+
msgstr "Visita de Sitio Web"
|
3915 |
|
3916 |
+
#: ../includes/mycred-functions.php:2256
|
3917 |
msgid "Viewing Content (Member)"
|
3918 |
+
msgstr "Viendo Contenido (Miembro)"
|
3919 |
|
3920 |
+
#: ../includes/mycred-functions.php:2257
|
3921 |
msgid "Viewing Content (Author)"
|
3922 |
+
msgstr "Viendo Contenido (Autor)"
|
3923 |
|
3924 |
+
#: ../includes/mycred-functions.php:2258
|
3925 |
msgid "Logging in"
|
3926 |
+
msgstr "Accediendo"
|
3927 |
|
3928 |
+
#: ../includes/mycred-functions.php:2259
|
3929 |
msgid "Publishing Content"
|
3930 |
+
msgstr "Publicando Contenido"
|
3931 |
|
3932 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3933 |
msgid "Approved Comment"
|
3934 |
msgstr "Comentario Aprobado"
|
3935 |
|
3936 |
+
#: ../includes/mycred-functions.php:2261
|
3937 |
msgid "Unapproved Comment"
|
3938 |
+
msgstr "Comentario no Aprobado"
|
3939 |
|
3940 |
+
#: ../includes/mycred-functions.php:2262
|
3941 |
msgid "SPAM Comment"
|
3942 |
+
msgstr "Comentario SPAM"
|
3943 |
|
3944 |
+
#: ../includes/mycred-functions.php:2263
|
3945 |
msgid "Deleted Comment"
|
3946 |
+
msgstr "Comentario Borrado"
|
3947 |
|
3948 |
+
#: ../includes/mycred-functions.php:2264
|
3949 |
msgid "Link Click"
|
3950 |
+
msgstr "Click al Enlace"
|
3951 |
|
3952 |
+
#: ../includes/mycred-functions.php:2265
|
3953 |
msgid "Watching Video"
|
3954 |
+
msgstr "Mirando Video"
|
3955 |
|
3956 |
+
#: ../includes/mycred-functions.php:2266
|
3957 |
msgid "Visitor Referral"
|
3958 |
+
msgstr "Referencia de Visitante"
|
3959 |
|
3960 |
+
#: ../includes/mycred-functions.php:2267
|
3961 |
msgid "Signup Referral"
|
3962 |
+
msgstr "Referencia de Inscripción "
|
3963 |
|
3964 |
+
#: ../includes/mycred-functions.php:2271
|
3965 |
msgid "New Profile Update"
|
3966 |
+
msgstr "Nuevo Perfil Actualizado"
|
3967 |
|
3968 |
+
#: ../includes/mycred-functions.php:2272
|
3969 |
msgid "Avatar Upload"
|
3970 |
+
msgstr "Subir Avatar"
|
3971 |
|
3972 |
+
#: ../includes/mycred-functions.php:2273
|
3973 |
msgid "New Friendship"
|
3974 |
+
msgstr "Nueva Amistad"
|
3975 |
|
3976 |
+
#: ../includes/mycred-functions.php:2274
|
3977 |
msgid "Ended Friendship"
|
3978 |
+
msgstr "Amistad Terminada"
|
3979 |
|
3980 |
+
#: ../includes/mycred-functions.php:2275
|
3981 |
msgid "New Profile Comment"
|
3982 |
+
msgstr "Nuevo Comentario de Perfil"
|
3983 |
|
3984 |
+
#: ../includes/mycred-functions.php:2276
|
3985 |
msgid "Profile Comment Deletion"
|
3986 |
+
msgstr "Borrar Comentario del Perfil"
|
3987 |
|
3988 |
+
#: ../includes/mycred-functions.php:2277
|
3989 |
msgid "New Message"
|
3990 |
+
msgstr "Nuevo Mensaje"
|
3991 |
|
3992 |
+
#: ../includes/mycred-functions.php:2278
|
3993 |
msgid "Sending Gift"
|
3994 |
+
msgstr "Mandando Regalo"
|
3995 |
|
3996 |
+
#: ../includes/mycred-functions.php:2279
|
3997 |
msgid "New Group"
|
3998 |
+
msgstr "Nuevo Grupo"
|
3999 |
|
4000 |
+
#: ../includes/mycred-functions.php:2280
|
4001 |
msgid "Deleted Group"
|
4002 |
+
msgstr "Grupo Borrado"
|
4003 |
|
4004 |
+
#: ../includes/mycred-functions.php:2281
|
4005 |
msgid "New Group Forum Topic"
|
4006 |
+
msgstr "Nuevo Tema del Fórum de Grupo"
|
4007 |
|
4008 |
+
#: ../includes/mycred-functions.php:2282
|
4009 |
msgid "Edit Group Forum Topic"
|
4010 |
+
msgstr "Editar el Tema del Fórum de Grupo"
|
4011 |
|
4012 |
+
#: ../includes/mycred-functions.php:2283
|
4013 |
msgid "New Group Forum Post"
|
4014 |
+
msgstr "Nueva Entrada del Fórum de Grupo"
|
4015 |
|
4016 |
+
#: ../includes/mycred-functions.php:2284
|
4017 |
msgid "Edit Group Forum Post"
|
4018 |
+
msgstr "Editar Entrada del Fórum de Grupo"
|
4019 |
|
4020 |
+
#: ../includes/mycred-functions.php:2285
|
4021 |
msgid "Joining Group"
|
4022 |
+
msgstr "Agregar al Grupo"
|
4023 |
|
4024 |
+
#: ../includes/mycred-functions.php:2286
|
4025 |
msgid "Leaving Group"
|
4026 |
+
msgstr "Dejando el Grupo"
|
4027 |
|
4028 |
+
#: ../includes/mycred-functions.php:2287
|
4029 |
msgid "New Group Avatar"
|
4030 |
+
msgstr "Nuevo Avatar del Grupo"
|
4031 |
|
4032 |
+
#: ../includes/mycred-functions.php:2288
|
4033 |
msgid "New Group Comment"
|
4034 |
+
msgstr "Nuevo Comentario al Grupo\n"
|
4035 |
|
4036 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
4037 |
#: php:166
|
4038 |
msgid "Photo Upload"
|
4039 |
msgstr "Subir Foto"
|
4040 |
|
4041 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
4042 |
#: php:176
|
4043 |
msgid "Video Upload"
|
4044 |
msgstr "Subir Video"
|
4045 |
|
4046 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
4047 |
#: php:186
|
4048 |
msgid "Music Upload"
|
4049 |
msgstr "Subir Música"
|
4050 |
|
4051 |
+
#: ../includes/mycred-functions.php:2298
|
4052 |
msgid "New Link"
|
4053 |
+
msgstr "Nuevo Enlace"
|
4054 |
|
4055 |
+
#: ../includes/mycred-functions.php:2299
|
4056 |
msgid "Link Voting"
|
4057 |
+
msgstr "Votar sobre Enlace"
|
4058 |
|
4059 |
+
#: ../includes/mycred-functions.php:2300
|
4060 |
msgid "Link Update"
|
4061 |
+
msgstr "Enlace Actualizado"
|
4062 |
|
4063 |
+
#: ../includes/mycred-functions.php:2304
|
4064 |
msgid "New Forum (bbPress)"
|
4065 |
+
msgstr "Nuevo Fórum (bbPress)"
|
4066 |
|
4067 |
+
#: ../includes/mycred-functions.php:2305
|
4068 |
msgid "New Forum Topic (bbPress)"
|
4069 |
+
msgstr "Nuevo Tema de Fórum (bbPress)"
|
4070 |
|
4071 |
+
#: ../includes/mycred-functions.php:2306
|
4072 |
msgid "Favorited Topic (bbPress)"
|
4073 |
+
msgstr "Tema Favorito (bbPress)"
|
4074 |
|
4075 |
+
#: ../includes/mycred-functions.php:2307
|
4076 |
msgid "New Topic Reply (bbPress)"
|
4077 |
+
msgstr "Nueva Respuesta a Tema (bbPress)"
|
4078 |
|
4079 |
+
#: ../includes/mycred-functions.php:2311
|
4080 |
msgid "Form Submission (Contact Form 7)"
|
4081 |
+
msgstr "Sumisión de Formulario (Contact Form 7)"
|
4082 |
|
4083 |
+
#: ../includes/mycred-functions.php:2314
|
4084 |
msgid "Form Submission (Gravity Form)"
|
4085 |
+
msgstr "Sumisión de Formulario (Gravity Form)"
|
4086 |
|
4087 |
+
#: ../includes/mycred-functions.php:2317
|
4088 |
msgid "New Forum Topic (SimplePress)"
|
4089 |
+
msgstr "Nuevo Tema de Fórum (SimplePress)"
|
4090 |
|
4091 |
+
#: ../includes/mycred-functions.php:2318
|
4092 |
msgid "New Forum Post (SimplePress)"
|
4093 |
+
msgstr "Nueva Entrada de Fórum (SimplePress)"
|
4094 |
|
4095 |
+
#: ../includes/mycred-functions.php:2322
|
4096 |
msgid "Poll Voting"
|
4097 |
+
msgstr "Votación"
|
4098 |
|
4099 |
+
#: ../includes/mycred-functions.php:2325
|
4100 |
msgid "Sending an Invite"
|
4101 |
+
msgstr "Mandando una Invitación"
|
4102 |
|
4103 |
+
#: ../includes/mycred-functions.php:2326
|
4104 |
msgid "Accepting an Invite"
|
4105 |
+
msgstr "Aceptando una Invitación"
|
4106 |
|
4107 |
+
#: ../includes/mycred-functions.php:2332
|
4108 |
msgid "Banking Payout"
|
4109 |
+
msgstr "Desembolso Bancario"
|
4110 |
|
4111 |
+
#: ../includes/mycred-functions.php:2335
|
4112 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4113 |
+
msgstr "Compra buyCRED (PayPal Standard)"
|
4114 |
|
4115 |
+
#: ../includes/mycred-functions.php:2336
|
4116 |
msgid "buyCRED Purchase (Skrill)"
|
4117 |
+
msgstr "Compra buyCRED (Skrill)"
|
4118 |
|
4119 |
+
#: ../includes/mycred-functions.php:2337
|
4120 |
msgid "buyCRED Purchase (Zombaio)"
|
4121 |
+
msgstr "Compra buyCRED (Zombaio)"
|
4122 |
|
4123 |
+
#: ../includes/mycred-functions.php:2338
|
4124 |
msgid "buyCRED Purchase (NETBilling)"
|
4125 |
+
msgstr "Compra buyCRED (NETBilling)"
|
4126 |
|
4127 |
+
#: ../includes/mycred-functions.php:2339
|
4128 |
msgid "buyCRED Purchase (BitPay)"
|
4129 |
+
msgstr "Compra buyCRED (BitPay)"
|
4130 |
|
4131 |
+
#: ../includes/mycred-functions.php:2344
|
4132 |
msgid "Coupon Purchase"
|
4133 |
+
msgstr "Compra Cupón"
|
4134 |
|
4135 |
+
#: ../includes/mycred-functions.php:2347
|
4136 |
msgid "Store Purchase (WooCommerce)"
|
4137 |
+
msgstr "Compra de Tienda (WooCommerce)"
|
4138 |
|
4139 |
+
#: ../includes/mycred-functions.php:2348
|
4140 |
msgid "Store Purchase (MarketPress)"
|
4141 |
+
msgstr "Compra de Tienda (MarketPress)"
|
4142 |
|
4143 |
+
#: ../includes/mycred-functions.php:2349
|
4144 |
msgid "Store Purchase (WP E-Commerce)"
|
4145 |
+
msgstr "Compra de Tienda (WP E-Commerce)"
|
4146 |
|
4147 |
+
#: ../includes/mycred-functions.php:2354
|
4148 |
msgid "Event Payment (Event Espresso)"
|
4149 |
+
msgstr "Pago por Evento (Event Espresso)"
|
4150 |
|
4151 |
+
#: ../includes/mycred-functions.php:2355
|
4152 |
msgid "Event Sale (Event Espresso)"
|
4153 |
+
msgstr "Venta de Evento (Event Espresso)"
|
4154 |
|
4155 |
+
#: ../includes/mycred-functions.php:2359
|
4156 |
msgid "Event Payment (Events Manager)"
|
4157 |
+
msgstr "Pago por Evento (Events Manager)"
|
4158 |
|
4159 |
+
#: ../includes/mycred-functions.php:2360
|
4160 |
msgid "Event Sale (Events Manager)"
|
4161 |
+
msgstr "Venta de Evento (Events Manager)"
|
4162 |
|
4163 |
+
#: ../includes/mycred-functions.php:2364
|
4164 |
msgid "Content Purchase / Sale"
|
4165 |
+
msgstr "Compra / Venta de Contenido"
|
4166 |
|
4167 |
+
#: ../includes/mycred-functions.php:2371
|
4168 |
msgid "Manual Adjustment by Admin"
|
4169 |
+
msgstr "Ajuste Manual por Admin"
|
4170 |
|
4171 |
#: ../includes/mycred-importer.php:11
|
4172 |
#, php-format
|
4202 |
|
4203 |
#: ../includes/mycred-install.php:39
|
4204 |
msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
|
4205 |
+
msgstr "myCRED requiere WordPress 3.8 o más alto. La versión detectada:"
|
4206 |
|
4207 |
#: ../includes/mycred-install.php:44
|
4208 |
msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
|
4212 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4213 |
msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
|
4214 |
|
4215 |
+
#: ../includes/mycred-install.php:54
|
4216 |
msgid ""
|
4217 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4218 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4219 |
"for you!"
|
4220 |
msgstr ""
|
4221 |
+
"La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
|
4222 |
+
"Por favor verifica tu configuración de PHP o contacta a tu web host y "
|
4223 |
+
"pideles que lo habiliten para ti!"
|
4224 |
|
4225 |
+
#: ../includes/mycred-install.php:59
|
4226 |
msgid ""
|
4227 |
"Sorry but your WordPress installation does not reach the minimum "
|
4228 |
"requirements for running myCRED. The following errors were given:"
|
4230 |
"Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
|
4231 |
"mínimos de mycred. Se produce los siguientes errores:"
|
4232 |
|
4233 |
+
#: ../includes/mycred-install.php:248
|
4234 |
msgid "myCRED needs your attention."
|
4235 |
msgstr "myCRED precisa tu atención."
|
4236 |
|
4237 |
+
#: ../includes/mycred-install.php:248
|
4238 |
msgid "Run Setup"
|
4239 |
msgstr "Ejecutar Configuración"
|
4240 |
|
4241 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4242 |
msgid "myCRED Setup"
|
4243 |
msgstr "Instalación de myCRED"
|
4244 |
|
4245 |
+
#: ../includes/mycred-install.php:390
|
4246 |
#, php-format
|
4247 |
msgid "%s Setup"
|
4248 |
msgstr "Configurar %s"
|
4249 |
|
4250 |
+
#: ../includes/mycred-install.php:392
|
4251 |
msgid "Step"
|
4252 |
msgstr "Paso"
|
4253 |
|
4254 |
+
#: ../includes/mycred-install.php:416
|
4255 |
msgid ""
|
4256 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4257 |
"points format, layout and security settings."
|
4259 |
"Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
|
4260 |
"el formato de puntos, disposiciones y configuraciones de seguridad."
|
4261 |
|
4262 |
+
#: ../includes/mycred-install.php:417
|
4263 |
msgid "Begin Setup"
|
4264 |
msgstr "Empezar la Instalación"
|
4265 |
|
4266 |
+
#: ../includes/mycred-install.php:472
|
4267 |
msgid "Select the format you want to use for your points."
|
4268 |
msgstr "Elige el formato que quieres usar para tus puntos."
|
4269 |
|
4270 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4271 |
msgid "Format"
|
4272 |
msgstr "Formato"
|
4273 |
|
4274 |
+
#: ../includes/mycred-install.php:476
|
4275 |
msgid "Separators"
|
4276 |
msgstr "Separadores"
|
4277 |
|
4278 |
+
#: ../includes/mycred-install.php:486
|
4279 |
msgid "Decimals"
|
4280 |
msgstr "Decimales"
|
4281 |
|
4282 |
+
#: ../includes/mycred-install.php:488
|
4283 |
msgid "Use zero for no decimals."
|
4284 |
msgstr "Usa cero para no tener decimales."
|
4285 |
|
4286 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4287 |
msgid "Presentation"
|
4288 |
msgstr "Presentación"
|
4289 |
|
4290 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4291 |
msgid "Name (Singular)"
|
4292 |
msgstr "Nombre (singular)"
|
4293 |
|
4294 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4295 |
msgid "Name (Plural)"
|
4296 |
msgstr "Nombre (plural)"
|
4297 |
|
4298 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4299 |
msgid "Prefix"
|
4300 |
msgstr "Prefijo"
|
4301 |
|
4302 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4303 |
msgid "Suffix"
|
4304 |
msgstr "Sufijo"
|
4305 |
|
4306 |
+
#: ../includes/mycred-install.php:516
|
4307 |
msgid "Cancel Setup"
|
4308 |
msgstr "Cancelar la Instalación"
|
4309 |
|
4310 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4311 |
msgid "Next"
|
4312 |
msgstr "Siguiente"
|
4313 |
|
4314 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4315 |
msgid "Security"
|
4316 |
msgstr "Seguridad"
|
4317 |
|
4318 |
+
#: ../includes/mycred-install.php:551
|
4319 |
msgid "Edit Settings Capability"
|
4320 |
msgstr "Editar la capacidad de las configuraciones"
|
4321 |
|
4322 |
#. is this user's or users (plural)?
|
4323 |
+
#: ../includes/mycred-install.php:555
|
4324 |
msgid "Edit Users %plural% Capability"
|
4325 |
msgstr "Editar la Capacidad de %plural% del Usuario"
|
4326 |
|
4327 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4328 |
msgid "Maximum %plural% payouts"
|
4329 |
msgstr "Desembolso %plural% Máximo"
|
4330 |
|
4331 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4332 |
msgid ""
|
4333 |
"As an added security, you can set the maximum amount a user can gain or "
|
4334 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4340 |
"que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
|
4341 |
"o gastar en tu tienda. Ponga zero para desactivar."
|
4342 |
|
4343 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4344 |
msgid "Excludes"
|
4345 |
msgstr "Excluye"
|
4346 |
|
4347 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4348 |
msgid "Exclude those who can \"Edit Settings\"."
|
4349 |
msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
|
4350 |
|
4351 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4352 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4353 |
msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
|
4354 |
|
4355 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4356 |
msgid "Exclude the following user IDs:"
|
4357 |
msgstr "Excluir a los siguientes IDs de usuarios"
|
4358 |
|
4359 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4360 |
msgid "User Deletions"
|
4361 |
msgstr "Eliminación de Usuarios"
|
4362 |
|
4363 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4364 |
msgid "Delete log entries when user is deleted."
|
4365 |
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
4366 |
|
4367 |
+
#: ../includes/mycred-install.php:604
|
4368 |
msgid "Ready"
|
4369 |
msgstr "Listo"
|
4370 |
|
4371 |
+
#: ../includes/mycred-install.php:605
|
4372 |
msgid "Almost done! Click the button below to finish this setup."
|
4373 |
msgstr ""
|
4374 |
"¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
|
4375 |
"configuración."
|
4376 |
|
4377 |
+
#: ../includes/mycred-install.php:606
|
4378 |
msgid "Install & Run"
|
4379 |
msgstr "Instalar e ejecutar"
|
4380 |
|
4388 |
msgid "entry"
|
4389 |
msgstr "entrada"
|
4390 |
|
4391 |
+
#: ../includes/mycred-log.php:412
|
4392 |
msgid "Go to the first page"
|
4393 |
msgstr "Ir a la primera página"
|
4394 |
|
4395 |
+
#: ../includes/mycred-log.php:419
|
4396 |
msgid "Go to the previous page"
|
4397 |
msgstr "Ir a la página anterior"
|
4398 |
|
4399 |
+
#: ../includes/mycred-log.php:428
|
4400 |
msgid "Current page"
|
4401 |
msgstr "Página corriente"
|
4402 |
|
4403 |
+
#: ../includes/mycred-log.php:434
|
4404 |
#, php-format
|
4405 |
msgctxt "paging"
|
4406 |
msgid "%1$s of %2$s"
|
4407 |
msgstr "%1$s de %2$s"
|
4408 |
|
4409 |
+
#: ../includes/mycred-log.php:438
|
4410 |
msgid "Go to the next page"
|
4411 |
msgstr "Ir a la página siguiente"
|
4412 |
|
4413 |
+
#: ../includes/mycred-log.php:445
|
4414 |
msgid "Go to the last page"
|
4415 |
msgstr "Ir a la última página"
|
4416 |
|
4418 |
msgid "Show all references"
|
4419 |
msgstr "Muestra todas las referencias"
|
4420 |
|
4421 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4422 |
msgid "User ID"
|
4423 |
msgstr "ID del Usuario"
|
4424 |
|
4653 |
"Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
|
4654 |
"maliciosas conozcan detalles de tu configuración!"
|
4655 |
|
4656 |
+
#: ../includes/mycred-shortcodes.php:178
|
4657 |
msgid "Leaderboard is empty."
|
4658 |
msgstr "La Tabla de Clasificación esta vacía"
|
4659 |
|
4660 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4661 |
msgid "Amount missing!"
|
4662 |
msgstr "¡Falta la cantidad!"
|
4663 |
|
4664 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4665 |
msgid "Log Template Missing!"
|
4666 |
msgstr "¡Plantilla de Registro No Encontrado!"
|
4667 |
|
4668 |
+
#: ../includes/mycred-shortcodes.php:515
|
4669 |
msgid "Anchor missing URL!"
|
4670 |
msgstr "¡La Ancla falta el URL!"
|
4671 |
|
4672 |
+
#: ../includes/mycred-shortcodes.php:577
|
4673 |
msgid "User ID missing for recipient."
|
4674 |
msgstr "ID del Usuario falta para el destinatario"
|
4675 |
|
4676 |
+
#: ../includes/mycred-shortcodes.php:632
|
4677 |
msgid "Sent"
|
4678 |
msgstr "Enviado"
|
4679 |
|
4680 |
+
#: ../includes/mycred-shortcodes.php:633
|
4681 |
msgid "Error - Try Again"
|
4682 |
msgstr "Error - Inténtelo de nuevo."
|
4683 |
|
4684 |
+
#: ../includes/mycred-shortcodes.php:742
|
4685 |
msgid "A video ID is required for this shortcode"
|
4686 |
msgstr "Este código corto (shortcode) precisa un ID del video."
|
4687 |
|
4688 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4689 |
msgid "Point types not found."
|
4690 |
+
msgstr "Clase de puntos no encontrado."
|
4691 |
|
4692 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4693 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4694 |
#, php-format
|
4695 |
msgid "You are excluded from using %s."
|
4696 |
+
msgstr "Esta exluido del uso de %s."
|
4697 |
|
4698 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4699 |
msgid "Your balance is too low to use this feature."
|
4700 |
+
msgstr "Tu saldo esta demasiado bajo para usar esta característica."
|
4701 |
|
4702 |
+
#: ../includes/mycred-shortcodes.php:924
|
4703 |
#, php-format
|
4704 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4705 |
+
msgstr "Convertir <span>%s</span> a <span>%s</span>"
|
4706 |
|
4707 |
+
#: ../includes/mycred-shortcodes.php:933
|
4708 |
#, php-format
|
4709 |
msgid "Your current %s balance"
|
4710 |
+
msgstr "Tu Saldo Actual %s"
|
4711 |
|
4712 |
+
#: ../includes/mycred-shortcodes.php:941
|
4713 |
#, php-format
|
4714 |
msgid "Minimum %s"
|
4715 |
+
msgstr "Minimo %s"
|
4716 |
|
4717 |
+
#: ../includes/mycred-shortcodes.php:945
|
4718 |
#, php-format
|
4719 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4720 |
+
msgstr "1 %s = <span class=\"rate\">%s</span> %s"
|
4721 |
|
4722 |
+
#: ../includes/mycred-shortcodes.php:951
|
4723 |
msgid "Exchange"
|
4724 |
+
msgstr "Intercambio"
|
4725 |
|
4726 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4727 |
#, php-format
|
4728 |
msgid "You must exchange at least %s!"
|
4729 |
+
msgstr "Debes intercambiar por lo menos %s!"
|
4730 |
|
4731 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4732 |
#, php-format
|
4733 |
msgid "Exchange from %s"
|
4734 |
+
msgstr "Intercambiar desde %s"
|
4735 |
|
4736 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4737 |
#, php-format
|
4738 |
msgid "Exchange to %s"
|
4739 |
+
msgstr "Intercambiar a %s"
|
4740 |
|
4741 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4742 |
#, php-format
|
4743 |
msgid "You have successfully exchanged %s into %s."
|
4744 |
+
msgstr "Has intercambiado %s a %s con éxito."
|
4745 |
|
4746 |
#: ../includes/mycred-widgets.php:21
|
4747 |
#, php-format
|
4757 |
msgid "My Balance"
|
4758 |
msgstr "Mi Saldo"
|
4759 |
|
4760 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4761 |
msgid "%plural% History"
|
4762 |
msgstr "Historial de %plural%"
|
4763 |
|
4818 |
|
4819 |
#: ../includes/mycred-widgets.php:411
|
4820 |
msgid "Based On"
|
4821 |
+
msgstr "Basado Sobre"
|
4822 |
|
4823 |
#: ../includes/mycred-widgets.php:413
|
4824 |
msgid ""
|
4825 |
"Use \"balance\" to base the leaderboard on your users current balances or use "
|
4826 |
"a specific reference."
|
4827 |
msgstr ""
|
4828 |
+
"Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
|
4829 |
+
"actuales de tus usuarios o utiliza una referencia especifica."
|
4830 |
|
4831 |
#: ../includes/mycred-widgets.php:413
|
4832 |
msgid "Reference Guide"
|
4833 |
+
msgstr "Guia de Referencia"
|
4834 |
|
4835 |
#: ../includes/mycred-widgets.php:418
|
4836 |
msgid "Visible to non-members"
|
4868 |
|
4869 |
#: ../includes/mycred-widgets.php:504
|
4870 |
msgid "Shows the current users balances for each point type."
|
4871 |
+
msgstr "Mostrar el saldo actual del usuario para cada clase de punto (\"point type\")."
|
4872 |
|
4873 |
#: ../includes/mycred-widgets.php:506
|
4874 |
#, php-format
|
5048 |
|
5049 |
#: ../modules/mycred-module-addons.php:147
|
5050 |
msgid "Give your users badges based on their interaction with your website."
|
5051 |
+
msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
|
5052 |
|
5053 |
#: ../modules/mycred-module-addons.php:158
|
5054 |
msgid "Setup recurring payouts or offer / charge interest on user account balances."
|
5197 |
msgid "Current balance"
|
5198 |
msgstr "Saldo Actual"
|
5199 |
|
5200 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5201 |
msgid "Go"
|
5202 |
msgstr "Ir a"
|
5203 |
|
5204 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5205 |
msgid "Show in Profile"
|
5206 |
msgstr "Mostrar en Perfil"
|
5207 |
|
5208 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5209 |
#, php-format
|
5210 |
msgid "%singular% Balance"
|
5211 |
msgstr "%singular% Saldo"
|
5212 |
|
5213 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5214 |
#, php-format
|
5215 |
msgid "Members and visitors can other members %_singular% balance."
|
5216 |
msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
|
5217 |
|
5218 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5219 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5220 |
msgstr ""
|
5221 |
"Ten en cuenta que tambien puedes usar %rank_logo% para mostrar la imagen "
|
5222 |
"principal del rango."
|
5223 |
|
5224 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5225 |
msgid "Members can view each others %_plural% history."
|
5226 |
msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
|
5227 |
|
5228 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5229 |
msgid "Menu Title"
|
5230 |
msgstr "Título de Menú"
|
5231 |
|
5232 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5233 |
msgid "Title shown to me"
|
5234 |
msgstr "Título mostrado a mi"
|
5235 |
|
5236 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5237 |
#, php-format
|
5238 |
msgid "Title shown to others. Use %s to show the first name."
|
5239 |
msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
|
5240 |
|
5241 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5242 |
msgid "Menu Position"
|
5243 |
msgstr "Posición del Menú"
|
5244 |
|
5245 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5246 |
msgid "Current menu positions:"
|
5247 |
msgstr "Posiciones Acuales del Menú"
|
5248 |
|
5249 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5250 |
msgid "History URL slug"
|
5251 |
msgstr "La ficha historial de la URL"
|
5252 |
|
5253 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5254 |
msgid "Do not use empty spaces!"
|
5255 |
msgstr "¡No utilice espacios vacíos!"
|
5256 |
|
5257 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5258 |
msgid "Number of history entries to show"
|
5259 |
msgstr "Numero de entradas de historial a mostrar"
|
5260 |
|
5271 |
#: ../modules/mycred-module-hooks.php:88
|
5272 |
#, php-format
|
5273 |
msgid "Award %_plural% for users joining your website."
|
5274 |
+
msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
|
5275 |
|
5276 |
#: ../modules/mycred-module-hooks.php:94
|
5277 |
#, php-format
|
5278 |
msgid "%plural% for daily visits"
|
5279 |
+
msgstr "%plural% para visitas diarias"
|
5280 |
|
5281 |
#: ../modules/mycred-module-hooks.php:95
|
5282 |
#, php-format
|
5283 |
msgid "Award %_plural% for users visiting your website on a daily basis."
|
5284 |
+
msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
|
5285 |
|
5286 |
#: ../modules/mycred-module-hooks.php:101
|
5287 |
#, php-format
|
5288 |
msgid "%plural% for viewing content"
|
5289 |
+
msgstr "%plural% para ver contenido"
|
5290 |
|
5291 |
#: ../modules/mycred-module-hooks.php:102
|
5292 |
msgid ""
|
5293 |
"Award %_plural% to your users for viewing posts and / or %plural% to your "
|
5294 |
"authors for members viewing their content."
|
5295 |
msgstr ""
|
5296 |
+
"Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
|
5297 |
+
"cuando miembros ven su contenido."
|
5298 |
|
5299 |
#: ../modules/mycred-module-hooks.php:108
|
5300 |
#, php-format
|
5393 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5394 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5395 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5396 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5397 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5398 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5399 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5400 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5429 |
#: ../modules/mycred-module-hooks.php:586
|
5430 |
#, php-format
|
5431 |
msgid "%plural% for viewing Posts"
|
5432 |
+
msgstr "%plural% para ver Entradas"
|
5433 |
|
5434 |
#: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
|
5435 |
#: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
|
5436 |
#: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
|
5437 |
msgid "Member"
|
5438 |
+
msgstr "Miembro"
|
5439 |
|
5440 |
#: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
|
5441 |
#: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
|
5448 |
#: ../modules/mycred-module-hooks.php:611
|
5449 |
#, php-format
|
5450 |
msgid "%plural% for viewing Pages"
|
5451 |
+
msgstr "%plural% para ver Paginas"
|
5452 |
|
5453 |
#: ../modules/mycred-module-hooks.php:673
|
5454 |
#, php-format
|
5455 |
msgid "%plural% for viewing %s"
|
5456 |
+
msgstr "%plural% para Ver %s"
|
5457 |
|
5458 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5459 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5460 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5461 |
msgid "Limit"
|
5462 |
msgstr "Límite"
|
5549 |
msgid "Custom tags: %url%, %title% or %id%."
|
5550 |
msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
|
5551 |
|
5552 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5553 |
msgid "Note!"
|
5554 |
msgstr "¡Atención!"
|
5555 |
|
5565 |
"valor fijado en href. Si estas utilizando esta función para \"compartir\" "
|
5566 |
"contenidos, se recomienda que limites por ID."
|
5567 |
|
5568 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5569 |
msgid "Available Shortcode"
|
5570 |
msgstr "Código corto Disponible"
|
5571 |
|
5572 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5573 |
msgid "Amount to award for viewing videos."
|
5574 |
msgstr "Cantidad a ceder para ver videos."
|
5575 |
|
5576 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5577 |
msgid "Award Logic"
|
5578 |
msgstr "Lógica de Concesión"
|
5579 |
|
5580 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5581 |
#, php-format
|
5582 |
msgid "Select when %_plural% should be awarded or deducted."
|
5583 |
msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
|
5584 |
|
5585 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5586 |
msgid "Play - As soon as video starts playing."
|
5587 |
msgstr "Play - En cuanto el video empiece a reproducirse."
|
5588 |
|
5589 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5590 |
msgid "Full - First when the entire video has played."
|
5591 |
msgstr "Completo - Primero cuando el video entero se haya reproducido."
|
5592 |
|
5593 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5594 |
msgid "Interval - For each x number of seconds watched."
|
5595 |
msgstr "Intervalo - Para cada x numero de segundos vistos."
|
5596 |
|
5597 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5598 |
msgid "Number of seconds"
|
5599 |
msgstr "Numero de segundos"
|
5600 |
|
5601 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5602 |
msgid "Leniency"
|
5603 |
msgstr "Lenidad"
|
5604 |
|
5605 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5606 |
msgid ""
|
5607 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5608 |
"length."
|
5610 |
"El porcentaje máximo medido que un usuario vea puede variar con la duración "
|
5611 |
"actual del video."
|
5612 |
|
5613 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5614 |
msgid ""
|
5615 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5616 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5620 |
"usuario ve una película y a veces la contador puede disminuir por pocos "
|
5621 |
"segundos por falta de buffering o por errores de reproducción."
|
5622 |
|
5623 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5624 |
msgid "Affiliate Program"
|
5625 |
msgstr "Programa de Afiliados"
|
5626 |
|
5627 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5628 |
msgid "Per Day"
|
5629 |
msgstr "Por Día"
|
5630 |
|
5631 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5632 |
msgid "Link"
|
5633 |
msgstr "Enlace"
|
5634 |
|
5635 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5636 |
+
msgid "Visitors Referred"
|
5637 |
+
msgstr ""
|
5638 |
+
|
5639 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5640 |
+
msgid "Signups Referred"
|
5641 |
+
msgstr ""
|
5642 |
+
|
5643 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5644 |
msgid "Referring Visitors"
|
5645 |
msgstr "Referiendo Visitantes"
|
5646 |
|
5647 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5648 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5649 |
msgstr ""
|
5650 |
"El numero de referencias que cada miembro puede hacer. Utilice cero para "
|
5651 |
"ilimitado."
|
5652 |
|
5653 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5654 |
msgid "Referring Signups"
|
5655 |
msgstr "Inscripciones a través de Referencias"
|
5656 |
|
5657 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5658 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5659 |
msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
|
5660 |
|
5661 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5662 |
msgid "Registrations are disabled."
|
5663 |
msgstr "Se han deshabilitado inscripciones."
|
5664 |
|
5665 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5666 |
msgid "Referral Links"
|
5667 |
msgstr "Enlaces Referentes"
|
5668 |
|
5669 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5670 |
msgid "Assign numeric referral IDs to each user."
|
5671 |
msgstr "Asignar ID numerica referente a cada usuario."
|
5672 |
|
5673 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5674 |
msgid "Example"
|
5675 |
msgstr "Ejemplo"
|
5676 |
|
5677 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5678 |
msgid "Assign usernames as IDs for each user."
|
5679 |
msgstr "Asignar los nombres de usuario como ID para cada usuario."
|
5680 |
|
5681 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5682 |
msgid "IP Limit"
|
5683 |
msgstr "Límite de IP"
|
5684 |
|
5685 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5686 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5687 |
msgstr ""
|
5688 |
"El numero de veces que cada IP concede %_plural%. Utilice cero para un "
|
5689 |
"número ilimitado"
|
5690 |
|
5691 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5692 |
msgid "BuddyPress Profile"
|
5693 |
msgstr "Perfil de BuddyPress"
|
5694 |
|
5695 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5696 |
msgid "Insert Link in users Profile"
|
5697 |
msgstr "Insertar enlace en el perfil del usuario"
|
5698 |
|
5699 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5700 |
msgid ""
|
5701 |
"Option to inser the referral link in users profiles. Links will only be "
|
5702 |
"visible to users viewing their own profiles or administrators."
|
5705 |
" Estos enlaces serán visibles a los administradores o a los usuarios cuando "
|
5706 |
"ven a sus propios perfiles."
|
5707 |
|
5708 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5709 |
msgid "Leave empty to hide."
|
5710 |
msgstr "Deje el campo vacío para ocultarlo."
|
5711 |
|
5712 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5713 |
msgid "Description"
|
5714 |
msgstr "Descripción"
|
5715 |
|
5716 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5717 |
msgid "Optional description to insert under the link."
|
5718 |
msgstr "Insertar la descripción opcional debajo del enlace."
|
5719 |
|
5720 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5721 |
msgid "Profile Positioning"
|
5722 |
msgstr "Posicionamiento del Perfil"
|
5723 |
|
5724 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5725 |
msgid ""
|
5726 |
"You can move around the referral link on your users profile by changing the "
|
5727 |
"position. Increase to move up, decrease to move down."
|
5729 |
"Puedes moverte por el enlace de referencia en su perfil los usuarios "
|
5730 |
"cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
|
5731 |
|
5732 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5733 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5734 |
msgstr ""
|
5735 |
"¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
|
5736 |
"en el perfil del usuario!"
|
5737 |
|
5738 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5739 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5740 |
+
msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
|
5741 |
|
5742 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5743 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5744 |
msgid "Access denied for this action"
|
5745 |
msgstr "Acceso denegado para esta acción"
|
5746 |
|
5756 |
msgid "Entry Updated"
|
5757 |
msgstr "Entrada Actualizada"
|
5758 |
|
5759 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5760 |
msgid "Entries"
|
5761 |
msgstr "Entradas"
|
5762 |
|
5763 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5764 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5765 |
msgid "Export"
|
5766 |
msgstr "Exportar"
|
5767 |
|
5808 |
msgstr "Mi Historial de %s"
|
5809 |
|
5810 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5811 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5812 |
msgid "Missing point type"
|
5813 |
+
msgstr "Falta el clase de punto (\"point type\")"
|
5814 |
|
5815 |
+
#: ../modules/mycred-module-settings.php:129
|
5816 |
msgid "Accounts successfully reset"
|
5817 |
msgstr "Las cuentas fueron reiniciadas con éxito."
|
5818 |
|
5819 |
+
#: ../modules/mycred-module-settings.php:175
|
5820 |
msgid "No users found to export"
|
5821 |
msgstr "No se encontro usuarios para exportar"
|
5822 |
|
5823 |
+
#: ../modules/mycred-module-settings.php:331
|
5824 |
#, php-format
|
5825 |
msgid "%s Settings"
|
5826 |
msgstr "Configuración de %s"
|
5827 |
|
5828 |
+
#: ../modules/mycred-module-settings.php:334
|
5829 |
msgid "Adjust your core or add-on settings."
|
5830 |
+
msgstr "Ajustar las configuraciones de tu nucleo o de las extensiones."
|
5831 |
|
5832 |
+
#: ../modules/mycred-module-settings.php:339
|
5833 |
msgid "Core Settings"
|
5834 |
msgstr "Ajustes Basicos"
|
5835 |
|
5836 |
+
#: ../modules/mycred-module-settings.php:341
|
5837 |
msgid "Name"
|
5838 |
msgstr "Nombre"
|
5839 |
|
5840 |
+
#: ../modules/mycred-module-settings.php:346
|
5841 |
#, php-format
|
5842 |
msgid "Accessible though the %singular% template tag."
|
5843 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5844 |
|
5845 |
+
#: ../modules/mycred-module-settings.php:351
|
5846 |
msgid "Accessible though the %plural% template tag."
|
5847 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5848 |
|
5849 |
+
#: ../modules/mycred-module-settings.php:354
|
5850 |
msgid "Tip"
|
5851 |
msgstr "Pista"
|
5852 |
|
5853 |
+
#: ../modules/mycred-module-settings.php:354
|
5854 |
msgid ""
|
5855 |
"Adding an underscore at the beginning of template tag for names will return "
|
5856 |
"them in lowercase. i.e. %_singular%"
|
5858 |
"Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
|
5859 |
"nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
|
5860 |
|
5861 |
+
#: ../modules/mycred-module-settings.php:372
|
5862 |
msgid "Separator"
|
5863 |
msgstr "Separador"
|
5864 |
|
5865 |
+
#: ../modules/mycred-module-settings.php:379
|
5866 |
msgid "Edit Settings"
|
5867 |
msgstr "Editar las Configuraciones"
|
5868 |
|
5869 |
#. or "Verificar la capacidad de"
|
5870 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5871 |
+
#: php:386
|
5872 |
msgid "Capability to check for."
|
5873 |
msgstr "La capacidad que se va a verificar."
|
5874 |
|
5875 |
+
#: ../modules/mycred-module-settings.php:384
|
5876 |
msgid "Edit Users %plural%"
|
5877 |
msgstr "Edita %plural% de Usuarios"
|
5878 |
|
5879 |
+
#: ../modules/mycred-module-settings.php:408
|
5880 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5881 |
msgstr ""
|
5882 |
"Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
|
5883 |
"espacios!"
|
5884 |
|
5885 |
+
#: ../modules/mycred-module-settings.php:428
|
5886 |
msgid "Management"
|
5887 |
msgstr "Gestión"
|
5888 |
|
5889 |
+
#: ../modules/mycred-module-settings.php:430
|
5890 |
msgid "The Log"
|
5891 |
msgstr "El Registro"
|
5892 |
|
5893 |
+
#: ../modules/mycred-module-settings.php:433
|
5894 |
msgid "Table Name"
|
5895 |
msgstr "Nombre de Tabla"
|
5896 |
|
5897 |
+
#: ../modules/mycred-module-settings.php:442
|
5898 |
msgid "Empty Log"
|
5899 |
msgstr "Registro Vacío"
|
5900 |
|
5901 |
+
#: ../modules/mycred-module-settings.php:448
|
5902 |
msgid "User Meta Key"
|
5903 |
msgstr "Clave Meta del Usuario"
|
5904 |
|
5905 |
+
#: ../modules/mycred-module-settings.php:457
|
5906 |
msgid "Set all to zero"
|
5907 |
msgstr "Ajusta todo a cero"
|
5908 |
|
5909 |
+
#: ../modules/mycred-module-settings.php:457
|
5910 |
msgid "CSV Export"
|
5911 |
msgstr "Exportar CSV"
|
5912 |
|
5913 |
+
#: ../modules/mycred-module-settings.php:478
|
5914 |
msgid "Default"
|
5915 |
msgstr "Predefinido"
|
5916 |
|
5917 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5918 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5919 |
msgid "Meta Key"
|
5920 |
msgstr "Clave Meta"
|
5921 |
|
5922 |
+
#: ../modules/mycred-module-settings.php:519
|
5923 |
msgid "Add New Type"
|
5924 |
+
msgstr "Añadir Nuevo Clase"
|
5925 |
|
5926 |
+
#: ../modules/mycred-module-settings.php:524
|
5927 |
msgid "A unique ID for this type."
|
5928 |
+
msgstr "Una ID exclusiva para este clase."
|
5929 |
|
5930 |
+
#: ../modules/mycred-module-settings.php:529
|
5931 |
msgid "Menu and page title."
|
5932 |
msgstr "Título del Menú y de la Página\n"
|
5933 |
|
5934 |
+
#: ../modules/mycred-module-settings.php:532
|
5935 |
msgid "The meta key will define where your users balances are saved."
|
5936 |
msgstr "La clave meta sera definida cuando los saldos de tus usuarios sea guardado."
|
5937 |
|
5938 |
+
#: ../modules/mycred-module-settings.php:553
|
5939 |
msgid "Identify users by"
|
5940 |
msgstr "Identifique usuarios por"
|
5941 |
|
5942 |
+
#: ../modules/mycred-module-settings.php:559
|
5943 |
msgid "User Email"
|
5944 |
msgstr "Email de Usuario"
|
5945 |
|
5946 |
+
#: ../modules/mycred-module-settings.php:560
|
5947 |
msgid "User Login"
|
5948 |
msgstr "Ingreso de Usuario"
|
5949 |
|
5950 |
+
#: ../modules/mycred-module-settings.php:567
|
5951 |
msgid ""
|
5952 |
"Use ID if you intend to use this export as a backup of your current site "
|
5953 |
"while Email is recommended if you want to export to a different site."
|
5955 |
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
5956 |
"Email si deseas exportar la data a otro sitio"
|
5957 |
|
5958 |
+
#: ../modules/mycred-module-settings.php:570
|
5959 |
msgid "Import Log Entry"
|
5960 |
msgstr "Importa la entrada de registro"
|
5961 |
|
5962 |
+
#: ../modules/mycred-module-settings.php:572
|
5963 |
#, php-format
|
5964 |
msgid ""
|
5965 |
"Optional log entry to use if you intend to import this file in a different "
|
5968 |
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
5969 |
"fichero en otra instalación %s."
|
5970 |
|
5971 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5972 |
msgid "BadgeOS"
|
5973 |
msgstr "BadgeOS"
|
5974 |
|
5975 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5976 |
msgid ""
|
5977 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5978 |
"overridden for individual achievement type."
|
5979 |
msgstr ""
|
5980 |
+
"Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
|
5981 |
"Estos ajustes pueden ser anulados para el tipo de logro individual."
|
5982 |
|
5983 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5984 |
#, php-format
|
5985 |
msgid ""
|
5986 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5989 |
"Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
|
5990 |
"de usar este función."
|
5991 |
|
5992 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5993 |
msgid "%plural% to Award"
|
5994 |
msgstr "%plural% a Conceder"
|
5995 |
|
5996 |
#. also "Ponga cero para inhabilitar"
|
5997 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5998 |
msgid "Use zero to disable"
|
5999 |
msgstr "Ponga cero para desactivar"
|
6000 |
|
6001 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
6002 |
msgid "Deduction Log Template"
|
6003 |
msgstr "Plantilla de Registro Descontado"
|
6004 |
|
6005 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
6006 |
#, php-format
|
6007 |
msgid "Default %s for %s"
|
6008 |
msgstr "Predeterminar %s por %s"
|
6009 |
|
6010 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
6011 |
msgid "Use zero to disable users gaining %_plural%"
|
6012 |
msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
|
6013 |
|
6014 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
6015 |
msgid "Default Log template"
|
6016 |
msgstr "Plantilla de Registro Predefinido"
|
6017 |
|
6085 |
#: ../plugins/mycred-hook-bbPress.php:568
|
6086 |
#, php-format
|
6087 |
msgid "%plural% for Reply Deletion"
|
6088 |
+
msgstr "%plural% para Borrar Respuesta"
|
6089 |
|
6090 |
#: ../plugins/mycred-hook-buddypress-gallery.php:19
|
6091 |
msgid "BuddyPress: Gallery Actions"
|
6117 |
#: ../plugins/mycred-hook-buddypress-links.php:247
|
6118 |
#, php-format
|
6119 |
msgid "%plural% for New Links"
|
6120 |
+
msgstr "%plural% por Nuevos Enlaces"
|
6121 |
|
6122 |
#: ../plugins/mycred-hook-buddypress-links.php:260
|
6123 |
#, php-format
|
6445 |
#: ../plugins/mycred-hook-sharethis.php:18
|
6446 |
#, php-format
|
6447 |
msgid "%plural% for Sharing"
|
6448 |
+
msgstr "%plural% para Compartir"
|
6449 |
|
6450 |
#: ../plugins/mycred-hook-sharethis.php:19
|
6451 |
#, php-format
|
6453 |
"Awards %_plural% for users sharing / liking your website content to popular "
|
6454 |
"social media sites."
|
6455 |
msgstr ""
|
6456 |
+
"Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
|
6457 |
+
"web atraves de sitio de los medios de comunicación social."
|
6458 |
|
6459 |
#: ../plugins/mycred-hook-sharethis.php:215
|
6460 |
msgid "Your ShareThis public key is not set."
|
6461 |
+
msgstr "Tu llave publico de ShareThis no ha sido configurado."
|
6462 |
|
6463 |
#: ../plugins/mycred-hook-sharethis.php:220
|
6464 |
msgid "No ShareThis services detected. Please check your installation."
|
6465 |
+
msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
|
6466 |
|
6467 |
#: ../plugins/mycred-hook-simplepress.php:18
|
6468 |
msgid "Simple:Press"
|
6490 |
|
6491 |
#: ../plugins/mycred-hook-woocommerce.php:67
|
6492 |
msgid "Reward with %plural%"
|
6493 |
+
msgstr "Premiar con %plural%"
|
6494 |
|
6495 |
#: ../plugins/mycred-hook-woocommerce.php:197
|
6496 |
msgid "WooCommerce Product Reviews"
|
6497 |
+
msgstr " Revisión del Producto WooCommerce\n"
|
6498 |
|
6499 |
#: ../plugins/mycred-hook-woocommerce.php:198
|
6500 |
#, php-format
|
6501 |
msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
|
6502 |
msgstr ""
|
6503 |
+
"Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
|
6504 |
+
"WooCommerce."
|
6505 |
|
6506 |
#: ../plugins/mycred-hook-wp-favorite-posts.php:18
|
6507 |
msgid "WP Favorite Posts"
|
lang/mycred-es_VE.mo
CHANGED
Binary file
|
lang/mycred-es_VE.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Spanish (Venezuela)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -24,32 +24,32 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: es_VE"
|
26 |
|
27 |
-
#: ../mycred.php:
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
-
#: ../mycred.php:
|
32 |
msgid "%label% History"
|
33 |
msgstr "%lavel% Historial"
|
34 |
|
35 |
-
#: ../mycred.php:
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre"
|
39 |
|
40 |
-
#: ../mycred.php:
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Gente genial"
|
43 |
|
44 |
-
#: ../mycred.php:
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
-
#: includes/mycred-shortcodes.php:
|
49 |
msgid "Processing..."
|
50 |
msgstr "Procesando..."
|
51 |
|
52 |
-
#: ../mycred.php:
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
58 |
"¡Esto no se puede deshacer!"
|
59 |
|
60 |
-
#: ../mycred.php:
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
@@ -65,55 +65,55 @@ msgstr ""
|
|
65 |
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
66 |
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
67 |
|
68 |
-
#: ../mycred.php:
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
72 |
"deshacer!"
|
73 |
|
74 |
-
#: ../mycred.php:
|
75 |
msgid "Done!"
|
76 |
msgstr "¡Realizado!"
|
77 |
|
78 |
-
#: ../mycred.php:
|
79 |
msgid "Close"
|
80 |
msgstr "Cerrar"
|
81 |
|
82 |
-
#: ../mycred.php:
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar usuarios %plural%"
|
85 |
|
86 |
-
#: ../mycred.php:
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo del usuario"
|
89 |
|
90 |
-
#: ../mycred.php:
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Edidar entrada de registro"
|
93 |
|
94 |
-
#: ../mycred.php:
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
98 |
"deshacer!"
|
99 |
|
100 |
-
#: ../mycred.php:
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Entrada de registro actualizado"
|
103 |
|
104 |
-
#: ../mycred.php:
|
105 |
-
#: notices.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Configurar"
|
109 |
|
110 |
-
#: ../mycred.php:
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configuraciones"
|
115 |
|
116 |
-
#: ../mycred.php:
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
@@ -153,10 +153,10 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
|
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
157 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
160 |
msgid "Select"
|
161 |
msgstr "Seleccionar"
|
162 |
|
@@ -256,7 +256,7 @@ msgid "Requirements"
|
|
256 |
msgstr ""
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
260 |
msgid "Users"
|
261 |
msgstr "Usuarios"
|
262 |
|
@@ -339,22 +339,22 @@ msgstr ""
|
|
339 |
|
340 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
341 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
342 |
-
#: modules/mycred-module-buddypress.php:
|
343 |
msgid "Do not show"
|
344 |
msgstr "No Mostrar"
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
347 |
-
#: buddypress.php:
|
348 |
msgid "Include in Profile Header"
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
352 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
353 |
msgid "Include under the \"Profile\" tab"
|
354 |
msgstr "Incluir debajo de la pestaña del \"Perfil\""
|
355 |
|
356 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
357 |
-
#: buddypress.php:
|
358 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
359 |
msgstr ""
|
360 |
|
@@ -423,7 +423,7 @@ msgstr ""
|
|
423 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
424 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
425 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
426 |
-
#: modules/mycred-module-settings.php:
|
427 |
msgid "Access Denied"
|
428 |
msgstr "Acceso Denegado"
|
429 |
|
@@ -576,8 +576,8 @@ msgstr "Desembolso"
|
|
576 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
577 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
578 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
579 |
-
#: modules/mycred-module-hooks.php:
|
580 |
-
#: plugins/mycred-hook-badgeOS.php:
|
581 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
582 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
583 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -674,15 +674,15 @@ msgstr "Pagar a los Usuarios"
|
|
674 |
|
675 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
676 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
677 |
-
#: creds.php:
|
678 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
679 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
680 |
-
#: includes/mycred-shortcodes.php:
|
681 |
msgid "Amount"
|
682 |
msgstr "Cantidad"
|
683 |
|
684 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
685 |
-
#: modules/mycred-module-hooks.php:
|
686 |
msgid "Interval"
|
687 |
msgstr "Interval"
|
688 |
|
@@ -734,7 +734,7 @@ msgid "Edit Pending Payment"
|
|
734 |
msgstr ""
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
737 |
-
#: addon-buy-creds.php:
|
738 |
msgid "No pending payments found"
|
739 |
msgstr ""
|
740 |
|
@@ -743,23 +743,23 @@ msgid "Not found in Trash"
|
|
743 |
msgstr ""
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
746 |
-
#: addon-buy-creds.php:
|
747 |
msgid "Transaction ID"
|
748 |
msgstr "Identificación de la Transacción"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
751 |
-
#: addon-buy-creds.php:
|
752 |
msgid "Buyer"
|
753 |
msgstr ""
|
754 |
|
755 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
756 |
-
#: addon-buy-creds.php:
|
757 |
#: gateway.php:563
|
758 |
msgid "Cost"
|
759 |
msgstr "Costo"
|
760 |
|
761 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
762 |
-
#: addon-buy-creds.php:
|
763 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
764 |
msgid "Gateway"
|
765 |
msgstr "Pasarela"
|
@@ -810,7 +810,7 @@ msgstr ""
|
|
810 |
|
811 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
812 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
813 |
-
#: module-settings.php:
|
814 |
msgid "Point Types"
|
815 |
msgstr "Tipo de Puntos"
|
816 |
|
@@ -863,7 +863,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
863 |
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
864 |
|
865 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
866 |
-
#: hooks.php:
|
867 |
msgid "Available Shortcodes"
|
868 |
msgstr "Códigos cortos Disponibles"
|
869 |
|
@@ -890,7 +890,7 @@ msgid "%s Payment Gateways"
|
|
890 |
msgstr "%s Pasarelas de Pago"
|
891 |
|
892 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
893 |
-
#: addon-buy-creds.php:
|
894 |
msgid "buyCRED Settings"
|
895 |
msgstr "Configuraciones de compraCRED"
|
896 |
|
@@ -916,7 +916,7 @@ msgid "Enable for test purchases."
|
|
916 |
msgstr "Habilitar para compras de prueba."
|
917 |
|
918 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
919 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
920 |
msgid "Update Settings"
|
921 |
msgstr "Actualizar Configuraciones"
|
922 |
|
@@ -924,103 +924,103 @@ msgstr "Actualizar Configuraciones"
|
|
924 |
msgid "More Gateways"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
928 |
#: 634
|
929 |
msgid "Date"
|
930 |
msgstr "Fecha"
|
931 |
|
932 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
933 |
msgid "Payed"
|
934 |
msgstr "Pagado"
|
935 |
|
936 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
937 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
938 |
msgstr "Registro de Compras de <strong>compra</strong>CRED"
|
939 |
|
940 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
941 |
#: booking/mycred-eventespresso3.php:367
|
942 |
msgid "Gateway Settings"
|
943 |
msgstr "Configuraciones de la Pasarela de Pago"
|
944 |
|
945 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
946 |
-
#: content/myCRED-addon-sell-content.php:
|
947 |
msgid "No purchases found"
|
948 |
msgstr "No se encontro ninguna compra"
|
949 |
|
950 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
951 |
-
#: addon-buy-creds.php:
|
952 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
953 |
msgstr ""
|
954 |
"Esta extensión (add-on) debe ser configurado antes de poder usar este código "
|
955 |
"corto (shortcode)."
|
956 |
|
957 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
958 |
-
#: addon-buy-creds.php:
|
959 |
msgid "No gateways installed."
|
960 |
msgstr "Ningun pasarela de pago instalado."
|
961 |
|
962 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
963 |
-
#: addon-buy-creds.php:
|
964 |
msgid "Gateway does not exist."
|
965 |
msgstr "Puerta de enlace no existe."
|
966 |
|
967 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
968 |
msgid "Yourself"
|
969 |
msgstr "Tu mismo"
|
970 |
|
971 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
972 |
msgid "No active gateways found."
|
973 |
msgstr "No se encuentra ningun puerta de enlace activo."
|
974 |
|
975 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
976 |
msgid "The selected gateway is not active."
|
977 |
msgstr "La puerta de enlace seleccionada no esta activo."
|
978 |
|
979 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
980 |
#, php-format
|
981 |
msgid "Buy with %gateway%"
|
982 |
msgstr "Compra con %gateway%"
|
983 |
|
984 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
985 |
#: content/myCRED-addon-sell-content.php:44
|
986 |
msgid "Buy Now"
|
987 |
msgstr "Compra Ahora"
|
988 |
|
989 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
990 |
msgid "No users found"
|
991 |
msgstr "Ningun Usuario Encontrado"
|
992 |
|
993 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
994 |
msgid "To"
|
995 |
msgstr "A"
|
996 |
|
997 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
998 |
msgid "Select Amount"
|
999 |
msgstr "Selecciona la Cantidad"
|
1000 |
|
1001 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1002 |
msgid "min."
|
1003 |
msgstr "min."
|
1004 |
|
1005 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1006 |
msgid "Select Gateway"
|
1007 |
msgstr "Selecciona la Pasarela de Pago"
|
1008 |
|
1009 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1010 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1011 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1012 |
#: php:35
|
1013 |
msgid "Pay Now"
|
1014 |
msgstr "Pagar Ahora"
|
1015 |
|
1016 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1017 |
-
#: php:
|
1018 |
msgid "Cancel"
|
1019 |
msgstr "Cancelar"
|
1020 |
|
1021 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1022 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1023 |
-
#: module-settings.php:
|
1024 |
msgid "Actions"
|
1025 |
msgstr "Acciones"
|
1026 |
|
@@ -1166,55 +1166,55 @@ msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
|
|
1166 |
msgid "The following information will be sent to the gateway"
|
1167 |
msgstr "La información siguiente sera transmitido a la pasarela de pago"
|
1168 |
|
1169 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1170 |
msgid "Outside US"
|
1171 |
msgstr "Fuera de los EEUU"
|
1172 |
|
1173 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1174 |
msgid "January"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1178 |
msgid "February"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1182 |
msgid "March"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1186 |
msgid "April"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1190 |
msgid "May"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1194 |
msgid "June"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1198 |
msgid "July"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1202 |
msgid "August"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1206 |
msgid "September"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1210 |
msgid "October"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1214 |
msgid "November"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1218 |
msgid "December"
|
1219 |
msgstr ""
|
1220 |
|
@@ -1469,7 +1469,7 @@ msgstr "Página de Pago"
|
|
1469 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1470 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1471 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1472 |
-
#: modules/mycred-module-hooks.php:
|
1473 |
msgid "Title"
|
1474 |
msgstr "Titulo"
|
1475 |
|
@@ -1676,7 +1676,7 @@ msgid "not yet used"
|
|
1676 |
msgstr "todavia no utilizado"
|
1677 |
|
1678 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1679 |
-
#: php:
|
1680 |
msgid "Total"
|
1681 |
msgstr "Total"
|
1682 |
|
@@ -1854,7 +1854,7 @@ msgid "Apply Coupon"
|
|
1854 |
msgstr "Aplica el Cupón"
|
1855 |
|
1856 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1857 |
-
#: notices/myCRED-addon-email-notices.php:
|
1858 |
msgid "Email Notice"
|
1859 |
msgstr "Aviso por Correo Electrónico"
|
1860 |
|
@@ -2049,17 +2049,17 @@ msgstr ""
|
|
2049 |
"pueden ser anulado individualmente cuando se edita correos electrónicos."
|
2050 |
|
2051 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2052 |
-
#: notices/myCRED-addon-email-notices.php:
|
2053 |
msgid "Email Settings"
|
2054 |
msgstr "Configuracion de Correo Electrónico"
|
2055 |
|
2056 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2057 |
-
#: notices/myCRED-addon-email-notices.php:
|
2058 |
msgid "Senders Name:"
|
2059 |
msgstr "Nombre del Remitente"
|
2060 |
|
2061 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2062 |
-
#: notices/myCRED-addon-email-notices.php:
|
2063 |
msgid "Senders Email:"
|
2064 |
msgstr "Correo Electrónico del Remitente:"
|
2065 |
|
@@ -2083,140 +2083,140 @@ msgstr "Estilo de Correo Electrónico Predefinido"
|
|
2083 |
msgid "Ignored if HTML is not allowed in emails."
|
2084 |
msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
|
2085 |
|
2086 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2087 |
-
#: notices/myCRED-addon-email-notices.php:
|
2088 |
msgid "Email Subject"
|
2089 |
msgstr "Asunto del Correo Electrónico"
|
2090 |
|
2091 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2092 |
msgid "Status"
|
2093 |
msgstr "Estatus"
|
2094 |
|
2095 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2096 |
msgid "Not Active"
|
2097 |
msgstr "No esta Activo"
|
2098 |
|
2099 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2100 |
#, php-format
|
2101 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2102 |
msgstr "Programada:<br /><strong>%1$s</strong>"
|
2103 |
|
2104 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2105 |
msgid "Active"
|
2106 |
msgstr "Activo"
|
2107 |
|
2108 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2109 |
#, php-format
|
2110 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2111 |
msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
msgid "Email is sent when"
|
2115 |
msgstr "el Correo Electrónico se envia cuando"
|
2116 |
|
2117 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2118 |
msgid "Missing instance for this notice!"
|
2119 |
msgstr "¡Falta una instancia para este aviso!"
|
2120 |
|
2121 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2122 |
-
#: notices/myCRED-addon-email-notices.php:
|
2123 |
-
#: addon-email-notices.php:
|
2124 |
msgid "Sent To"
|
2125 |
msgstr "Enviado A:"
|
2126 |
|
2127 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2128 |
-
#: notices/myCRED-addon-email-notices.php:
|
2129 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2130 |
msgid "User"
|
2131 |
msgstr "Usuario"
|
2132 |
|
2133 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2134 |
-
#: notices/myCRED-addon-email-notices.php:
|
2135 |
msgid "Administrator"
|
2136 |
msgstr "Administrador"
|
2137 |
|
2138 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2139 |
msgid "Both Administrator and User"
|
2140 |
msgstr "Tanto Administrador como Usuario"
|
2141 |
|
2142 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2143 |
msgid "Available Template Tags"
|
2144 |
msgstr "Etiquetas (tags) de Plantilla Disponibles"
|
2145 |
|
2146 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2147 |
msgid "Email Header"
|
2148 |
msgstr "Encabezado del Correo Electrónico"
|
2149 |
|
2150 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2151 |
msgid "Send this email notice when..."
|
2152 |
msgstr "Envia este aviso por correo electrónico cuando..."
|
2153 |
|
2154 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2155 |
msgid "Recipient:"
|
2156 |
msgstr "Destinatario:"
|
2157 |
|
2158 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2159 |
msgid "Both"
|
2160 |
msgstr "Ambos"
|
2161 |
|
2162 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2163 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2164 |
-
#: settings.php:
|
2165 |
-
#: module-settings.php:
|
2166 |
msgid "Label"
|
2167 |
msgstr "Etiqueta"
|
2168 |
|
2169 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2170 |
msgid "Reply-To Email:"
|
2171 |
msgstr "Responder-A Correo Electrónico:"
|
2172 |
|
2173 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2174 |
msgid "Save"
|
2175 |
msgstr "Guardar"
|
2176 |
|
2177 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2178 |
msgid "CSS Styling"
|
2179 |
msgstr "Estilo CSS"
|
2180 |
|
2181 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2182 |
msgid "Site Related"
|
2183 |
msgstr "Relacionado al Sitio"
|
2184 |
|
2185 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2186 |
msgid "Your websites title"
|
2187 |
msgstr "Titulo de tu pagina web"
|
2188 |
|
2189 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2190 |
msgid "Your websites address"
|
2191 |
msgstr "Dirección de tu pagina web"
|
2192 |
|
2193 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2194 |
msgid "Your websites tagline (description)"
|
2195 |
msgstr "La descripción de tu sitio web (lema o eslogan)"
|
2196 |
|
2197 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2198 |
msgid "Your websites admin email"
|
2199 |
msgstr "El correo electrónico de admin para tu pagina web"
|
2200 |
|
2201 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2202 |
msgid "Total number of blog members"
|
2203 |
msgstr "Número total de miembros del blog"
|
2204 |
|
2205 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2206 |
-
#: notices/myCRED-addon-email-notices.php:
|
2207 |
-
#: addon-email-notices.php:
|
2208 |
msgid "Email Notice Updated."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2212 |
msgid "Email Notice Activated"
|
2213 |
msgstr "Notificación atraves de Correo Electrónico Activado"
|
2214 |
|
2215 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2216 |
msgid "Email Notice Saved"
|
2217 |
msgstr "Aviso por Correo Electrónico Guardado"
|
2218 |
|
2219 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2220 |
msgid ""
|
2221 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2222 |
"are not yet ready to use this email notice!"
|
@@ -2224,28 +2224,28 @@ msgstr ""
|
|
2224 |
"¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
|
2225 |
"si aun no estás listo para utilizar este aviso por email!"
|
2226 |
|
2227 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2228 |
#, php-format
|
2229 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2230 |
msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
|
2231 |
|
2232 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2233 |
msgid "This email notice is active."
|
2234 |
msgstr "Esta notificación de correo electrónico esta activada."
|
2235 |
|
2236 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2237 |
msgid "Settings saved."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2241 |
msgid "Unsubscribe"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2245 |
msgid "There are no email notifications yet."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2249 |
msgid "Save Changes"
|
2250 |
msgstr ""
|
2251 |
|
@@ -2294,7 +2294,7 @@ msgstr "Pagado"
|
|
2294 |
|
2295 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2296 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2297 |
-
#: 52 ../includes/mycred-network.php:53
|
2298 |
msgid "myCRED"
|
2299 |
msgstr "myCRED"
|
2300 |
|
@@ -2375,7 +2375,7 @@ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
|
|
2375 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2376 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2377 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2378 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2379 |
msgid "Exchange Rate"
|
2380 |
msgstr "Tipo de Cambio"
|
2381 |
|
@@ -2685,7 +2685,7 @@ msgstr "El titulo a mostrar en la factura y en los registros."
|
|
2685 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2686 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2687 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2688 |
-
#: sell-content.php:
|
2689 |
msgid "Button Label"
|
2690 |
msgstr "Eqiqueta Asignada al Botón"
|
2691 |
|
@@ -2699,7 +2699,7 @@ msgstr "Botón de Pago"
|
|
2699 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2700 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2701 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2702 |
-
#: sell-content.php:
|
2703 |
msgid "Price"
|
2704 |
msgstr "Precio"
|
2705 |
|
@@ -2808,8 +2808,8 @@ msgid "Reject"
|
|
2808 |
msgstr "Rechazar"
|
2809 |
|
2810 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2811 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2812 |
-
#: modules/mycred-module-settings.php:
|
2813 |
msgid "Delete"
|
2814 |
msgstr "Borrar"
|
2815 |
|
@@ -2936,7 +2936,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2936 |
msgstr "Utilice el Estilo CSS incluido para notificaciones."
|
2937 |
|
2938 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2939 |
-
#: module-buddypress.php:
|
2940 |
msgid "Template"
|
2941 |
msgstr "Plantilla"
|
2942 |
|
@@ -3221,7 +3221,7 @@ msgstr ""
|
|
3221 |
"y/o en el frente si los rangos son \"Público\""
|
3222 |
|
3223 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3224 |
-
#: php:
|
3225 |
msgid "Do not show."
|
3226 |
msgstr "No mostrar."
|
3227 |
|
@@ -3271,9 +3271,9 @@ msgid "No users found with this rank"
|
|
3271 |
msgstr "Ningun usuario encontrado con este rango"
|
3272 |
|
3273 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3274 |
-
#: shortcodes.php:
|
3275 |
-
#: shortcodes.php:
|
3276 |
-
#: shortcodes.php:
|
3277 |
msgid "error"
|
3278 |
msgstr "error"
|
3279 |
|
@@ -3401,40 +3401,40 @@ msgstr "Plantilla de registros para Ventas"
|
|
3401 |
msgid "%s Sell This"
|
3402 |
msgstr "%s Vende Esto"
|
3403 |
|
3404 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3405 |
#, php-format
|
3406 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3407 |
msgstr ""
|
3408 |
"%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
|
3409 |
"esta característica técnica."
|
3410 |
|
3411 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3412 |
msgid "Setup add-on"
|
3413 |
msgstr "Configurar Extensión"
|
3414 |
|
3415 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3416 |
msgid "Lets do it"
|
3417 |
msgstr "Vamos a hacerlo."
|
3418 |
|
3419 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3420 |
#, php-format
|
3421 |
msgid "Enable sale of this %s"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3425 |
msgid "Purchase expires after"
|
3426 |
msgstr "Compra caduca despues de"
|
3427 |
|
3428 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3429 |
msgid "Thank you for your purchase!"
|
3430 |
msgstr "¡Gracias por su compra!"
|
3431 |
|
3432 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3433 |
-
#: content/myCRED-addon-sell-content.php:
|
3434 |
msgid "The following content is set for sale:"
|
3435 |
msgstr "El siguiente contenido esta listo para la venta:"
|
3436 |
|
3437 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3438 |
msgid "Purchased"
|
3439 |
msgstr "Comprado"
|
3440 |
|
@@ -3447,7 +3447,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3447 |
msgstr "Has excedido tu limite de transferencia de %limit%."
|
3448 |
|
3449 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3450 |
-
#: php:
|
3451 |
msgid "Transfer"
|
3452 |
msgstr "Transferir"
|
3453 |
|
@@ -3486,7 +3486,7 @@ msgstr ""
|
|
3486 |
"transferencias hasta que se haga esto."
|
3487 |
|
3488 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3489 |
-
#: php:
|
3490 |
msgid "Insufficient Funds. Please try a lower amount."
|
3491 |
msgstr ""
|
3492 |
|
@@ -3869,282 +3869,282 @@ msgstr "Resultados de la Búsqueda"
|
|
3869 |
msgid "My Entire Log"
|
3870 |
msgstr "Mi Registro Entero"
|
3871 |
|
3872 |
-
#: ../includes/mycred-functions.php:
|
3873 |
msgid "ref empty"
|
3874 |
msgstr "ref vacío"
|
3875 |
|
3876 |
-
#: ../includes/mycred-functions.php:
|
3877 |
msgid "incorrect user id format"
|
3878 |
msgstr "Formato incorrecto para id del usuario"
|
3879 |
|
3880 |
-
#: ../includes/mycred-functions.php:
|
3881 |
msgid "incorrect unix timestamp (from):"
|
3882 |
msgstr "erroneo marca de tiempo de unix (desde):"
|
3883 |
|
3884 |
-
#: ../includes/mycred-functions.php:
|
3885 |
msgid "incorrect unix timestamp (to):"
|
3886 |
msgstr "erroneo marca de tiempo de unix (a):"
|
3887 |
|
3888 |
-
#: ../includes/mycred-functions.php:
|
3889 |
msgid "Website Registration"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: ../includes/mycred-functions.php:
|
3893 |
msgid "Website Visit"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: ../includes/mycred-functions.php:
|
3897 |
msgid "Viewing Content (Member)"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: ../includes/mycred-functions.php:
|
3901 |
msgid "Viewing Content (Author)"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: ../includes/mycred-functions.php:
|
3905 |
msgid "Logging in"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: ../includes/mycred-functions.php:
|
3909 |
msgid "Publishing Content"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: ../includes/mycred-functions.php:
|
3913 |
msgid "Approved Comment"
|
3914 |
msgstr "Comentario Aprobado"
|
3915 |
|
3916 |
-
#: ../includes/mycred-functions.php:
|
3917 |
msgid "Unapproved Comment"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: ../includes/mycred-functions.php:
|
3921 |
msgid "SPAM Comment"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: ../includes/mycred-functions.php:
|
3925 |
msgid "Deleted Comment"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: ../includes/mycred-functions.php:
|
3929 |
msgid "Link Click"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: ../includes/mycred-functions.php:
|
3933 |
msgid "Watching Video"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: ../includes/mycred-functions.php:
|
3937 |
msgid "Visitor Referral"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: ../includes/mycred-functions.php:
|
3941 |
msgid "Signup Referral"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: ../includes/mycred-functions.php:
|
3945 |
msgid "New Profile Update"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: ../includes/mycred-functions.php:
|
3949 |
msgid "Avatar Upload"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: ../includes/mycred-functions.php:
|
3953 |
msgid "New Friendship"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: ../includes/mycred-functions.php:
|
3957 |
msgid "Ended Friendship"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: ../includes/mycred-functions.php:
|
3961 |
msgid "New Profile Comment"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: ../includes/mycred-functions.php:
|
3965 |
msgid "Profile Comment Deletion"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: ../includes/mycred-functions.php:
|
3969 |
msgid "New Message"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: ../includes/mycred-functions.php:
|
3973 |
msgid "Sending Gift"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: ../includes/mycred-functions.php:
|
3977 |
msgid "New Group"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: ../includes/mycred-functions.php:
|
3981 |
msgid "Deleted Group"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: ../includes/mycred-functions.php:
|
3985 |
msgid "New Group Forum Topic"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: ../includes/mycred-functions.php:
|
3989 |
msgid "Edit Group Forum Topic"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: ../includes/mycred-functions.php:
|
3993 |
msgid "New Group Forum Post"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: ../includes/mycred-functions.php:
|
3997 |
msgid "Edit Group Forum Post"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: ../includes/mycred-functions.php:
|
4001 |
msgid "Joining Group"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: ../includes/mycred-functions.php:
|
4005 |
msgid "Leaving Group"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: ../includes/mycred-functions.php:
|
4009 |
msgid "New Group Avatar"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: ../includes/mycred-functions.php:
|
4013 |
msgid "New Group Comment"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: ../includes/mycred-functions.php:
|
4017 |
#: php:166
|
4018 |
msgid "Photo Upload"
|
4019 |
msgstr "Subir Foto"
|
4020 |
|
4021 |
-
#: ../includes/mycred-functions.php:
|
4022 |
#: php:176
|
4023 |
msgid "Video Upload"
|
4024 |
msgstr "Subir Video"
|
4025 |
|
4026 |
-
#: ../includes/mycred-functions.php:
|
4027 |
#: php:186
|
4028 |
msgid "Music Upload"
|
4029 |
msgstr "Subir Música"
|
4030 |
|
4031 |
-
#: ../includes/mycred-functions.php:
|
4032 |
msgid "New Link"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: ../includes/mycred-functions.php:
|
4036 |
msgid "Link Voting"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: ../includes/mycred-functions.php:
|
4040 |
msgid "Link Update"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: ../includes/mycred-functions.php:
|
4044 |
msgid "New Forum (bbPress)"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: ../includes/mycred-functions.php:
|
4048 |
msgid "New Forum Topic (bbPress)"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: ../includes/mycred-functions.php:
|
4052 |
msgid "Favorited Topic (bbPress)"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: ../includes/mycred-functions.php:
|
4056 |
msgid "New Topic Reply (bbPress)"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: ../includes/mycred-functions.php:
|
4060 |
msgid "Form Submission (Contact Form 7)"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: ../includes/mycred-functions.php:
|
4064 |
msgid "Form Submission (Gravity Form)"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: ../includes/mycred-functions.php:
|
4068 |
msgid "New Forum Topic (SimplePress)"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: ../includes/mycred-functions.php:
|
4072 |
msgid "New Forum Post (SimplePress)"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: ../includes/mycred-functions.php:
|
4076 |
msgid "Poll Voting"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: ../includes/mycred-functions.php:
|
4080 |
msgid "Sending an Invite"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: ../includes/mycred-functions.php:
|
4084 |
msgid "Accepting an Invite"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: ../includes/mycred-functions.php:
|
4088 |
msgid "Banking Payout"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: ../includes/mycred-functions.php:
|
4092 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: ../includes/mycred-functions.php:
|
4096 |
msgid "buyCRED Purchase (Skrill)"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: ../includes/mycred-functions.php:
|
4100 |
msgid "buyCRED Purchase (Zombaio)"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: ../includes/mycred-functions.php:
|
4104 |
msgid "buyCRED Purchase (NETBilling)"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: ../includes/mycred-functions.php:
|
4108 |
msgid "buyCRED Purchase (BitPay)"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: ../includes/mycred-functions.php:
|
4112 |
msgid "Coupon Purchase"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: ../includes/mycred-functions.php:
|
4116 |
msgid "Store Purchase (WooCommerce)"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: ../includes/mycred-functions.php:
|
4120 |
msgid "Store Purchase (MarketPress)"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: ../includes/mycred-functions.php:
|
4124 |
msgid "Store Purchase (WP E-Commerce)"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: ../includes/mycred-functions.php:
|
4128 |
msgid "Event Payment (Event Espresso)"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: ../includes/mycred-functions.php:
|
4132 |
msgid "Event Sale (Event Espresso)"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: ../includes/mycred-functions.php:
|
4136 |
msgid "Event Payment (Events Manager)"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: ../includes/mycred-functions.php:
|
4140 |
msgid "Event Sale (Events Manager)"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: ../includes/mycred-functions.php:
|
4144 |
msgid "Content Purchase / Sale"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: ../includes/mycred-functions.php:
|
4148 |
msgid "Manual Adjustment by Admin"
|
4149 |
msgstr ""
|
4150 |
|
@@ -4192,14 +4192,14 @@ msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
|
|
4192 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4193 |
msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
|
4194 |
|
4195 |
-
#: ../includes/mycred-install.php:
|
4196 |
msgid ""
|
4197 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4198 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4199 |
"for you!"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: ../includes/mycred-install.php:
|
4203 |
msgid ""
|
4204 |
"Sorry but your WordPress installation does not reach the minimum "
|
4205 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4207,28 +4207,28 @@ msgstr ""
|
|
4207 |
"Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
|
4208 |
"mínimos de mycred. Se produce los siguientes errores:"
|
4209 |
|
4210 |
-
#: ../includes/mycred-install.php:
|
4211 |
msgid "myCRED needs your attention."
|
4212 |
msgstr "myCRED precisa tu atención."
|
4213 |
|
4214 |
-
#: ../includes/mycred-install.php:
|
4215 |
msgid "Run Setup"
|
4216 |
msgstr "Ejecutar Configuración"
|
4217 |
|
4218 |
-
#: ../includes/mycred-install.php:
|
4219 |
msgid "myCRED Setup"
|
4220 |
msgstr "Instalación de myCRED"
|
4221 |
|
4222 |
-
#: ../includes/mycred-install.php:
|
4223 |
#, php-format
|
4224 |
msgid "%s Setup"
|
4225 |
msgstr "Configurar %s"
|
4226 |
|
4227 |
-
#: ../includes/mycred-install.php:
|
4228 |
msgid "Step"
|
4229 |
msgstr "Paso"
|
4230 |
|
4231 |
-
#: ../includes/mycred-install.php:
|
4232 |
msgid ""
|
4233 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4234 |
"points format, layout and security settings."
|
@@ -4236,76 +4236,76 @@ msgstr ""
|
|
4236 |
"Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
|
4237 |
"el formato de puntos, disposiciones y configuraciones de seguridad."
|
4238 |
|
4239 |
-
#: ../includes/mycred-install.php:
|
4240 |
msgid "Begin Setup"
|
4241 |
msgstr "Empezar la Instalación"
|
4242 |
|
4243 |
-
#: ../includes/mycred-install.php:
|
4244 |
msgid "Select the format you want to use for your points."
|
4245 |
msgstr "Elige el formato que quieres usar para tus puntos."
|
4246 |
|
4247 |
-
#: ../includes/mycred-install.php:
|
4248 |
msgid "Format"
|
4249 |
msgstr "Formato"
|
4250 |
|
4251 |
-
#: ../includes/mycred-install.php:
|
4252 |
msgid "Separators"
|
4253 |
msgstr "Separadores"
|
4254 |
|
4255 |
-
#: ../includes/mycred-install.php:
|
4256 |
msgid "Decimals"
|
4257 |
msgstr "Decimales"
|
4258 |
|
4259 |
-
#: ../includes/mycred-install.php:
|
4260 |
msgid "Use zero for no decimals."
|
4261 |
msgstr "Usa cero para no tener decimales."
|
4262 |
|
4263 |
-
#: ../includes/mycred-install.php:
|
4264 |
msgid "Presentation"
|
4265 |
msgstr "Presentación"
|
4266 |
|
4267 |
-
#: ../includes/mycred-install.php:
|
4268 |
msgid "Name (Singular)"
|
4269 |
msgstr "Nombre (singular)"
|
4270 |
|
4271 |
-
#: ../includes/mycred-install.php:
|
4272 |
msgid "Name (Plural)"
|
4273 |
msgstr "Nombre (plural)"
|
4274 |
|
4275 |
-
#: ../includes/mycred-install.php:
|
4276 |
msgid "Prefix"
|
4277 |
msgstr "Prefijo"
|
4278 |
|
4279 |
-
#: ../includes/mycred-install.php:
|
4280 |
msgid "Suffix"
|
4281 |
msgstr "Sufijo"
|
4282 |
|
4283 |
-
#: ../includes/mycred-install.php:
|
4284 |
msgid "Cancel Setup"
|
4285 |
msgstr "Cancelar la Instalación"
|
4286 |
|
4287 |
-
#: ../includes/mycred-install.php:
|
4288 |
msgid "Next"
|
4289 |
msgstr "Siguiente"
|
4290 |
|
4291 |
-
#: ../includes/mycred-install.php:
|
4292 |
msgid "Security"
|
4293 |
msgstr "Seguridad"
|
4294 |
|
4295 |
-
#: ../includes/mycred-install.php:
|
4296 |
msgid "Edit Settings Capability"
|
4297 |
msgstr "Editar la capacidad de las configuraciones"
|
4298 |
|
4299 |
#. is this user's or users (plural)?
|
4300 |
-
#: ../includes/mycred-install.php:
|
4301 |
msgid "Edit Users %plural% Capability"
|
4302 |
msgstr "Editar la Capacidad de %plural% del Usuario"
|
4303 |
|
4304 |
-
#: ../includes/mycred-install.php:
|
4305 |
msgid "Maximum %plural% payouts"
|
4306 |
msgstr "Desembolso %plural% Máximo"
|
4307 |
|
4308 |
-
#: ../includes/mycred-install.php:
|
4309 |
msgid ""
|
4310 |
"As an added security, you can set the maximum amount a user can gain or "
|
4311 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4317,41 +4317,41 @@ msgstr ""
|
|
4317 |
"que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
|
4318 |
"o gastar en tu tienda. Ponga zero para desactivar."
|
4319 |
|
4320 |
-
#: ../includes/mycred-install.php:
|
4321 |
msgid "Excludes"
|
4322 |
msgstr "Excluye"
|
4323 |
|
4324 |
-
#: ../includes/mycred-install.php:
|
4325 |
msgid "Exclude those who can \"Edit Settings\"."
|
4326 |
msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
|
4327 |
|
4328 |
-
#: ../includes/mycred-install.php:
|
4329 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4330 |
msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
|
4331 |
|
4332 |
-
#: ../includes/mycred-install.php:
|
4333 |
msgid "Exclude the following user IDs:"
|
4334 |
msgstr "Excluir a los siguientes IDs de usuarios"
|
4335 |
|
4336 |
-
#: ../includes/mycred-install.php:
|
4337 |
msgid "User Deletions"
|
4338 |
msgstr "Eliminación de Usuarios"
|
4339 |
|
4340 |
-
#: ../includes/mycred-install.php:
|
4341 |
msgid "Delete log entries when user is deleted."
|
4342 |
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
4343 |
|
4344 |
-
#: ../includes/mycred-install.php:
|
4345 |
msgid "Ready"
|
4346 |
msgstr "Listo"
|
4347 |
|
4348 |
-
#: ../includes/mycred-install.php:
|
4349 |
msgid "Almost done! Click the button below to finish this setup."
|
4350 |
msgstr ""
|
4351 |
"¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
|
4352 |
"configuración."
|
4353 |
|
4354 |
-
#: ../includes/mycred-install.php:
|
4355 |
msgid "Install & Run"
|
4356 |
msgstr "Instalar e ejecutar"
|
4357 |
|
@@ -4365,29 +4365,29 @@ msgstr "Mostrando %d %s"
|
|
4365 |
msgid "entry"
|
4366 |
msgstr "entrada"
|
4367 |
|
4368 |
-
#: ../includes/mycred-log.php:
|
4369 |
msgid "Go to the first page"
|
4370 |
msgstr "Ir a la primera página"
|
4371 |
|
4372 |
-
#: ../includes/mycred-log.php:
|
4373 |
msgid "Go to the previous page"
|
4374 |
msgstr "Ir a la página anterior"
|
4375 |
|
4376 |
-
#: ../includes/mycred-log.php:
|
4377 |
msgid "Current page"
|
4378 |
msgstr "Página corriente"
|
4379 |
|
4380 |
-
#: ../includes/mycred-log.php:
|
4381 |
#, php-format
|
4382 |
msgctxt "paging"
|
4383 |
msgid "%1$s of %2$s"
|
4384 |
msgstr "%1$s de %2$s"
|
4385 |
|
4386 |
-
#: ../includes/mycred-log.php:
|
4387 |
msgid "Go to the next page"
|
4388 |
msgstr "Ir a la página siguiente"
|
4389 |
|
4390 |
-
#: ../includes/mycred-log.php:
|
4391 |
msgid "Go to the last page"
|
4392 |
msgstr "Ir a la última página"
|
4393 |
|
@@ -4395,7 +4395,7 @@ msgstr "Ir a la última página"
|
|
4395 |
msgid "Show all references"
|
4396 |
msgstr "Muestra todas las referencias"
|
4397 |
|
4398 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4399 |
msgid "User ID"
|
4400 |
msgstr "ID del Usuario"
|
4401 |
|
@@ -4630,92 +4630,92 @@ msgstr ""
|
|
4630 |
"Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
|
4631 |
"maliciosas conozcan detalles de tu configuración!"
|
4632 |
|
4633 |
-
#: ../includes/mycred-shortcodes.php:
|
4634 |
msgid "Leaderboard is empty."
|
4635 |
msgstr "La Tabla de Clasificación esta vacía"
|
4636 |
|
4637 |
-
#: ../includes/mycred-shortcodes.php:
|
4638 |
msgid "Amount missing!"
|
4639 |
msgstr "¡Falta la cantidad!"
|
4640 |
|
4641 |
-
#: ../includes/mycred-shortcodes.php:
|
4642 |
msgid "Log Template Missing!"
|
4643 |
msgstr "¡Plantilla de Registro No Encontrado!"
|
4644 |
|
4645 |
-
#: ../includes/mycred-shortcodes.php:
|
4646 |
msgid "Anchor missing URL!"
|
4647 |
msgstr "¡La Ancla falta el URL!"
|
4648 |
|
4649 |
-
#: ../includes/mycred-shortcodes.php:
|
4650 |
msgid "User ID missing for recipient."
|
4651 |
msgstr "ID del Usuario falta para el destinatario"
|
4652 |
|
4653 |
-
#: ../includes/mycred-shortcodes.php:
|
4654 |
msgid "Sent"
|
4655 |
msgstr "Enviado"
|
4656 |
|
4657 |
-
#: ../includes/mycred-shortcodes.php:
|
4658 |
msgid "Error - Try Again"
|
4659 |
msgstr "Error - Inténtelo de nuevo."
|
4660 |
|
4661 |
-
#: ../includes/mycred-shortcodes.php:
|
4662 |
msgid "A video ID is required for this shortcode"
|
4663 |
msgstr "Este código corto (shortcode) precisa un ID del video."
|
4664 |
|
4665 |
-
#: ../includes/mycred-shortcodes.php:
|
4666 |
msgid "Point types not found."
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: ../includes/mycred-shortcodes.php:
|
4670 |
-
#: includes/mycred-shortcodes.php:
|
4671 |
#, php-format
|
4672 |
msgid "You are excluded from using %s."
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: ../includes/mycred-shortcodes.php:
|
4676 |
msgid "Your balance is too low to use this feature."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: ../includes/mycred-shortcodes.php:
|
4680 |
#, php-format
|
4681 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: ../includes/mycred-shortcodes.php:
|
4685 |
#, php-format
|
4686 |
msgid "Your current %s balance"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: ../includes/mycred-shortcodes.php:
|
4690 |
#, php-format
|
4691 |
msgid "Minimum %s"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: ../includes/mycred-shortcodes.php:
|
4695 |
#, php-format
|
4696 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: ../includes/mycred-shortcodes.php:
|
4700 |
msgid "Exchange"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: ../includes/mycred-shortcodes.php:
|
4704 |
#, php-format
|
4705 |
msgid "You must exchange at least %s!"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: ../includes/mycred-shortcodes.php:
|
4709 |
#, php-format
|
4710 |
msgid "Exchange from %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
-
#: ../includes/mycred-shortcodes.php:
|
4714 |
#, php-format
|
4715 |
msgid "Exchange to %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: ../includes/mycred-shortcodes.php:
|
4719 |
#, php-format
|
4720 |
msgid "You have successfully exchanged %s into %s."
|
4721 |
msgstr ""
|
@@ -4734,7 +4734,7 @@ msgstr "(%s) Mi Saldo"
|
|
4734 |
msgid "My Balance"
|
4735 |
msgstr "Mi Saldo"
|
4736 |
|
4737 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4738 |
msgid "%plural% History"
|
4739 |
msgstr "Historial de %plural%"
|
4740 |
|
@@ -5172,64 +5172,64 @@ msgstr "La Historial de %s"
|
|
5172 |
msgid "Current balance"
|
5173 |
msgstr "Saldo Actual"
|
5174 |
|
5175 |
-
#: ../modules/mycred-module-buddypress.php:
|
5176 |
msgid "Go"
|
5177 |
msgstr "Ir a"
|
5178 |
|
5179 |
-
#: ../modules/mycred-module-buddypress.php:
|
5180 |
msgid "Show in Profile"
|
5181 |
msgstr "Mostrar en Perfil"
|
5182 |
|
5183 |
-
#: ../modules/mycred-module-buddypress.php:
|
5184 |
#, php-format
|
5185 |
msgid "%singular% Balance"
|
5186 |
msgstr "%singular% Saldo"
|
5187 |
|
5188 |
-
#: ../modules/mycred-module-buddypress.php:
|
5189 |
#, php-format
|
5190 |
msgid "Members and visitors can other members %_singular% balance."
|
5191 |
msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
|
5192 |
|
5193 |
-
#: ../modules/mycred-module-buddypress.php:
|
5194 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5195 |
msgstr ""
|
5196 |
"Ten en cuenta que tambien puedes usar %rank_logo% para mostrar la imagen "
|
5197 |
"principal del rango."
|
5198 |
|
5199 |
-
#: ../modules/mycred-module-buddypress.php:
|
5200 |
msgid "Members can view each others %_plural% history."
|
5201 |
msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
|
5202 |
|
5203 |
-
#: ../modules/mycred-module-buddypress.php:
|
5204 |
msgid "Menu Title"
|
5205 |
msgstr "Título de Menú"
|
5206 |
|
5207 |
-
#: ../modules/mycred-module-buddypress.php:
|
5208 |
msgid "Title shown to me"
|
5209 |
msgstr "Título mostrado a mi"
|
5210 |
|
5211 |
-
#: ../modules/mycred-module-buddypress.php:
|
5212 |
#, php-format
|
5213 |
msgid "Title shown to others. Use %s to show the first name."
|
5214 |
msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
|
5215 |
|
5216 |
-
#: ../modules/mycred-module-buddypress.php:
|
5217 |
msgid "Menu Position"
|
5218 |
msgstr "Posición del Menú"
|
5219 |
|
5220 |
-
#: ../modules/mycred-module-buddypress.php:
|
5221 |
msgid "Current menu positions:"
|
5222 |
msgstr "Posiciones Acuales del Menú"
|
5223 |
|
5224 |
-
#: ../modules/mycred-module-buddypress.php:
|
5225 |
msgid "History URL slug"
|
5226 |
msgstr "La ficha historial de la URL"
|
5227 |
|
5228 |
-
#: ../modules/mycred-module-buddypress.php:
|
5229 |
msgid "Do not use empty spaces!"
|
5230 |
msgstr "¡No utilice espacios vacíos!"
|
5231 |
|
5232 |
-
#: ../modules/mycred-module-buddypress.php:
|
5233 |
msgid "Number of history entries to show"
|
5234 |
msgstr "Numero de entradas de historial a mostrar"
|
5235 |
|
@@ -5366,8 +5366,8 @@ msgstr ""
|
|
5366 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5367 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5368 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5369 |
-
#:
|
5370 |
-
#: php:
|
5371 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5372 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5373 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5428,8 +5428,8 @@ msgstr ""
|
|
5428 |
msgid "%plural% for viewing %s"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5432 |
-
#: ../modules/mycred-module-hooks.php:
|
5433 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5434 |
msgid "Limit"
|
5435 |
msgstr "Límite"
|
@@ -5522,7 +5522,7 @@ msgstr ""
|
|
5522 |
msgid "Custom tags: %url%, %title% or %id%."
|
5523 |
msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
|
5524 |
|
5525 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5526 |
msgid "Note!"
|
5527 |
msgstr "¡Atención!"
|
5528 |
|
@@ -5538,44 +5538,44 @@ msgstr ""
|
|
5538 |
"valor fijado en href. Si estas utilizando esta función para \"compartir\" "
|
5539 |
"contenidos, se recomienda que limites por ID."
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5542 |
msgid "Available Shortcode"
|
5543 |
msgstr "Código corto Disponible"
|
5544 |
|
5545 |
-
#: ../modules/mycred-module-hooks.php:
|
5546 |
msgid "Amount to award for viewing videos."
|
5547 |
msgstr "Cantidad a ceder para ver videos."
|
5548 |
|
5549 |
-
#: ../modules/mycred-module-hooks.php:
|
5550 |
msgid "Award Logic"
|
5551 |
msgstr "Lógica de Concesión"
|
5552 |
|
5553 |
-
#: ../modules/mycred-module-hooks.php:
|
5554 |
#, php-format
|
5555 |
msgid "Select when %_plural% should be awarded or deducted."
|
5556 |
msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-hooks.php:
|
5559 |
msgid "Play - As soon as video starts playing."
|
5560 |
msgstr "Play - En cuanto el video empiece a reproducirse."
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-hooks.php:
|
5563 |
msgid "Full - First when the entire video has played."
|
5564 |
msgstr "Completo - Primero cuando el video entero se haya reproducido."
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-hooks.php:
|
5567 |
msgid "Interval - For each x number of seconds watched."
|
5568 |
msgstr "Intervalo - Para cada x numero de segundos vistos."
|
5569 |
|
5570 |
-
#: ../modules/mycred-module-hooks.php:
|
5571 |
msgid "Number of seconds"
|
5572 |
msgstr "Numero de segundos"
|
5573 |
|
5574 |
-
#: ../modules/mycred-module-hooks.php:
|
5575 |
msgid "Leniency"
|
5576 |
msgstr "Lenidad"
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-hooks.php:
|
5579 |
msgid ""
|
5580 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5581 |
"length."
|
@@ -5583,7 +5583,7 @@ msgstr ""
|
|
5583 |
"El porcentaje máximo medido que un usuario vea puede variar con la duración "
|
5584 |
"actual del video."
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-hooks.php:
|
5587 |
msgid ""
|
5588 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5589 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5593,75 +5593,83 @@ msgstr ""
|
|
5593 |
"usuario ve una película y a veces la contador puede disminuir por pocos "
|
5594 |
"segundos por falta de buffering o por errores de reproducción."
|
5595 |
|
5596 |
-
#: ../modules/mycred-module-hooks.php:
|
5597 |
msgid "Affiliate Program"
|
5598 |
msgstr "Programa de Afiliados"
|
5599 |
|
5600 |
-
#: ../modules/mycred-module-hooks.php:
|
5601 |
msgid "Per Day"
|
5602 |
msgstr "Por Día"
|
5603 |
|
5604 |
-
#: ../modules/mycred-module-hooks.php:
|
5605 |
msgid "Link"
|
5606 |
msgstr "Enlace"
|
5607 |
|
5608 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5609 |
msgid "Referring Visitors"
|
5610 |
msgstr "Referiendo Visitantes"
|
5611 |
|
5612 |
-
#: ../modules/mycred-module-hooks.php:
|
5613 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5614 |
msgstr ""
|
5615 |
"El numero de referencias que cada miembro puede hacer. Utilice cero para "
|
5616 |
"ilimitado."
|
5617 |
|
5618 |
-
#: ../modules/mycred-module-hooks.php:
|
5619 |
msgid "Referring Signups"
|
5620 |
msgstr "Inscripciones a través de Referencias"
|
5621 |
|
5622 |
-
#: ../modules/mycred-module-hooks.php:
|
5623 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5624 |
msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
|
5625 |
|
5626 |
-
#: ../modules/mycred-module-hooks.php:
|
5627 |
msgid "Registrations are disabled."
|
5628 |
msgstr "Se han deshabilitado inscripciones."
|
5629 |
|
5630 |
-
#: ../modules/mycred-module-hooks.php:
|
5631 |
msgid "Referral Links"
|
5632 |
msgstr "Enlaces Referentes"
|
5633 |
|
5634 |
-
#: ../modules/mycred-module-hooks.php:
|
5635 |
msgid "Assign numeric referral IDs to each user."
|
5636 |
msgstr "Asignar ID numerica referente a cada usuario."
|
5637 |
|
5638 |
-
#: ../modules/mycred-module-hooks.php:
|
5639 |
msgid "Example"
|
5640 |
msgstr "Ejemplo"
|
5641 |
|
5642 |
-
#: ../modules/mycred-module-hooks.php:
|
5643 |
msgid "Assign usernames as IDs for each user."
|
5644 |
msgstr "Asignar los nombres de usuario como ID para cada usuario."
|
5645 |
|
5646 |
-
#: ../modules/mycred-module-hooks.php:
|
5647 |
msgid "IP Limit"
|
5648 |
msgstr "Límite de IP"
|
5649 |
|
5650 |
-
#: ../modules/mycred-module-hooks.php:
|
5651 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5652 |
msgstr ""
|
5653 |
"El numero de veces que cada IP concede %_plural%. Utilice cero para un "
|
5654 |
"número ilimitado"
|
5655 |
|
5656 |
-
#: ../modules/mycred-module-hooks.php:
|
5657 |
msgid "BuddyPress Profile"
|
5658 |
msgstr "Perfil de BuddyPress"
|
5659 |
|
5660 |
-
#: ../modules/mycred-module-hooks.php:
|
5661 |
msgid "Insert Link in users Profile"
|
5662 |
msgstr "Insertar enlace en el perfil del usuario"
|
5663 |
|
5664 |
-
#: ../modules/mycred-module-hooks.php:
|
5665 |
msgid ""
|
5666 |
"Option to inser the referral link in users profiles. Links will only be "
|
5667 |
"visible to users viewing their own profiles or administrators."
|
@@ -5670,23 +5678,23 @@ msgstr ""
|
|
5670 |
" Estos enlaces serán visibles a los administradores o a los usuarios cuando "
|
5671 |
"ven a sus propios perfiles."
|
5672 |
|
5673 |
-
#: ../modules/mycred-module-hooks.php:
|
5674 |
msgid "Leave empty to hide."
|
5675 |
msgstr "Deje el campo vacío para ocultarlo."
|
5676 |
|
5677 |
-
#: ../modules/mycred-module-hooks.php:
|
5678 |
msgid "Description"
|
5679 |
msgstr "Descripción"
|
5680 |
|
5681 |
-
#: ../modules/mycred-module-hooks.php:
|
5682 |
msgid "Optional description to insert under the link."
|
5683 |
msgstr "Insertar la descripción opcional debajo del enlace."
|
5684 |
|
5685 |
-
#: ../modules/mycred-module-hooks.php:
|
5686 |
msgid "Profile Positioning"
|
5687 |
msgstr "Posicionamiento del Perfil"
|
5688 |
|
5689 |
-
#: ../modules/mycred-module-hooks.php:
|
5690 |
msgid ""
|
5691 |
"You can move around the referral link on your users profile by changing the "
|
5692 |
"position. Increase to move up, decrease to move down."
|
@@ -5694,18 +5702,18 @@ msgstr ""
|
|
5694 |
"Puedes moverte por el enlace de referencia en su perfil los usuarios "
|
5695 |
"cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
|
5696 |
|
5697 |
-
#: ../modules/mycred-module-hooks.php:
|
5698 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5699 |
msgstr ""
|
5700 |
"¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
|
5701 |
"en el perfil del usuario!"
|
5702 |
|
5703 |
-
#: ../modules/mycred-module-hooks.php:
|
5704 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5705 |
msgstr "Requiere que BuddyPress Extended Profiles sea activado."
|
5706 |
|
5707 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5708 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5709 |
msgid "Access denied for this action"
|
5710 |
msgstr "Acceso denegado para esta acción"
|
5711 |
|
@@ -5721,12 +5729,12 @@ msgstr "No se encontro la entrada de registro "
|
|
5721 |
msgid "Entry Updated"
|
5722 |
msgstr "Entrada Actualizada"
|
5723 |
|
5724 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5725 |
msgid "Entries"
|
5726 |
msgstr "Entradas"
|
5727 |
|
5728 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5729 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5730 |
msgid "Export"
|
5731 |
msgstr "Exportar"
|
5732 |
|
@@ -5773,49 +5781,49 @@ msgid "My %s History"
|
|
5773 |
msgstr "Mi Historial de %s"
|
5774 |
|
5775 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5776 |
-
#:
|
5777 |
msgid "Missing point type"
|
5778 |
msgstr "Falta el tipo de punto"
|
5779 |
|
5780 |
-
#: ../modules/mycred-module-settings.php:
|
5781 |
msgid "Accounts successfully reset"
|
5782 |
msgstr "Las cuentas fueron reiniciadas con éxito."
|
5783 |
|
5784 |
-
#: ../modules/mycred-module-settings.php:
|
5785 |
msgid "No users found to export"
|
5786 |
msgstr "No se encontro usuarios para exportar"
|
5787 |
|
5788 |
-
#: ../modules/mycred-module-settings.php:
|
5789 |
#, php-format
|
5790 |
msgid "%s Settings"
|
5791 |
msgstr "Configuración de %s"
|
5792 |
|
5793 |
-
#: ../modules/mycred-module-settings.php:
|
5794 |
msgid "Adjust your core or add-on settings."
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: ../modules/mycred-module-settings.php:
|
5798 |
msgid "Core Settings"
|
5799 |
msgstr "Ajustes Basicos"
|
5800 |
|
5801 |
-
#: ../modules/mycred-module-settings.php:
|
5802 |
msgid "Name"
|
5803 |
msgstr "Nombre"
|
5804 |
|
5805 |
-
#: ../modules/mycred-module-settings.php:
|
5806 |
#, php-format
|
5807 |
msgid "Accessible though the %singular% template tag."
|
5808 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5809 |
|
5810 |
-
#: ../modules/mycred-module-settings.php:
|
5811 |
msgid "Accessible though the %plural% template tag."
|
5812 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5813 |
|
5814 |
-
#: ../modules/mycred-module-settings.php:
|
5815 |
msgid "Tip"
|
5816 |
msgstr "Pista"
|
5817 |
|
5818 |
-
#: ../modules/mycred-module-settings.php:
|
5819 |
msgid ""
|
5820 |
"Adding an underscore at the beginning of template tag for names will return "
|
5821 |
"them in lowercase. i.e. %_singular%"
|
@@ -5823,96 +5831,96 @@ msgstr ""
|
|
5823 |
"Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
|
5824 |
"nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
|
5825 |
|
5826 |
-
#: ../modules/mycred-module-settings.php:
|
5827 |
msgid "Separator"
|
5828 |
msgstr "Separador"
|
5829 |
|
5830 |
-
#: ../modules/mycred-module-settings.php:
|
5831 |
msgid "Edit Settings"
|
5832 |
msgstr "Editar las Configuraciones"
|
5833 |
|
5834 |
#. or "Verificar la capacidad de"
|
5835 |
-
#: ../modules/mycred-module-settings.php:
|
5836 |
-
#: php:
|
5837 |
msgid "Capability to check for."
|
5838 |
msgstr "La capacidad que se va a verificar."
|
5839 |
|
5840 |
-
#: ../modules/mycred-module-settings.php:
|
5841 |
msgid "Edit Users %plural%"
|
5842 |
msgstr "Edita %plural% de Usuarios"
|
5843 |
|
5844 |
-
#: ../modules/mycred-module-settings.php:
|
5845 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5846 |
msgstr ""
|
5847 |
"Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
|
5848 |
"espacios!"
|
5849 |
|
5850 |
-
#: ../modules/mycred-module-settings.php:
|
5851 |
msgid "Management"
|
5852 |
msgstr "Gestión"
|
5853 |
|
5854 |
-
#: ../modules/mycred-module-settings.php:
|
5855 |
msgid "The Log"
|
5856 |
msgstr "El Registro"
|
5857 |
|
5858 |
-
#: ../modules/mycred-module-settings.php:
|
5859 |
msgid "Table Name"
|
5860 |
msgstr "Nombre de Tabla"
|
5861 |
|
5862 |
-
#: ../modules/mycred-module-settings.php:
|
5863 |
msgid "Empty Log"
|
5864 |
msgstr "Registro Vacío"
|
5865 |
|
5866 |
-
#: ../modules/mycred-module-settings.php:
|
5867 |
msgid "User Meta Key"
|
5868 |
msgstr "Clave Meta del Usuario"
|
5869 |
|
5870 |
-
#: ../modules/mycred-module-settings.php:
|
5871 |
msgid "Set all to zero"
|
5872 |
msgstr "Ajusta todo a cero"
|
5873 |
|
5874 |
-
#: ../modules/mycred-module-settings.php:
|
5875 |
msgid "CSV Export"
|
5876 |
msgstr "Exportar CSV"
|
5877 |
|
5878 |
-
#: ../modules/mycred-module-settings.php:
|
5879 |
msgid "Default"
|
5880 |
msgstr "Predefinido"
|
5881 |
|
5882 |
-
#: ../modules/mycred-module-settings.php:
|
5883 |
-
#: php:
|
5884 |
msgid "Meta Key"
|
5885 |
msgstr "Clave Meta"
|
5886 |
|
5887 |
-
#: ../modules/mycred-module-settings.php:
|
5888 |
msgid "Add New Type"
|
5889 |
msgstr "Añadir Nuevo Tipo"
|
5890 |
|
5891 |
-
#: ../modules/mycred-module-settings.php:
|
5892 |
msgid "A unique ID for this type."
|
5893 |
msgstr "Una ID exclusiva para este tipo."
|
5894 |
|
5895 |
-
#: ../modules/mycred-module-settings.php:
|
5896 |
msgid "Menu and page title."
|
5897 |
msgstr "Título del Menú y de la Página\n"
|
5898 |
|
5899 |
-
#: ../modules/mycred-module-settings.php:
|
5900 |
msgid "The meta key will define where your users balances are saved."
|
5901 |
msgstr "La clave meta sera definida cuando los saldos de tus usuarios sea guardado."
|
5902 |
|
5903 |
-
#: ../modules/mycred-module-settings.php:
|
5904 |
msgid "Identify users by"
|
5905 |
msgstr "Identifique usuarios por"
|
5906 |
|
5907 |
-
#: ../modules/mycred-module-settings.php:
|
5908 |
msgid "User Email"
|
5909 |
msgstr "Email de Usuario"
|
5910 |
|
5911 |
-
#: ../modules/mycred-module-settings.php:
|
5912 |
msgid "User Login"
|
5913 |
msgstr "Ingreso de Usuario"
|
5914 |
|
5915 |
-
#: ../modules/mycred-module-settings.php:
|
5916 |
msgid ""
|
5917 |
"Use ID if you intend to use this export as a backup of your current site "
|
5918 |
"while Email is recommended if you want to export to a different site."
|
@@ -5920,11 +5928,11 @@ msgstr ""
|
|
5920 |
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
5921 |
"Email si deseas exportar la data a otro sitio"
|
5922 |
|
5923 |
-
#: ../modules/mycred-module-settings.php:
|
5924 |
msgid "Import Log Entry"
|
5925 |
msgstr "Importa la entrada de registro"
|
5926 |
|
5927 |
-
#: ../modules/mycred-module-settings.php:
|
5928 |
#, php-format
|
5929 |
msgid ""
|
5930 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5933,11 +5941,11 @@ msgstr ""
|
|
5933 |
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
5934 |
"fichero en otra instalación %s."
|
5935 |
|
5936 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5937 |
msgid "BadgeOS"
|
5938 |
msgstr "BadgeOS"
|
5939 |
|
5940 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5941 |
msgid ""
|
5942 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5943 |
"overridden for individual achievement type."
|
@@ -5945,7 +5953,7 @@ msgstr ""
|
|
5945 |
"Configuraciones predefinidos para cada tipo de BadgeOS Logro (Achievement). "
|
5946 |
"Estos ajustes pueden ser anulados para el tipo de logro individual."
|
5947 |
|
5948 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5949 |
#, php-format
|
5950 |
msgid ""
|
5951 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5954,29 +5962,29 @@ msgstr ""
|
|
5954 |
"Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
|
5955 |
"de usar este función."
|
5956 |
|
5957 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5958 |
msgid "%plural% to Award"
|
5959 |
msgstr "%plural% a Conceder"
|
5960 |
|
5961 |
#. also "Ponga cero para inhabilitar"
|
5962 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5963 |
msgid "Use zero to disable"
|
5964 |
msgstr "Ponga cero para desactivar"
|
5965 |
|
5966 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5967 |
msgid "Deduction Log Template"
|
5968 |
msgstr "Plantilla de Registro Descontado"
|
5969 |
|
5970 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5971 |
#, php-format
|
5972 |
msgid "Default %s for %s"
|
5973 |
msgstr "Predeterminar %s por %s"
|
5974 |
|
5975 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5976 |
msgid "Use zero to disable users gaining %_plural%"
|
5977 |
msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
|
5978 |
|
5979 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5980 |
msgid "Default Log template"
|
5981 |
msgstr "Plantilla de Registro Predefinido"
|
5982 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:53:40 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Spanish (Venezuela)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: es_VE"
|
26 |
|
27 |
+
#: ../mycred.php:425
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
+
#: ../mycred.php:450
|
32 |
msgid "%label% History"
|
33 |
msgstr "%lavel% Historial"
|
34 |
|
35 |
+
#: ../mycred.php:543
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre"
|
39 |
|
40 |
+
#: ../mycred.php:552
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Gente genial"
|
43 |
|
44 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
+
#: includes/mycred-shortcodes.php:631
|
49 |
msgid "Processing..."
|
50 |
msgstr "Procesando..."
|
51 |
|
52 |
+
#: ../mycred.php:638
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
57 |
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
58 |
"¡Esto no se puede deshacer!"
|
59 |
|
60 |
+
#: ../mycred.php:639
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
65 |
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
66 |
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
67 |
|
68 |
+
#: ../mycred.php:640
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
72 |
"deshacer!"
|
73 |
|
74 |
+
#: ../mycred.php:641
|
75 |
msgid "Done!"
|
76 |
msgstr "¡Realizado!"
|
77 |
|
78 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
79 |
msgid "Close"
|
80 |
msgstr "Cerrar"
|
81 |
|
82 |
+
#: ../mycred.php:643
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar usuarios %plural%"
|
85 |
|
86 |
+
#: ../mycred.php:659
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo del usuario"
|
89 |
|
90 |
+
#: ../mycred.php:677
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Edidar entrada de registro"
|
93 |
|
94 |
+
#: ../mycred.php:681
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
98 |
"deshacer!"
|
99 |
|
100 |
+
#: ../mycred.php:682
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Entrada de registro actualizado"
|
103 |
|
104 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
105 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Configurar"
|
109 |
|
110 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configuraciones"
|
115 |
|
116 |
+
#: ../mycred.php:776
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
157 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
160 |
msgid "Select"
|
161 |
msgstr "Seleccionar"
|
162 |
|
256 |
msgstr ""
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
260 |
msgid "Users"
|
261 |
msgstr "Usuarios"
|
262 |
|
339 |
|
340 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
341 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
342 |
+
#: modules/mycred-module-buddypress.php:395
|
343 |
msgid "Do not show"
|
344 |
msgstr "No Mostrar"
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
347 |
+
#: buddypress.php:396
|
348 |
msgid "Include in Profile Header"
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
352 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
353 |
msgid "Include under the \"Profile\" tab"
|
354 |
msgstr "Incluir debajo de la pestaña del \"Perfil\""
|
355 |
|
356 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
357 |
+
#: buddypress.php:398
|
358 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
359 |
msgstr ""
|
360 |
|
423 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
424 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
425 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
426 |
+
#: modules/mycred-module-settings.php:313
|
427 |
msgid "Access Denied"
|
428 |
msgstr "Acceso Denegado"
|
429 |
|
576 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
577 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
578 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
579 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
580 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
581 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
582 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
583 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
674 |
|
675 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
676 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
677 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
678 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
679 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
680 |
+
#: includes/mycred-shortcodes.php:939
|
681 |
msgid "Amount"
|
682 |
msgstr "Cantidad"
|
683 |
|
684 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
685 |
+
#: modules/mycred-module-hooks.php:2112
|
686 |
msgid "Interval"
|
687 |
msgstr "Interval"
|
688 |
|
734 |
msgstr ""
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
737 |
+
#: addon-buy-creds.php:1635
|
738 |
msgid "No pending payments found"
|
739 |
msgstr ""
|
740 |
|
743 |
msgstr ""
|
744 |
|
745 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
746 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
747 |
msgid "Transaction ID"
|
748 |
msgstr "Identificación de la Transacción"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
751 |
+
#: addon-buy-creds.php:985
|
752 |
msgid "Buyer"
|
753 |
msgstr ""
|
754 |
|
755 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
756 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
757 |
#: gateway.php:563
|
758 |
msgid "Cost"
|
759 |
msgstr "Costo"
|
760 |
|
761 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
762 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
763 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
764 |
msgid "Gateway"
|
765 |
msgstr "Pasarela"
|
810 |
|
811 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
812 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
813 |
+
#: module-settings.php:470
|
814 |
msgid "Point Types"
|
815 |
msgstr "Tipo de Puntos"
|
816 |
|
863 |
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
864 |
|
865 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
866 |
+
#: hooks.php:2792
|
867 |
msgid "Available Shortcodes"
|
868 |
msgstr "Códigos cortos Disponibles"
|
869 |
|
890 |
msgstr "%s Pasarelas de Pago"
|
891 |
|
892 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
893 |
+
#: addon-buy-creds.php:993
|
894 |
msgid "buyCRED Settings"
|
895 |
msgstr "Configuraciones de compraCRED"
|
896 |
|
916 |
msgstr "Habilitar para compras de prueba."
|
917 |
|
918 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
919 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
920 |
msgid "Update Settings"
|
921 |
msgstr "Actualizar Configuraciones"
|
922 |
|
924 |
msgid "More Gateways"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
928 |
#: 634
|
929 |
msgid "Date"
|
930 |
msgstr "Fecha"
|
931 |
|
932 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
933 |
msgid "Payed"
|
934 |
msgstr "Pagado"
|
935 |
|
936 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
937 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
938 |
msgstr "Registro de Compras de <strong>compra</strong>CRED"
|
939 |
|
940 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
941 |
#: booking/mycred-eventespresso3.php:367
|
942 |
msgid "Gateway Settings"
|
943 |
msgstr "Configuraciones de la Pasarela de Pago"
|
944 |
|
945 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
946 |
+
#: content/myCRED-addon-sell-content.php:1191
|
947 |
msgid "No purchases found"
|
948 |
msgstr "No se encontro ninguna compra"
|
949 |
|
950 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
951 |
+
#: addon-buy-creds.php:1355
|
952 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
953 |
msgstr ""
|
954 |
"Esta extensión (add-on) debe ser configurado antes de poder usar este código "
|
955 |
"corto (shortcode)."
|
956 |
|
957 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
958 |
+
#: addon-buy-creds.php:1374
|
959 |
msgid "No gateways installed."
|
960 |
msgstr "Ningun pasarela de pago instalado."
|
961 |
|
962 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
963 |
+
#: addon-buy-creds.php:1375
|
964 |
msgid "Gateway does not exist."
|
965 |
msgstr "Puerta de enlace no existe."
|
966 |
|
967 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
968 |
msgid "Yourself"
|
969 |
msgstr "Tu mismo"
|
970 |
|
971 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
972 |
msgid "No active gateways found."
|
973 |
msgstr "No se encuentra ningun puerta de enlace activo."
|
974 |
|
975 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
976 |
msgid "The selected gateway is not active."
|
977 |
msgstr "La puerta de enlace seleccionada no esta activo."
|
978 |
|
979 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
980 |
#, php-format
|
981 |
msgid "Buy with %gateway%"
|
982 |
msgstr "Compra con %gateway%"
|
983 |
|
984 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
985 |
#: content/myCRED-addon-sell-content.php:44
|
986 |
msgid "Buy Now"
|
987 |
msgstr "Compra Ahora"
|
988 |
|
989 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
990 |
msgid "No users found"
|
991 |
msgstr "Ningun Usuario Encontrado"
|
992 |
|
993 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
994 |
msgid "To"
|
995 |
msgstr "A"
|
996 |
|
997 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
998 |
msgid "Select Amount"
|
999 |
msgstr "Selecciona la Cantidad"
|
1000 |
|
1001 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
1002 |
msgid "min."
|
1003 |
msgstr "min."
|
1004 |
|
1005 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
1006 |
msgid "Select Gateway"
|
1007 |
msgstr "Selecciona la Pasarela de Pago"
|
1008 |
|
1009 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1010 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1011 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1012 |
#: php:35
|
1013 |
msgid "Pay Now"
|
1014 |
msgstr "Pagar Ahora"
|
1015 |
|
1016 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1017 |
+
#: php:516
|
1018 |
msgid "Cancel"
|
1019 |
msgstr "Cancelar"
|
1020 |
|
1021 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1022 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1023 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1024 |
msgid "Actions"
|
1025 |
msgstr "Acciones"
|
1026 |
|
1166 |
msgid "The following information will be sent to the gateway"
|
1167 |
msgstr "La información siguiente sera transmitido a la pasarela de pago"
|
1168 |
|
1169 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1170 |
msgid "Outside US"
|
1171 |
msgstr "Fuera de los EEUU"
|
1172 |
|
1173 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1174 |
msgid "January"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1178 |
msgid "February"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1182 |
msgid "March"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1186 |
msgid "April"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1190 |
msgid "May"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1194 |
msgid "June"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1198 |
msgid "July"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1202 |
msgid "August"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1206 |
msgid "September"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1210 |
msgid "October"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1214 |
msgid "November"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1218 |
msgid "December"
|
1219 |
msgstr ""
|
1220 |
|
1469 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1470 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1471 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1472 |
+
#: modules/mycred-module-hooks.php:2757
|
1473 |
msgid "Title"
|
1474 |
msgstr "Titulo"
|
1475 |
|
1676 |
msgstr "todavia no utilizado"
|
1677 |
|
1678 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1679 |
+
#: php:2202
|
1680 |
msgid "Total"
|
1681 |
msgstr "Total"
|
1682 |
|
1854 |
msgstr "Aplica el Cupón"
|
1855 |
|
1856 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1857 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1858 |
msgid "Email Notice"
|
1859 |
msgstr "Aviso por Correo Electrónico"
|
1860 |
|
2049 |
"pueden ser anulado individualmente cuando se edita correos electrónicos."
|
2050 |
|
2051 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2052 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2053 |
msgid "Email Settings"
|
2054 |
msgstr "Configuracion de Correo Electrónico"
|
2055 |
|
2056 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2057 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2058 |
msgid "Senders Name:"
|
2059 |
msgstr "Nombre del Remitente"
|
2060 |
|
2061 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2062 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2063 |
msgid "Senders Email:"
|
2064 |
msgstr "Correo Electrónico del Remitente:"
|
2065 |
|
2083 |
msgid "Ignored if HTML is not allowed in emails."
|
2084 |
msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
|
2085 |
|
2086 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2087 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2088 |
msgid "Email Subject"
|
2089 |
msgstr "Asunto del Correo Electrónico"
|
2090 |
|
2091 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2092 |
msgid "Status"
|
2093 |
msgstr "Estatus"
|
2094 |
|
2095 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2096 |
msgid "Not Active"
|
2097 |
msgstr "No esta Activo"
|
2098 |
|
2099 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2100 |
#, php-format
|
2101 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2102 |
msgstr "Programada:<br /><strong>%1$s</strong>"
|
2103 |
|
2104 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2105 |
msgid "Active"
|
2106 |
msgstr "Activo"
|
2107 |
|
2108 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2109 |
#, php-format
|
2110 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2111 |
msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
|
2112 |
|
2113 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2114 |
msgid "Email is sent when"
|
2115 |
msgstr "el Correo Electrónico se envia cuando"
|
2116 |
|
2117 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2118 |
msgid "Missing instance for this notice!"
|
2119 |
msgstr "¡Falta una instancia para este aviso!"
|
2120 |
|
2121 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2122 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2123 |
+
#: addon-email-notices.php:775
|
2124 |
msgid "Sent To"
|
2125 |
msgstr "Enviado A:"
|
2126 |
|
2127 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2128 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2129 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2130 |
msgid "User"
|
2131 |
msgstr "Usuario"
|
2132 |
|
2133 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2134 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2135 |
msgid "Administrator"
|
2136 |
msgstr "Administrador"
|
2137 |
|
2138 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2139 |
msgid "Both Administrator and User"
|
2140 |
msgstr "Tanto Administrador como Usuario"
|
2141 |
|
2142 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2143 |
msgid "Available Template Tags"
|
2144 |
msgstr "Etiquetas (tags) de Plantilla Disponibles"
|
2145 |
|
2146 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2147 |
msgid "Email Header"
|
2148 |
msgstr "Encabezado del Correo Electrónico"
|
2149 |
|
2150 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2151 |
msgid "Send this email notice when..."
|
2152 |
msgstr "Envia este aviso por correo electrónico cuando..."
|
2153 |
|
2154 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2155 |
msgid "Recipient:"
|
2156 |
msgstr "Destinatario:"
|
2157 |
|
2158 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2159 |
msgid "Both"
|
2160 |
msgstr "Ambos"
|
2161 |
|
2162 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2163 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2164 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2165 |
+
#: module-settings.php:527
|
2166 |
msgid "Label"
|
2167 |
msgstr "Etiqueta"
|
2168 |
|
2169 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2170 |
msgid "Reply-To Email:"
|
2171 |
msgstr "Responder-A Correo Electrónico:"
|
2172 |
|
2173 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2174 |
msgid "Save"
|
2175 |
msgstr "Guardar"
|
2176 |
|
2177 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2178 |
msgid "CSS Styling"
|
2179 |
msgstr "Estilo CSS"
|
2180 |
|
2181 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2182 |
msgid "Site Related"
|
2183 |
msgstr "Relacionado al Sitio"
|
2184 |
|
2185 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2186 |
msgid "Your websites title"
|
2187 |
msgstr "Titulo de tu pagina web"
|
2188 |
|
2189 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2190 |
msgid "Your websites address"
|
2191 |
msgstr "Dirección de tu pagina web"
|
2192 |
|
2193 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2194 |
msgid "Your websites tagline (description)"
|
2195 |
msgstr "La descripción de tu sitio web (lema o eslogan)"
|
2196 |
|
2197 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2198 |
msgid "Your websites admin email"
|
2199 |
msgstr "El correo electrónico de admin para tu pagina web"
|
2200 |
|
2201 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2202 |
msgid "Total number of blog members"
|
2203 |
msgstr "Número total de miembros del blog"
|
2204 |
|
2205 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2206 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2207 |
+
#: addon-email-notices.php:1040
|
2208 |
msgid "Email Notice Updated."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2212 |
msgid "Email Notice Activated"
|
2213 |
msgstr "Notificación atraves de Correo Electrónico Activado"
|
2214 |
|
2215 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2216 |
msgid "Email Notice Saved"
|
2217 |
msgstr "Aviso por Correo Electrónico Guardado"
|
2218 |
|
2219 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2220 |
msgid ""
|
2221 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2222 |
"are not yet ready to use this email notice!"
|
2224 |
"¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
|
2225 |
"si aun no estás listo para utilizar este aviso por email!"
|
2226 |
|
2227 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2228 |
#, php-format
|
2229 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2230 |
msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
|
2231 |
|
2232 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2233 |
msgid "This email notice is active."
|
2234 |
msgstr "Esta notificación de correo electrónico esta activada."
|
2235 |
|
2236 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2237 |
msgid "Settings saved."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2241 |
msgid "Unsubscribe"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2245 |
msgid "There are no email notifications yet."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2249 |
msgid "Save Changes"
|
2250 |
msgstr ""
|
2251 |
|
2294 |
|
2295 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2296 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2297 |
+
#: 52 ../includes/mycred-network.php:53
|
2298 |
msgid "myCRED"
|
2299 |
msgstr "myCRED"
|
2300 |
|
2375 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2376 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2377 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2378 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2379 |
msgid "Exchange Rate"
|
2380 |
msgstr "Tipo de Cambio"
|
2381 |
|
2685 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2686 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2687 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2688 |
+
#: sell-content.php:669
|
2689 |
msgid "Button Label"
|
2690 |
msgstr "Eqiqueta Asignada al Botón"
|
2691 |
|
2699 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2700 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2701 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2702 |
+
#: sell-content.php:665
|
2703 |
msgid "Price"
|
2704 |
msgstr "Precio"
|
2705 |
|
2808 |
msgstr "Rechazar"
|
2809 |
|
2810 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2811 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2812 |
+
#: modules/mycred-module-settings.php:508
|
2813 |
msgid "Delete"
|
2814 |
msgstr "Borrar"
|
2815 |
|
2936 |
msgstr "Utilice el Estilo CSS incluido para notificaciones."
|
2937 |
|
2938 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2939 |
+
#: module-buddypress.php:439
|
2940 |
msgid "Template"
|
2941 |
msgstr "Plantilla"
|
2942 |
|
3221 |
"y/o en el frente si los rangos son \"Público\""
|
3222 |
|
3223 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3224 |
+
#: php:402
|
3225 |
msgid "Do not show."
|
3226 |
msgstr "No mostrar."
|
3227 |
|
3271 |
msgstr "Ningun usuario encontrado con este rango"
|
3272 |
|
3273 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3274 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3275 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3276 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3277 |
msgid "error"
|
3278 |
msgstr "error"
|
3279 |
|
3401 |
msgid "%s Sell This"
|
3402 |
msgstr "%s Vende Esto"
|
3403 |
|
3404 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3405 |
#, php-format
|
3406 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3407 |
msgstr ""
|
3408 |
"%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
|
3409 |
"esta característica técnica."
|
3410 |
|
3411 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3412 |
msgid "Setup add-on"
|
3413 |
msgstr "Configurar Extensión"
|
3414 |
|
3415 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3416 |
msgid "Lets do it"
|
3417 |
msgstr "Vamos a hacerlo."
|
3418 |
|
3419 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3420 |
#, php-format
|
3421 |
msgid "Enable sale of this %s"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3425 |
msgid "Purchase expires after"
|
3426 |
msgstr "Compra caduca despues de"
|
3427 |
|
3428 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3429 |
msgid "Thank you for your purchase!"
|
3430 |
msgstr "¡Gracias por su compra!"
|
3431 |
|
3432 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3433 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3434 |
msgid "The following content is set for sale:"
|
3435 |
msgstr "El siguiente contenido esta listo para la venta:"
|
3436 |
|
3437 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3438 |
msgid "Purchased"
|
3439 |
msgstr "Comprado"
|
3440 |
|
3447 |
msgstr "Has excedido tu limite de transferencia de %limit%."
|
3448 |
|
3449 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3450 |
+
#: php:2367
|
3451 |
msgid "Transfer"
|
3452 |
msgstr "Transferir"
|
3453 |
|
3486 |
"transferencias hasta que se haga esto."
|
3487 |
|
3488 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3489 |
+
#: php:1041
|
3490 |
msgid "Insufficient Funds. Please try a lower amount."
|
3491 |
msgstr ""
|
3492 |
|
3869 |
msgid "My Entire Log"
|
3870 |
msgstr "Mi Registro Entero"
|
3871 |
|
3872 |
+
#: ../includes/mycred-functions.php:1854
|
3873 |
msgid "ref empty"
|
3874 |
msgstr "ref vacío"
|
3875 |
|
3876 |
+
#: ../includes/mycred-functions.php:1862
|
3877 |
msgid "incorrect user id format"
|
3878 |
msgstr "Formato incorrecto para id del usuario"
|
3879 |
|
3880 |
+
#: ../includes/mycred-functions.php:1875
|
3881 |
msgid "incorrect unix timestamp (from):"
|
3882 |
msgstr "erroneo marca de tiempo de unix (desde):"
|
3883 |
|
3884 |
+
#: ../includes/mycred-functions.php:1884
|
3885 |
msgid "incorrect unix timestamp (to):"
|
3886 |
msgstr "erroneo marca de tiempo de unix (a):"
|
3887 |
|
3888 |
+
#: ../includes/mycred-functions.php:2254
|
3889 |
msgid "Website Registration"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: ../includes/mycred-functions.php:2255
|
3893 |
msgid "Website Visit"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: ../includes/mycred-functions.php:2256
|
3897 |
msgid "Viewing Content (Member)"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: ../includes/mycred-functions.php:2257
|
3901 |
msgid "Viewing Content (Author)"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: ../includes/mycred-functions.php:2258
|
3905 |
msgid "Logging in"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: ../includes/mycred-functions.php:2259
|
3909 |
msgid "Publishing Content"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3913 |
msgid "Approved Comment"
|
3914 |
msgstr "Comentario Aprobado"
|
3915 |
|
3916 |
+
#: ../includes/mycred-functions.php:2261
|
3917 |
msgid "Unapproved Comment"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: ../includes/mycred-functions.php:2262
|
3921 |
msgid "SPAM Comment"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: ../includes/mycred-functions.php:2263
|
3925 |
msgid "Deleted Comment"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: ../includes/mycred-functions.php:2264
|
3929 |
msgid "Link Click"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: ../includes/mycred-functions.php:2265
|
3933 |
msgid "Watching Video"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: ../includes/mycred-functions.php:2266
|
3937 |
msgid "Visitor Referral"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: ../includes/mycred-functions.php:2267
|
3941 |
msgid "Signup Referral"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: ../includes/mycred-functions.php:2271
|
3945 |
msgid "New Profile Update"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: ../includes/mycred-functions.php:2272
|
3949 |
msgid "Avatar Upload"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: ../includes/mycred-functions.php:2273
|
3953 |
msgid "New Friendship"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: ../includes/mycred-functions.php:2274
|
3957 |
msgid "Ended Friendship"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: ../includes/mycred-functions.php:2275
|
3961 |
msgid "New Profile Comment"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: ../includes/mycred-functions.php:2276
|
3965 |
msgid "Profile Comment Deletion"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: ../includes/mycred-functions.php:2277
|
3969 |
msgid "New Message"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: ../includes/mycred-functions.php:2278
|
3973 |
msgid "Sending Gift"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: ../includes/mycred-functions.php:2279
|
3977 |
msgid "New Group"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: ../includes/mycred-functions.php:2280
|
3981 |
msgid "Deleted Group"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: ../includes/mycred-functions.php:2281
|
3985 |
msgid "New Group Forum Topic"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: ../includes/mycred-functions.php:2282
|
3989 |
msgid "Edit Group Forum Topic"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: ../includes/mycred-functions.php:2283
|
3993 |
msgid "New Group Forum Post"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: ../includes/mycred-functions.php:2284
|
3997 |
msgid "Edit Group Forum Post"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: ../includes/mycred-functions.php:2285
|
4001 |
msgid "Joining Group"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: ../includes/mycred-functions.php:2286
|
4005 |
msgid "Leaving Group"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: ../includes/mycred-functions.php:2287
|
4009 |
msgid "New Group Avatar"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: ../includes/mycred-functions.php:2288
|
4013 |
msgid "New Group Comment"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
4017 |
#: php:166
|
4018 |
msgid "Photo Upload"
|
4019 |
msgstr "Subir Foto"
|
4020 |
|
4021 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
4022 |
#: php:176
|
4023 |
msgid "Video Upload"
|
4024 |
msgstr "Subir Video"
|
4025 |
|
4026 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
4027 |
#: php:186
|
4028 |
msgid "Music Upload"
|
4029 |
msgstr "Subir Música"
|
4030 |
|
4031 |
+
#: ../includes/mycred-functions.php:2298
|
4032 |
msgid "New Link"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: ../includes/mycred-functions.php:2299
|
4036 |
msgid "Link Voting"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: ../includes/mycred-functions.php:2300
|
4040 |
msgid "Link Update"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: ../includes/mycred-functions.php:2304
|
4044 |
msgid "New Forum (bbPress)"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: ../includes/mycred-functions.php:2305
|
4048 |
msgid "New Forum Topic (bbPress)"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: ../includes/mycred-functions.php:2306
|
4052 |
msgid "Favorited Topic (bbPress)"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: ../includes/mycred-functions.php:2307
|
4056 |
msgid "New Topic Reply (bbPress)"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: ../includes/mycred-functions.php:2311
|
4060 |
msgid "Form Submission (Contact Form 7)"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: ../includes/mycred-functions.php:2314
|
4064 |
msgid "Form Submission (Gravity Form)"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: ../includes/mycred-functions.php:2317
|
4068 |
msgid "New Forum Topic (SimplePress)"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: ../includes/mycred-functions.php:2318
|
4072 |
msgid "New Forum Post (SimplePress)"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: ../includes/mycred-functions.php:2322
|
4076 |
msgid "Poll Voting"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: ../includes/mycred-functions.php:2325
|
4080 |
msgid "Sending an Invite"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: ../includes/mycred-functions.php:2326
|
4084 |
msgid "Accepting an Invite"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: ../includes/mycred-functions.php:2332
|
4088 |
msgid "Banking Payout"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: ../includes/mycred-functions.php:2335
|
4092 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: ../includes/mycred-functions.php:2336
|
4096 |
msgid "buyCRED Purchase (Skrill)"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: ../includes/mycred-functions.php:2337
|
4100 |
msgid "buyCRED Purchase (Zombaio)"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: ../includes/mycred-functions.php:2338
|
4104 |
msgid "buyCRED Purchase (NETBilling)"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: ../includes/mycred-functions.php:2339
|
4108 |
msgid "buyCRED Purchase (BitPay)"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: ../includes/mycred-functions.php:2344
|
4112 |
msgid "Coupon Purchase"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: ../includes/mycred-functions.php:2347
|
4116 |
msgid "Store Purchase (WooCommerce)"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: ../includes/mycred-functions.php:2348
|
4120 |
msgid "Store Purchase (MarketPress)"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: ../includes/mycred-functions.php:2349
|
4124 |
msgid "Store Purchase (WP E-Commerce)"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: ../includes/mycred-functions.php:2354
|
4128 |
msgid "Event Payment (Event Espresso)"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: ../includes/mycred-functions.php:2355
|
4132 |
msgid "Event Sale (Event Espresso)"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: ../includes/mycred-functions.php:2359
|
4136 |
msgid "Event Payment (Events Manager)"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: ../includes/mycred-functions.php:2360
|
4140 |
msgid "Event Sale (Events Manager)"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: ../includes/mycred-functions.php:2364
|
4144 |
msgid "Content Purchase / Sale"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: ../includes/mycred-functions.php:2371
|
4148 |
msgid "Manual Adjustment by Admin"
|
4149 |
msgstr ""
|
4150 |
|
4192 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4193 |
msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
|
4194 |
|
4195 |
+
#: ../includes/mycred-install.php:54
|
4196 |
msgid ""
|
4197 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4198 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4199 |
"for you!"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: ../includes/mycred-install.php:59
|
4203 |
msgid ""
|
4204 |
"Sorry but your WordPress installation does not reach the minimum "
|
4205 |
"requirements for running myCRED. The following errors were given:"
|
4207 |
"Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
|
4208 |
"mínimos de mycred. Se produce los siguientes errores:"
|
4209 |
|
4210 |
+
#: ../includes/mycred-install.php:248
|
4211 |
msgid "myCRED needs your attention."
|
4212 |
msgstr "myCRED precisa tu atención."
|
4213 |
|
4214 |
+
#: ../includes/mycred-install.php:248
|
4215 |
msgid "Run Setup"
|
4216 |
msgstr "Ejecutar Configuración"
|
4217 |
|
4218 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4219 |
msgid "myCRED Setup"
|
4220 |
msgstr "Instalación de myCRED"
|
4221 |
|
4222 |
+
#: ../includes/mycred-install.php:390
|
4223 |
#, php-format
|
4224 |
msgid "%s Setup"
|
4225 |
msgstr "Configurar %s"
|
4226 |
|
4227 |
+
#: ../includes/mycred-install.php:392
|
4228 |
msgid "Step"
|
4229 |
msgstr "Paso"
|
4230 |
|
4231 |
+
#: ../includes/mycred-install.php:416
|
4232 |
msgid ""
|
4233 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4234 |
"points format, layout and security settings."
|
4236 |
"Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
|
4237 |
"el formato de puntos, disposiciones y configuraciones de seguridad."
|
4238 |
|
4239 |
+
#: ../includes/mycred-install.php:417
|
4240 |
msgid "Begin Setup"
|
4241 |
msgstr "Empezar la Instalación"
|
4242 |
|
4243 |
+
#: ../includes/mycred-install.php:472
|
4244 |
msgid "Select the format you want to use for your points."
|
4245 |
msgstr "Elige el formato que quieres usar para tus puntos."
|
4246 |
|
4247 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4248 |
msgid "Format"
|
4249 |
msgstr "Formato"
|
4250 |
|
4251 |
+
#: ../includes/mycred-install.php:476
|
4252 |
msgid "Separators"
|
4253 |
msgstr "Separadores"
|
4254 |
|
4255 |
+
#: ../includes/mycred-install.php:486
|
4256 |
msgid "Decimals"
|
4257 |
msgstr "Decimales"
|
4258 |
|
4259 |
+
#: ../includes/mycred-install.php:488
|
4260 |
msgid "Use zero for no decimals."
|
4261 |
msgstr "Usa cero para no tener decimales."
|
4262 |
|
4263 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4264 |
msgid "Presentation"
|
4265 |
msgstr "Presentación"
|
4266 |
|
4267 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4268 |
msgid "Name (Singular)"
|
4269 |
msgstr "Nombre (singular)"
|
4270 |
|
4271 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4272 |
msgid "Name (Plural)"
|
4273 |
msgstr "Nombre (plural)"
|
4274 |
|
4275 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4276 |
msgid "Prefix"
|
4277 |
msgstr "Prefijo"
|
4278 |
|
4279 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4280 |
msgid "Suffix"
|
4281 |
msgstr "Sufijo"
|
4282 |
|
4283 |
+
#: ../includes/mycred-install.php:516
|
4284 |
msgid "Cancel Setup"
|
4285 |
msgstr "Cancelar la Instalación"
|
4286 |
|
4287 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4288 |
msgid "Next"
|
4289 |
msgstr "Siguiente"
|
4290 |
|
4291 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4292 |
msgid "Security"
|
4293 |
msgstr "Seguridad"
|
4294 |
|
4295 |
+
#: ../includes/mycred-install.php:551
|
4296 |
msgid "Edit Settings Capability"
|
4297 |
msgstr "Editar la capacidad de las configuraciones"
|
4298 |
|
4299 |
#. is this user's or users (plural)?
|
4300 |
+
#: ../includes/mycred-install.php:555
|
4301 |
msgid "Edit Users %plural% Capability"
|
4302 |
msgstr "Editar la Capacidad de %plural% del Usuario"
|
4303 |
|
4304 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4305 |
msgid "Maximum %plural% payouts"
|
4306 |
msgstr "Desembolso %plural% Máximo"
|
4307 |
|
4308 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4309 |
msgid ""
|
4310 |
"As an added security, you can set the maximum amount a user can gain or "
|
4311 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4317 |
"que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
|
4318 |
"o gastar en tu tienda. Ponga zero para desactivar."
|
4319 |
|
4320 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4321 |
msgid "Excludes"
|
4322 |
msgstr "Excluye"
|
4323 |
|
4324 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4325 |
msgid "Exclude those who can \"Edit Settings\"."
|
4326 |
msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
|
4327 |
|
4328 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4329 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4330 |
msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
|
4331 |
|
4332 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4333 |
msgid "Exclude the following user IDs:"
|
4334 |
msgstr "Excluir a los siguientes IDs de usuarios"
|
4335 |
|
4336 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4337 |
msgid "User Deletions"
|
4338 |
msgstr "Eliminación de Usuarios"
|
4339 |
|
4340 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4341 |
msgid "Delete log entries when user is deleted."
|
4342 |
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
4343 |
|
4344 |
+
#: ../includes/mycred-install.php:604
|
4345 |
msgid "Ready"
|
4346 |
msgstr "Listo"
|
4347 |
|
4348 |
+
#: ../includes/mycred-install.php:605
|
4349 |
msgid "Almost done! Click the button below to finish this setup."
|
4350 |
msgstr ""
|
4351 |
"¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
|
4352 |
"configuración."
|
4353 |
|
4354 |
+
#: ../includes/mycred-install.php:606
|
4355 |
msgid "Install & Run"
|
4356 |
msgstr "Instalar e ejecutar"
|
4357 |
|
4365 |
msgid "entry"
|
4366 |
msgstr "entrada"
|
4367 |
|
4368 |
+
#: ../includes/mycred-log.php:412
|
4369 |
msgid "Go to the first page"
|
4370 |
msgstr "Ir a la primera página"
|
4371 |
|
4372 |
+
#: ../includes/mycred-log.php:419
|
4373 |
msgid "Go to the previous page"
|
4374 |
msgstr "Ir a la página anterior"
|
4375 |
|
4376 |
+
#: ../includes/mycred-log.php:428
|
4377 |
msgid "Current page"
|
4378 |
msgstr "Página corriente"
|
4379 |
|
4380 |
+
#: ../includes/mycred-log.php:434
|
4381 |
#, php-format
|
4382 |
msgctxt "paging"
|
4383 |
msgid "%1$s of %2$s"
|
4384 |
msgstr "%1$s de %2$s"
|
4385 |
|
4386 |
+
#: ../includes/mycred-log.php:438
|
4387 |
msgid "Go to the next page"
|
4388 |
msgstr "Ir a la página siguiente"
|
4389 |
|
4390 |
+
#: ../includes/mycred-log.php:445
|
4391 |
msgid "Go to the last page"
|
4392 |
msgstr "Ir a la última página"
|
4393 |
|
4395 |
msgid "Show all references"
|
4396 |
msgstr "Muestra todas las referencias"
|
4397 |
|
4398 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4399 |
msgid "User ID"
|
4400 |
msgstr "ID del Usuario"
|
4401 |
|
4630 |
"Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
|
4631 |
"maliciosas conozcan detalles de tu configuración!"
|
4632 |
|
4633 |
+
#: ../includes/mycred-shortcodes.php:178
|
4634 |
msgid "Leaderboard is empty."
|
4635 |
msgstr "La Tabla de Clasificación esta vacía"
|
4636 |
|
4637 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4638 |
msgid "Amount missing!"
|
4639 |
msgstr "¡Falta la cantidad!"
|
4640 |
|
4641 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4642 |
msgid "Log Template Missing!"
|
4643 |
msgstr "¡Plantilla de Registro No Encontrado!"
|
4644 |
|
4645 |
+
#: ../includes/mycred-shortcodes.php:515
|
4646 |
msgid "Anchor missing URL!"
|
4647 |
msgstr "¡La Ancla falta el URL!"
|
4648 |
|
4649 |
+
#: ../includes/mycred-shortcodes.php:577
|
4650 |
msgid "User ID missing for recipient."
|
4651 |
msgstr "ID del Usuario falta para el destinatario"
|
4652 |
|
4653 |
+
#: ../includes/mycred-shortcodes.php:632
|
4654 |
msgid "Sent"
|
4655 |
msgstr "Enviado"
|
4656 |
|
4657 |
+
#: ../includes/mycred-shortcodes.php:633
|
4658 |
msgid "Error - Try Again"
|
4659 |
msgstr "Error - Inténtelo de nuevo."
|
4660 |
|
4661 |
+
#: ../includes/mycred-shortcodes.php:742
|
4662 |
msgid "A video ID is required for this shortcode"
|
4663 |
msgstr "Este código corto (shortcode) precisa un ID del video."
|
4664 |
|
4665 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4666 |
msgid "Point types not found."
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4670 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4671 |
#, php-format
|
4672 |
msgid "You are excluded from using %s."
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4676 |
msgid "Your balance is too low to use this feature."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: ../includes/mycred-shortcodes.php:924
|
4680 |
#, php-format
|
4681 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: ../includes/mycred-shortcodes.php:933
|
4685 |
#, php-format
|
4686 |
msgid "Your current %s balance"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: ../includes/mycred-shortcodes.php:941
|
4690 |
#, php-format
|
4691 |
msgid "Minimum %s"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: ../includes/mycred-shortcodes.php:945
|
4695 |
#, php-format
|
4696 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: ../includes/mycred-shortcodes.php:951
|
4700 |
msgid "Exchange"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4704 |
#, php-format
|
4705 |
msgid "You must exchange at least %s!"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4709 |
#, php-format
|
4710 |
msgid "Exchange from %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4714 |
#, php-format
|
4715 |
msgid "Exchange to %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4719 |
#, php-format
|
4720 |
msgid "You have successfully exchanged %s into %s."
|
4721 |
msgstr ""
|
4734 |
msgid "My Balance"
|
4735 |
msgstr "Mi Saldo"
|
4736 |
|
4737 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4738 |
msgid "%plural% History"
|
4739 |
msgstr "Historial de %plural%"
|
4740 |
|
5172 |
msgid "Current balance"
|
5173 |
msgstr "Saldo Actual"
|
5174 |
|
5175 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5176 |
msgid "Go"
|
5177 |
msgstr "Ir a"
|
5178 |
|
5179 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5180 |
msgid "Show in Profile"
|
5181 |
msgstr "Mostrar en Perfil"
|
5182 |
|
5183 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5184 |
#, php-format
|
5185 |
msgid "%singular% Balance"
|
5186 |
msgstr "%singular% Saldo"
|
5187 |
|
5188 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5189 |
#, php-format
|
5190 |
msgid "Members and visitors can other members %_singular% balance."
|
5191 |
msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
|
5192 |
|
5193 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5194 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5195 |
msgstr ""
|
5196 |
"Ten en cuenta que tambien puedes usar %rank_logo% para mostrar la imagen "
|
5197 |
"principal del rango."
|
5198 |
|
5199 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5200 |
msgid "Members can view each others %_plural% history."
|
5201 |
msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
|
5202 |
|
5203 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5204 |
msgid "Menu Title"
|
5205 |
msgstr "Título de Menú"
|
5206 |
|
5207 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5208 |
msgid "Title shown to me"
|
5209 |
msgstr "Título mostrado a mi"
|
5210 |
|
5211 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5212 |
#, php-format
|
5213 |
msgid "Title shown to others. Use %s to show the first name."
|
5214 |
msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
|
5215 |
|
5216 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5217 |
msgid "Menu Position"
|
5218 |
msgstr "Posición del Menú"
|
5219 |
|
5220 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5221 |
msgid "Current menu positions:"
|
5222 |
msgstr "Posiciones Acuales del Menú"
|
5223 |
|
5224 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5225 |
msgid "History URL slug"
|
5226 |
msgstr "La ficha historial de la URL"
|
5227 |
|
5228 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5229 |
msgid "Do not use empty spaces!"
|
5230 |
msgstr "¡No utilice espacios vacíos!"
|
5231 |
|
5232 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5233 |
msgid "Number of history entries to show"
|
5234 |
msgstr "Numero de entradas de historial a mostrar"
|
5235 |
|
5366 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5367 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5368 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5369 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5370 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5371 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5372 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5373 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5428 |
msgid "%plural% for viewing %s"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5432 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5433 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5434 |
msgid "Limit"
|
5435 |
msgstr "Límite"
|
5522 |
msgid "Custom tags: %url%, %title% or %id%."
|
5523 |
msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
|
5524 |
|
5525 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5526 |
msgid "Note!"
|
5527 |
msgstr "¡Atención!"
|
5528 |
|
5538 |
"valor fijado en href. Si estas utilizando esta función para \"compartir\" "
|
5539 |
"contenidos, se recomienda que limites por ID."
|
5540 |
|
5541 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5542 |
msgid "Available Shortcode"
|
5543 |
msgstr "Código corto Disponible"
|
5544 |
|
5545 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5546 |
msgid "Amount to award for viewing videos."
|
5547 |
msgstr "Cantidad a ceder para ver videos."
|
5548 |
|
5549 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5550 |
msgid "Award Logic"
|
5551 |
msgstr "Lógica de Concesión"
|
5552 |
|
5553 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5554 |
#, php-format
|
5555 |
msgid "Select when %_plural% should be awarded or deducted."
|
5556 |
msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
|
5557 |
|
5558 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5559 |
msgid "Play - As soon as video starts playing."
|
5560 |
msgstr "Play - En cuanto el video empiece a reproducirse."
|
5561 |
|
5562 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5563 |
msgid "Full - First when the entire video has played."
|
5564 |
msgstr "Completo - Primero cuando el video entero se haya reproducido."
|
5565 |
|
5566 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5567 |
msgid "Interval - For each x number of seconds watched."
|
5568 |
msgstr "Intervalo - Para cada x numero de segundos vistos."
|
5569 |
|
5570 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5571 |
msgid "Number of seconds"
|
5572 |
msgstr "Numero de segundos"
|
5573 |
|
5574 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5575 |
msgid "Leniency"
|
5576 |
msgstr "Lenidad"
|
5577 |
|
5578 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5579 |
msgid ""
|
5580 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5581 |
"length."
|
5583 |
"El porcentaje máximo medido que un usuario vea puede variar con la duración "
|
5584 |
"actual del video."
|
5585 |
|
5586 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5587 |
msgid ""
|
5588 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5589 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5593 |
"usuario ve una película y a veces la contador puede disminuir por pocos "
|
5594 |
"segundos por falta de buffering o por errores de reproducción."
|
5595 |
|
5596 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5597 |
msgid "Affiliate Program"
|
5598 |
msgstr "Programa de Afiliados"
|
5599 |
|
5600 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5601 |
msgid "Per Day"
|
5602 |
msgstr "Por Día"
|
5603 |
|
5604 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5605 |
msgid "Link"
|
5606 |
msgstr "Enlace"
|
5607 |
|
5608 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5609 |
+
msgid "Visitors Referred"
|
5610 |
+
msgstr ""
|
5611 |
+
|
5612 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5613 |
+
msgid "Signups Referred"
|
5614 |
+
msgstr ""
|
5615 |
+
|
5616 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5617 |
msgid "Referring Visitors"
|
5618 |
msgstr "Referiendo Visitantes"
|
5619 |
|
5620 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5621 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5622 |
msgstr ""
|
5623 |
"El numero de referencias que cada miembro puede hacer. Utilice cero para "
|
5624 |
"ilimitado."
|
5625 |
|
5626 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5627 |
msgid "Referring Signups"
|
5628 |
msgstr "Inscripciones a través de Referencias"
|
5629 |
|
5630 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5631 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5632 |
msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
|
5633 |
|
5634 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5635 |
msgid "Registrations are disabled."
|
5636 |
msgstr "Se han deshabilitado inscripciones."
|
5637 |
|
5638 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5639 |
msgid "Referral Links"
|
5640 |
msgstr "Enlaces Referentes"
|
5641 |
|
5642 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5643 |
msgid "Assign numeric referral IDs to each user."
|
5644 |
msgstr "Asignar ID numerica referente a cada usuario."
|
5645 |
|
5646 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5647 |
msgid "Example"
|
5648 |
msgstr "Ejemplo"
|
5649 |
|
5650 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5651 |
msgid "Assign usernames as IDs for each user."
|
5652 |
msgstr "Asignar los nombres de usuario como ID para cada usuario."
|
5653 |
|
5654 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5655 |
msgid "IP Limit"
|
5656 |
msgstr "Límite de IP"
|
5657 |
|
5658 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5659 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5660 |
msgstr ""
|
5661 |
"El numero de veces que cada IP concede %_plural%. Utilice cero para un "
|
5662 |
"número ilimitado"
|
5663 |
|
5664 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5665 |
msgid "BuddyPress Profile"
|
5666 |
msgstr "Perfil de BuddyPress"
|
5667 |
|
5668 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5669 |
msgid "Insert Link in users Profile"
|
5670 |
msgstr "Insertar enlace en el perfil del usuario"
|
5671 |
|
5672 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5673 |
msgid ""
|
5674 |
"Option to inser the referral link in users profiles. Links will only be "
|
5675 |
"visible to users viewing their own profiles or administrators."
|
5678 |
" Estos enlaces serán visibles a los administradores o a los usuarios cuando "
|
5679 |
"ven a sus propios perfiles."
|
5680 |
|
5681 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5682 |
msgid "Leave empty to hide."
|
5683 |
msgstr "Deje el campo vacío para ocultarlo."
|
5684 |
|
5685 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5686 |
msgid "Description"
|
5687 |
msgstr "Descripción"
|
5688 |
|
5689 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5690 |
msgid "Optional description to insert under the link."
|
5691 |
msgstr "Insertar la descripción opcional debajo del enlace."
|
5692 |
|
5693 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5694 |
msgid "Profile Positioning"
|
5695 |
msgstr "Posicionamiento del Perfil"
|
5696 |
|
5697 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5698 |
msgid ""
|
5699 |
"You can move around the referral link on your users profile by changing the "
|
5700 |
"position. Increase to move up, decrease to move down."
|
5702 |
"Puedes moverte por el enlace de referencia en su perfil los usuarios "
|
5703 |
"cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
|
5704 |
|
5705 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5706 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5707 |
msgstr ""
|
5708 |
"¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
|
5709 |
"en el perfil del usuario!"
|
5710 |
|
5711 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5712 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5713 |
msgstr "Requiere que BuddyPress Extended Profiles sea activado."
|
5714 |
|
5715 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5716 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5717 |
msgid "Access denied for this action"
|
5718 |
msgstr "Acceso denegado para esta acción"
|
5719 |
|
5729 |
msgid "Entry Updated"
|
5730 |
msgstr "Entrada Actualizada"
|
5731 |
|
5732 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5733 |
msgid "Entries"
|
5734 |
msgstr "Entradas"
|
5735 |
|
5736 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5737 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5738 |
msgid "Export"
|
5739 |
msgstr "Exportar"
|
5740 |
|
5781 |
msgstr "Mi Historial de %s"
|
5782 |
|
5783 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5784 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5785 |
msgid "Missing point type"
|
5786 |
msgstr "Falta el tipo de punto"
|
5787 |
|
5788 |
+
#: ../modules/mycred-module-settings.php:129
|
5789 |
msgid "Accounts successfully reset"
|
5790 |
msgstr "Las cuentas fueron reiniciadas con éxito."
|
5791 |
|
5792 |
+
#: ../modules/mycred-module-settings.php:175
|
5793 |
msgid "No users found to export"
|
5794 |
msgstr "No se encontro usuarios para exportar"
|
5795 |
|
5796 |
+
#: ../modules/mycred-module-settings.php:331
|
5797 |
#, php-format
|
5798 |
msgid "%s Settings"
|
5799 |
msgstr "Configuración de %s"
|
5800 |
|
5801 |
+
#: ../modules/mycred-module-settings.php:334
|
5802 |
msgid "Adjust your core or add-on settings."
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: ../modules/mycred-module-settings.php:339
|
5806 |
msgid "Core Settings"
|
5807 |
msgstr "Ajustes Basicos"
|
5808 |
|
5809 |
+
#: ../modules/mycred-module-settings.php:341
|
5810 |
msgid "Name"
|
5811 |
msgstr "Nombre"
|
5812 |
|
5813 |
+
#: ../modules/mycred-module-settings.php:346
|
5814 |
#, php-format
|
5815 |
msgid "Accessible though the %singular% template tag."
|
5816 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5817 |
|
5818 |
+
#: ../modules/mycred-module-settings.php:351
|
5819 |
msgid "Accessible though the %plural% template tag."
|
5820 |
msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
|
5821 |
|
5822 |
+
#: ../modules/mycred-module-settings.php:354
|
5823 |
msgid "Tip"
|
5824 |
msgstr "Pista"
|
5825 |
|
5826 |
+
#: ../modules/mycred-module-settings.php:354
|
5827 |
msgid ""
|
5828 |
"Adding an underscore at the beginning of template tag for names will return "
|
5829 |
"them in lowercase. i.e. %_singular%"
|
5831 |
"Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
|
5832 |
"nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
|
5833 |
|
5834 |
+
#: ../modules/mycred-module-settings.php:372
|
5835 |
msgid "Separator"
|
5836 |
msgstr "Separador"
|
5837 |
|
5838 |
+
#: ../modules/mycred-module-settings.php:379
|
5839 |
msgid "Edit Settings"
|
5840 |
msgstr "Editar las Configuraciones"
|
5841 |
|
5842 |
#. or "Verificar la capacidad de"
|
5843 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5844 |
+
#: php:386
|
5845 |
msgid "Capability to check for."
|
5846 |
msgstr "La capacidad que se va a verificar."
|
5847 |
|
5848 |
+
#: ../modules/mycred-module-settings.php:384
|
5849 |
msgid "Edit Users %plural%"
|
5850 |
msgstr "Edita %plural% de Usuarios"
|
5851 |
|
5852 |
+
#: ../modules/mycred-module-settings.php:408
|
5853 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5854 |
msgstr ""
|
5855 |
"Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
|
5856 |
"espacios!"
|
5857 |
|
5858 |
+
#: ../modules/mycred-module-settings.php:428
|
5859 |
msgid "Management"
|
5860 |
msgstr "Gestión"
|
5861 |
|
5862 |
+
#: ../modules/mycred-module-settings.php:430
|
5863 |
msgid "The Log"
|
5864 |
msgstr "El Registro"
|
5865 |
|
5866 |
+
#: ../modules/mycred-module-settings.php:433
|
5867 |
msgid "Table Name"
|
5868 |
msgstr "Nombre de Tabla"
|
5869 |
|
5870 |
+
#: ../modules/mycred-module-settings.php:442
|
5871 |
msgid "Empty Log"
|
5872 |
msgstr "Registro Vacío"
|
5873 |
|
5874 |
+
#: ../modules/mycred-module-settings.php:448
|
5875 |
msgid "User Meta Key"
|
5876 |
msgstr "Clave Meta del Usuario"
|
5877 |
|
5878 |
+
#: ../modules/mycred-module-settings.php:457
|
5879 |
msgid "Set all to zero"
|
5880 |
msgstr "Ajusta todo a cero"
|
5881 |
|
5882 |
+
#: ../modules/mycred-module-settings.php:457
|
5883 |
msgid "CSV Export"
|
5884 |
msgstr "Exportar CSV"
|
5885 |
|
5886 |
+
#: ../modules/mycred-module-settings.php:478
|
5887 |
msgid "Default"
|
5888 |
msgstr "Predefinido"
|
5889 |
|
5890 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5891 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5892 |
msgid "Meta Key"
|
5893 |
msgstr "Clave Meta"
|
5894 |
|
5895 |
+
#: ../modules/mycred-module-settings.php:519
|
5896 |
msgid "Add New Type"
|
5897 |
msgstr "Añadir Nuevo Tipo"
|
5898 |
|
5899 |
+
#: ../modules/mycred-module-settings.php:524
|
5900 |
msgid "A unique ID for this type."
|
5901 |
msgstr "Una ID exclusiva para este tipo."
|
5902 |
|
5903 |
+
#: ../modules/mycred-module-settings.php:529
|
5904 |
msgid "Menu and page title."
|
5905 |
msgstr "Título del Menú y de la Página\n"
|
5906 |
|
5907 |
+
#: ../modules/mycred-module-settings.php:532
|
5908 |
msgid "The meta key will define where your users balances are saved."
|
5909 |
msgstr "La clave meta sera definida cuando los saldos de tus usuarios sea guardado."
|
5910 |
|
5911 |
+
#: ../modules/mycred-module-settings.php:553
|
5912 |
msgid "Identify users by"
|
5913 |
msgstr "Identifique usuarios por"
|
5914 |
|
5915 |
+
#: ../modules/mycred-module-settings.php:559
|
5916 |
msgid "User Email"
|
5917 |
msgstr "Email de Usuario"
|
5918 |
|
5919 |
+
#: ../modules/mycred-module-settings.php:560
|
5920 |
msgid "User Login"
|
5921 |
msgstr "Ingreso de Usuario"
|
5922 |
|
5923 |
+
#: ../modules/mycred-module-settings.php:567
|
5924 |
msgid ""
|
5925 |
"Use ID if you intend to use this export as a backup of your current site "
|
5926 |
"while Email is recommended if you want to export to a different site."
|
5928 |
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
5929 |
"Email si deseas exportar la data a otro sitio"
|
5930 |
|
5931 |
+
#: ../modules/mycred-module-settings.php:570
|
5932 |
msgid "Import Log Entry"
|
5933 |
msgstr "Importa la entrada de registro"
|
5934 |
|
5935 |
+
#: ../modules/mycred-module-settings.php:572
|
5936 |
#, php-format
|
5937 |
msgid ""
|
5938 |
"Optional log entry to use if you intend to import this file in a different "
|
5941 |
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
5942 |
"fichero en otra instalación %s."
|
5943 |
|
5944 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5945 |
msgid "BadgeOS"
|
5946 |
msgstr "BadgeOS"
|
5947 |
|
5948 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5949 |
msgid ""
|
5950 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5951 |
"overridden for individual achievement type."
|
5953 |
"Configuraciones predefinidos para cada tipo de BadgeOS Logro (Achievement). "
|
5954 |
"Estos ajustes pueden ser anulados para el tipo de logro individual."
|
5955 |
|
5956 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5957 |
#, php-format
|
5958 |
msgid ""
|
5959 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5962 |
"Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
|
5963 |
"de usar este función."
|
5964 |
|
5965 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5966 |
msgid "%plural% to Award"
|
5967 |
msgstr "%plural% a Conceder"
|
5968 |
|
5969 |
#. also "Ponga cero para inhabilitar"
|
5970 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5971 |
msgid "Use zero to disable"
|
5972 |
msgstr "Ponga cero para desactivar"
|
5973 |
|
5974 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5975 |
msgid "Deduction Log Template"
|
5976 |
msgstr "Plantilla de Registro Descontado"
|
5977 |
|
5978 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5979 |
#, php-format
|
5980 |
msgid "Default %s for %s"
|
5981 |
msgstr "Predeterminar %s por %s"
|
5982 |
|
5983 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5984 |
msgid "Use zero to disable users gaining %_plural%"
|
5985 |
msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
|
5986 |
|
5987 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5988 |
msgid "Default Log template"
|
5989 |
msgstr "Plantilla de Registro Predefinido"
|
5990 |
|
lang/mycred-fa_IR.mo
CHANGED
Binary file
|
lang/mycred-fa_IR.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Persian (Iran)\n"
|
10 |
"Plural-Forms: nplurals=1; plural=0\n"
|
@@ -23,90 +23,90 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPath-1: .\n"
|
24 |
"X-Loco-Target-Locale: fa_IR"
|
25 |
|
26 |
-
#: ../mycred.php:
|
27 |
msgid "Balance"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../mycred.php:
|
31 |
msgid "%label% History"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../mycred.php:
|
35 |
#, php-format
|
36 |
msgid "About %s"
|
37 |
msgstr "درباره %s"
|
38 |
|
39 |
-
#: ../mycred.php:
|
40 |
msgid "Awesome People"
|
41 |
msgstr "\"اعتبار من\""
|
42 |
|
43 |
-
#: ../mycred.php:
|
44 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
45 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
46 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
47 |
-
#: includes/mycred-shortcodes.php:
|
48 |
msgid "Processing..."
|
49 |
msgstr "در حال پردازش ..."
|
50 |
|
51 |
-
#: ../mycred.php:
|
52 |
msgid ""
|
53 |
"Warning! All entries in your log will be permanently removed! This can not "
|
54 |
"be undone!"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../mycred.php:
|
58 |
msgid ""
|
59 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
60 |
"can not be undone!"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../mycred.php:
|
64 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
65 |
msgstr ""
|
66 |
"اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
|
67 |
"غیرقابل بازگشت می باشد !"
|
68 |
|
69 |
-
#: ../mycred.php:
|
70 |
msgid "Done!"
|
71 |
msgstr "انجام شد !"
|
72 |
|
73 |
-
#: ../mycred.php:
|
74 |
msgid "Close"
|
75 |
msgstr "بستن"
|
76 |
|
77 |
-
#: ../mycred.php:
|
78 |
msgid "Export users %plural%"
|
79 |
msgstr "خروجی گرفتن از %plural% کاربران"
|
80 |
|
81 |
-
#: ../mycred.php:
|
82 |
msgid "Edit Users Balance"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../mycred.php:
|
86 |
msgid "Edit Log Entry"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../mycred.php:
|
90 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../mycred.php:
|
94 |
msgid "Log entry updated"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../mycred.php:
|
98 |
-
#: notices.php:
|
99 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
100 |
msgid "Setup"
|
101 |
msgstr "نصب"
|
102 |
|
103 |
-
#: ../mycred.php:
|
104 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
105 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
106 |
msgid "Settings"
|
107 |
msgstr "تنظیمات"
|
108 |
|
109 |
-
#: ../mycred.php:
|
110 |
msgid ""
|
111 |
"Make sure to backup your database and files before updating, in case "
|
112 |
"anything goes wrong!"
|
@@ -144,10 +144,10 @@ msgstr "روزی یک بار ( نیمه شب ریست می شود )"
|
|
144 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
145 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
146 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
147 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
148 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
149 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
150 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
151 |
msgid "Select"
|
152 |
msgstr "انتخاب"
|
153 |
|
@@ -247,7 +247,7 @@ msgid "Requirements"
|
|
247 |
msgstr ""
|
248 |
|
249 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
250 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
251 |
msgid "Users"
|
252 |
msgstr "کاربران"
|
253 |
|
@@ -330,22 +330,22 @@ msgstr ""
|
|
330 |
|
331 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
332 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
333 |
-
#: modules/mycred-module-buddypress.php:
|
334 |
msgid "Do not show"
|
335 |
msgstr "نمایش نده !"
|
336 |
|
337 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
338 |
-
#: buddypress.php:
|
339 |
msgid "Include in Profile Header"
|
340 |
msgstr ""
|
341 |
|
342 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
343 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
344 |
msgid "Include under the \"Profile\" tab"
|
345 |
msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
|
346 |
|
347 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
348 |
-
#: buddypress.php:
|
349 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
350 |
msgstr ""
|
351 |
|
@@ -414,7 +414,7 @@ msgstr ""
|
|
414 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
415 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
416 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
417 |
-
#: modules/mycred-module-settings.php:
|
418 |
msgid "Access Denied"
|
419 |
msgstr "دسترسی غیرمجاز می باشد"
|
420 |
|
@@ -568,8 +568,8 @@ msgstr "پرداخت"
|
|
568 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
569 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
570 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
571 |
-
#: modules/mycred-module-hooks.php:
|
572 |
-
#: plugins/mycred-hook-badgeOS.php:
|
573 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
574 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
575 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -666,15 +666,15 @@ msgstr "پرداخت به کاربران :"
|
|
666 |
|
667 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
668 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
669 |
-
#: creds.php:
|
670 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
671 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
672 |
-
#: includes/mycred-shortcodes.php:
|
673 |
msgid "Amount"
|
674 |
msgstr "مقدار"
|
675 |
|
676 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
677 |
-
#: modules/mycred-module-hooks.php:
|
678 |
msgid "Interval"
|
679 |
msgstr "فاصله زمانی"
|
680 |
|
@@ -728,7 +728,7 @@ msgid "Edit Pending Payment"
|
|
728 |
msgstr ""
|
729 |
|
730 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
731 |
-
#: addon-buy-creds.php:
|
732 |
msgid "No pending payments found"
|
733 |
msgstr ""
|
734 |
|
@@ -737,23 +737,23 @@ msgid "Not found in Trash"
|
|
737 |
msgstr ""
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
740 |
-
#: addon-buy-creds.php:
|
741 |
msgid "Transaction ID"
|
742 |
msgstr ""
|
743 |
|
744 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
745 |
-
#: addon-buy-creds.php:
|
746 |
msgid "Buyer"
|
747 |
msgstr ""
|
748 |
|
749 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
750 |
-
#: addon-buy-creds.php:
|
751 |
#: gateway.php:563
|
752 |
msgid "Cost"
|
753 |
msgstr ""
|
754 |
|
755 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
756 |
-
#: addon-buy-creds.php:
|
757 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
758 |
msgid "Gateway"
|
759 |
msgstr "درگاه"
|
@@ -804,7 +804,7 @@ msgstr ""
|
|
804 |
|
805 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
806 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
807 |
-
#: module-settings.php:
|
808 |
msgid "Point Types"
|
809 |
msgstr ""
|
810 |
|
@@ -857,7 +857,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
857 |
msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
|
858 |
|
859 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
860 |
-
#: hooks.php:
|
861 |
msgid "Available Shortcodes"
|
862 |
msgstr ""
|
863 |
|
@@ -884,7 +884,7 @@ msgid "%s Payment Gateways"
|
|
884 |
msgstr "درگاه های پرداخت %s"
|
885 |
|
886 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
887 |
-
#: addon-buy-creds.php:
|
888 |
msgid "buyCRED Settings"
|
889 |
msgstr ""
|
890 |
|
@@ -911,7 +911,7 @@ msgid "Enable for test purchases."
|
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
914 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
915 |
msgid "Update Settings"
|
916 |
msgstr "به روزرسانی تنظیمات"
|
917 |
|
@@ -919,103 +919,103 @@ msgstr "به روزرسانی تنظیمات"
|
|
919 |
msgid "More Gateways"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
923 |
#: 634
|
924 |
msgid "Date"
|
925 |
msgstr "تاریخ"
|
926 |
|
927 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
928 |
msgid "Payed"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
932 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
936 |
#: booking/mycred-eventespresso3.php:367
|
937 |
msgid "Gateway Settings"
|
938 |
msgstr "تنظیمات درگاه پرداخت"
|
939 |
|
940 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
941 |
-
#: content/myCRED-addon-sell-content.php:
|
942 |
msgid "No purchases found"
|
943 |
msgstr "خریدی یافت نشد"
|
944 |
|
945 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
946 |
-
#: addon-buy-creds.php:
|
947 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
948 |
msgstr ""
|
949 |
"برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
|
950 |
"جانبی را راه اندازی کنید ."
|
951 |
|
952 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
953 |
-
#: addon-buy-creds.php:
|
954 |
msgid "No gateways installed."
|
955 |
msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
|
956 |
|
957 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
958 |
-
#: addon-buy-creds.php:
|
959 |
msgid "Gateway does not exist."
|
960 |
msgstr "درگاه موجود نیست ."
|
961 |
|
962 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
963 |
msgid "Yourself"
|
964 |
msgstr "خودتان"
|
965 |
|
966 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
967 |
msgid "No active gateways found."
|
968 |
msgstr "درگاه پرداخت فعالی یافت نشد ."
|
969 |
|
970 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
971 |
msgid "The selected gateway is not active."
|
972 |
msgstr "درگاه پرداخت انتخابی فعال نیست ."
|
973 |
|
974 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
975 |
#, php-format
|
976 |
msgid "Buy with %gateway%"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
980 |
#: content/myCRED-addon-sell-content.php:44
|
981 |
msgid "Buy Now"
|
982 |
msgstr "همین الان بخرید"
|
983 |
|
984 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
985 |
msgid "No users found"
|
986 |
msgstr "کاربری یافت نشد"
|
987 |
|
988 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
989 |
msgid "To"
|
990 |
msgstr "به"
|
991 |
|
992 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
993 |
msgid "Select Amount"
|
994 |
msgstr "مقدار را انتخاب کنید"
|
995 |
|
996 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
997 |
msgid "min."
|
998 |
msgstr "حداقل"
|
999 |
|
1000 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1001 |
msgid "Select Gateway"
|
1002 |
msgstr "درگاه پرداخت را انتخاب کنید"
|
1003 |
|
1004 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1005 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1006 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1007 |
#: php:35
|
1008 |
msgid "Pay Now"
|
1009 |
msgstr "همین حالا بپردازید"
|
1010 |
|
1011 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1012 |
-
#: php:
|
1013 |
msgid "Cancel"
|
1014 |
msgstr "لغو"
|
1015 |
|
1016 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1017 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1018 |
-
#: module-settings.php:
|
1019 |
msgid "Actions"
|
1020 |
msgstr "عملیات ها"
|
1021 |
|
@@ -1155,55 +1155,55 @@ msgstr "اگر به صورت خودکار به آدرس مورد نظر منتق
|
|
1155 |
msgid "The following information will be sent to the gateway"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1159 |
msgid "Outside US"
|
1160 |
msgstr "خارج از آمـریکا"
|
1161 |
|
1162 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1163 |
msgid "January"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1167 |
msgid "February"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1171 |
msgid "March"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1175 |
msgid "April"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1179 |
msgid "May"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1183 |
msgid "June"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1187 |
msgid "July"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1191 |
msgid "August"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1195 |
msgid "September"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1199 |
msgid "October"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1203 |
msgid "November"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1207 |
msgid "December"
|
1208 |
msgstr ""
|
1209 |
|
@@ -1455,7 +1455,7 @@ msgstr "صفحه تسویه حساب"
|
|
1455 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1456 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1457 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1458 |
-
#: modules/mycred-module-hooks.php:
|
1459 |
msgid "Title"
|
1460 |
msgstr "عنوان"
|
1461 |
|
@@ -1661,7 +1661,7 @@ msgid "not yet used"
|
|
1661 |
msgstr ""
|
1662 |
|
1663 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1664 |
-
#: php:
|
1665 |
msgid "Total"
|
1666 |
msgstr ""
|
1667 |
|
@@ -1823,7 +1823,7 @@ msgid "Apply Coupon"
|
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1826 |
-
#: notices/myCRED-addon-email-notices.php:
|
1827 |
msgid "Email Notice"
|
1828 |
msgstr "اطلاعیه ایمیلی"
|
1829 |
|
@@ -2021,17 +2021,17 @@ msgstr ""
|
|
2021 |
"نیز قابل ویرایش هستند ."
|
2022 |
|
2023 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2024 |
-
#: notices/myCRED-addon-email-notices.php:
|
2025 |
msgid "Email Settings"
|
2026 |
msgstr "تنظیمات ایمیل"
|
2027 |
|
2028 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2029 |
-
#: notices/myCRED-addon-email-notices.php:
|
2030 |
msgid "Senders Name:"
|
2031 |
msgstr "نام ارسال کننده :"
|
2032 |
|
2033 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2034 |
-
#: notices/myCRED-addon-email-notices.php:
|
2035 |
msgid "Senders Email:"
|
2036 |
msgstr "آدرس ایمیل ارسال کننده :"
|
2037 |
|
@@ -2058,140 +2058,140 @@ msgstr ""
|
|
2058 |
"در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
|
2059 |
"."
|
2060 |
|
2061 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2062 |
-
#: notices/myCRED-addon-email-notices.php:
|
2063 |
msgid "Email Subject"
|
2064 |
msgstr "موضوع ایمیل"
|
2065 |
|
2066 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2067 |
msgid "Status"
|
2068 |
msgstr "وضعیت"
|
2069 |
|
2070 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2071 |
msgid "Not Active"
|
2072 |
msgstr "غیرفعال"
|
2073 |
|
2074 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2075 |
#, php-format
|
2076 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2077 |
msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
|
2078 |
|
2079 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2080 |
msgid "Active"
|
2081 |
msgstr "فعال"
|
2082 |
|
2083 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2084 |
#, php-format
|
2085 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2086 |
msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
|
2087 |
|
2088 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2089 |
msgid "Email is sent when"
|
2090 |
msgstr "ایمیل فرستاده وقتی فرستاده شود که"
|
2091 |
|
2092 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2093 |
msgid "Missing instance for this notice!"
|
2094 |
msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
|
2095 |
|
2096 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2097 |
-
#: notices/myCRED-addon-email-notices.php:
|
2098 |
-
#: addon-email-notices.php:
|
2099 |
msgid "Sent To"
|
2100 |
msgstr "ارسال شده به"
|
2101 |
|
2102 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2103 |
-
#: notices/myCRED-addon-email-notices.php:
|
2104 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2105 |
msgid "User"
|
2106 |
msgstr "کاربر"
|
2107 |
|
2108 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2109 |
-
#: notices/myCRED-addon-email-notices.php:
|
2110 |
msgid "Administrator"
|
2111 |
msgstr "مدیر"
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
msgid "Both Administrator and User"
|
2115 |
msgstr "هم کاربر و هم مدیر"
|
2116 |
|
2117 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2118 |
msgid "Available Template Tags"
|
2119 |
msgstr "نمونه تگ های قابل استفاده"
|
2120 |
|
2121 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2122 |
msgid "Email Header"
|
2123 |
msgstr "سربرگ ایمیل"
|
2124 |
|
2125 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2126 |
msgid "Send this email notice when..."
|
2127 |
msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
|
2128 |
|
2129 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2130 |
msgid "Recipient:"
|
2131 |
msgstr "گیرندگان ایمیل :"
|
2132 |
|
2133 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2134 |
msgid "Both"
|
2135 |
msgstr "هر دو"
|
2136 |
|
2137 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2138 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2139 |
-
#: settings.php:
|
2140 |
-
#: module-settings.php:
|
2141 |
msgid "Label"
|
2142 |
msgstr "برچسب ( اتیکت )"
|
2143 |
|
2144 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2145 |
msgid "Reply-To Email:"
|
2146 |
msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
|
2147 |
|
2148 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2149 |
msgid "Save"
|
2150 |
msgstr "ذخیره"
|
2151 |
|
2152 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2153 |
msgid "CSS Styling"
|
2154 |
msgstr "صفحه آرایی با CSS"
|
2155 |
|
2156 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2157 |
msgid "Site Related"
|
2158 |
msgstr "مرتبط با سایت"
|
2159 |
|
2160 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2161 |
msgid "Your websites title"
|
2162 |
msgstr "عنوان وبسایت شما"
|
2163 |
|
2164 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2165 |
msgid "Your websites address"
|
2166 |
msgstr "آدرس وبسایت شما"
|
2167 |
|
2168 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2169 |
msgid "Your websites tagline (description)"
|
2170 |
msgstr "شرح وبسایت شما"
|
2171 |
|
2172 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2173 |
msgid "Your websites admin email"
|
2174 |
msgstr "آدرس ایمیل مدیر وبسایت شما"
|
2175 |
|
2176 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2177 |
msgid "Total number of blog members"
|
2178 |
msgstr "تعداد کل کاربران سایت شما"
|
2179 |
|
2180 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2181 |
-
#: notices/myCRED-addon-email-notices.php:
|
2182 |
-
#: addon-email-notices.php:
|
2183 |
msgid "Email Notice Updated."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2187 |
msgid "Email Notice Activated"
|
2188 |
msgstr "اطلاعیه فعال شد"
|
2189 |
|
2190 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2191 |
msgid "Email Notice Saved"
|
2192 |
msgstr "اطلاعیه ذخیره شد"
|
2193 |
|
2194 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2195 |
msgid ""
|
2196 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2197 |
"are not yet ready to use this email notice!"
|
@@ -2200,28 +2200,28 @@ msgstr ""
|
|
2200 |
"استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
|
2201 |
"گردد ."
|
2202 |
|
2203 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2204 |
#, php-format
|
2205 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2206 |
msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
|
2207 |
|
2208 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2209 |
msgid "This email notice is active."
|
2210 |
msgstr "این اطلاعیه ی ایمیلی فعال شد ."
|
2211 |
|
2212 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2213 |
msgid "Settings saved."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2217 |
msgid "Unsubscribe"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2221 |
msgid "There are no email notifications yet."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2225 |
msgid "Save Changes"
|
2226 |
msgstr ""
|
2227 |
|
@@ -2270,7 +2270,7 @@ msgstr "پرداخت شده"
|
|
2270 |
|
2271 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2272 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2273 |
-
#: 52 ../includes/mycred-network.php:53
|
2274 |
msgid "myCRED"
|
2275 |
msgstr "افزونه \"اعتبار من\""
|
2276 |
|
@@ -2355,7 +2355,7 @@ msgstr ""
|
|
2355 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2356 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2357 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2358 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2359 |
msgid "Exchange Rate"
|
2360 |
msgstr "نرخ مبادلات"
|
2361 |
|
@@ -2668,7 +2668,7 @@ msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ
|
|
2668 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2669 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2670 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2671 |
-
#: sell-content.php:
|
2672 |
msgid "Button Label"
|
2673 |
msgstr "برچسب کلید"
|
2674 |
|
@@ -2682,7 +2682,7 @@ msgstr "کلید پرداخت"
|
|
2682 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2683 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2684 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2685 |
-
#: sell-content.php:
|
2686 |
msgid "Price"
|
2687 |
msgstr "هزینه"
|
2688 |
|
@@ -2787,8 +2787,8 @@ msgid "Reject"
|
|
2787 |
msgstr "رد کردن"
|
2788 |
|
2789 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2790 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2791 |
-
#: modules/mycred-module-settings.php:
|
2792 |
msgid "Delete"
|
2793 |
msgstr "پاک کردن"
|
2794 |
|
@@ -2912,7 +2912,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2912 |
msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
|
2913 |
|
2914 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2915 |
-
#: module-buddypress.php:
|
2916 |
msgid "Template"
|
2917 |
msgstr "نمونه ( الگو )"
|
2918 |
|
@@ -3190,7 +3190,7 @@ msgstr ""
|
|
3190 |
"داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
|
3191 |
|
3192 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3193 |
-
#: php:
|
3194 |
msgid "Do not show."
|
3195 |
msgstr "عدم نمایش"
|
3196 |
|
@@ -3240,9 +3240,9 @@ msgid "No users found with this rank"
|
|
3240 |
msgstr "کاربری با این مدال یافت نشد"
|
3241 |
|
3242 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3243 |
-
#: shortcodes.php:
|
3244 |
-
#: shortcodes.php:
|
3245 |
-
#: shortcodes.php:
|
3246 |
msgid "error"
|
3247 |
msgstr "خطا"
|
3248 |
|
@@ -3367,40 +3367,40 @@ msgstr "الگوی لیست گزارش برای فروش ها"
|
|
3367 |
msgid "%s Sell This"
|
3368 |
msgstr "فروش %s "
|
3369 |
|
3370 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3371 |
#, php-format
|
3372 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3373 |
msgstr ""
|
3374 |
"برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
|
3375 |
"اندازی کنید ."
|
3376 |
|
3377 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3378 |
msgid "Setup add-on"
|
3379 |
msgstr "نصب افزونه"
|
3380 |
|
3381 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3382 |
msgid "Lets do it"
|
3383 |
msgstr "بریم که داشته باشیم !"
|
3384 |
|
3385 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3386 |
#, php-format
|
3387 |
msgid "Enable sale of this %s"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3391 |
msgid "Purchase expires after"
|
3392 |
msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
|
3393 |
|
3394 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3395 |
msgid "Thank you for your purchase!"
|
3396 |
msgstr "از خرید شما صمیمانه سپاسگذاریم !"
|
3397 |
|
3398 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3399 |
-
#: content/myCRED-addon-sell-content.php:
|
3400 |
msgid "The following content is set for sale:"
|
3401 |
msgstr "محتوای زیر برای فروش تنظیم می شود :"
|
3402 |
|
3403 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3404 |
msgid "Purchased"
|
3405 |
msgstr "خریداری شده"
|
3406 |
|
@@ -3415,7 +3415,7 @@ msgstr ""
|
|
3415 |
"امتیاز بیشتر را ندارید ."
|
3416 |
|
3417 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3418 |
-
#: php:
|
3419 |
msgid "Transfer"
|
3420 |
msgstr "جابجایی"
|
3421 |
|
@@ -3452,7 +3452,7 @@ msgstr ""
|
|
3452 |
"جابجایی امتیاز امکان پذیر نخواهد بود !"
|
3453 |
|
3454 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3455 |
-
#: php:
|
3456 |
msgid "Insufficient Funds. Please try a lower amount."
|
3457 |
msgstr ""
|
3458 |
|
@@ -3831,282 +3831,282 @@ msgstr ""
|
|
3831 |
msgid "My Entire Log"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: ../includes/mycred-functions.php:
|
3835 |
msgid "ref empty"
|
3836 |
msgstr "ارجاع ( استرداد ) خالی می باشد"
|
3837 |
|
3838 |
-
#: ../includes/mycred-functions.php:
|
3839 |
msgid "incorrect user id format"
|
3840 |
msgstr "فرمت نامعتبر شناسه ی کاربر"
|
3841 |
|
3842 |
-
#: ../includes/mycred-functions.php:
|
3843 |
msgid "incorrect unix timestamp (from):"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: ../includes/mycred-functions.php:
|
3847 |
msgid "incorrect unix timestamp (to):"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: ../includes/mycred-functions.php:
|
3851 |
msgid "Website Registration"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: ../includes/mycred-functions.php:
|
3855 |
msgid "Website Visit"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: ../includes/mycred-functions.php:
|
3859 |
msgid "Viewing Content (Member)"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: ../includes/mycred-functions.php:
|
3863 |
msgid "Viewing Content (Author)"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: ../includes/mycred-functions.php:
|
3867 |
msgid "Logging in"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: ../includes/mycred-functions.php:
|
3871 |
msgid "Publishing Content"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: ../includes/mycred-functions.php:
|
3875 |
msgid "Approved Comment"
|
3876 |
msgstr "نظرات تایید شده"
|
3877 |
|
3878 |
-
#: ../includes/mycred-functions.php:
|
3879 |
msgid "Unapproved Comment"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: ../includes/mycred-functions.php:
|
3883 |
msgid "SPAM Comment"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: ../includes/mycred-functions.php:
|
3887 |
msgid "Deleted Comment"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: ../includes/mycred-functions.php:
|
3891 |
msgid "Link Click"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: ../includes/mycred-functions.php:
|
3895 |
msgid "Watching Video"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: ../includes/mycred-functions.php:
|
3899 |
msgid "Visitor Referral"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: ../includes/mycred-functions.php:
|
3903 |
msgid "Signup Referral"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: ../includes/mycred-functions.php:
|
3907 |
msgid "New Profile Update"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: ../includes/mycred-functions.php:
|
3911 |
msgid "Avatar Upload"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: ../includes/mycred-functions.php:
|
3915 |
msgid "New Friendship"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: ../includes/mycred-functions.php:
|
3919 |
msgid "Ended Friendship"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: ../includes/mycred-functions.php:
|
3923 |
msgid "New Profile Comment"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: ../includes/mycred-functions.php:
|
3927 |
msgid "Profile Comment Deletion"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: ../includes/mycred-functions.php:
|
3931 |
msgid "New Message"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: ../includes/mycred-functions.php:
|
3935 |
msgid "Sending Gift"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: ../includes/mycred-functions.php:
|
3939 |
msgid "New Group"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: ../includes/mycred-functions.php:
|
3943 |
msgid "Deleted Group"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: ../includes/mycred-functions.php:
|
3947 |
msgid "New Group Forum Topic"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: ../includes/mycred-functions.php:
|
3951 |
msgid "Edit Group Forum Topic"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: ../includes/mycred-functions.php:
|
3955 |
msgid "New Group Forum Post"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: ../includes/mycred-functions.php:
|
3959 |
msgid "Edit Group Forum Post"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: ../includes/mycred-functions.php:
|
3963 |
msgid "Joining Group"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: ../includes/mycred-functions.php:
|
3967 |
msgid "Leaving Group"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: ../includes/mycred-functions.php:
|
3971 |
msgid "New Group Avatar"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: ../includes/mycred-functions.php:
|
3975 |
msgid "New Group Comment"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: ../includes/mycred-functions.php:
|
3979 |
#: php:166
|
3980 |
msgid "Photo Upload"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: ../includes/mycred-functions.php:
|
3984 |
#: php:176
|
3985 |
msgid "Video Upload"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: ../includes/mycred-functions.php:
|
3989 |
#: php:186
|
3990 |
msgid "Music Upload"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: ../includes/mycred-functions.php:
|
3994 |
msgid "New Link"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: ../includes/mycred-functions.php:
|
3998 |
msgid "Link Voting"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: ../includes/mycred-functions.php:
|
4002 |
msgid "Link Update"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: ../includes/mycred-functions.php:
|
4006 |
msgid "New Forum (bbPress)"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: ../includes/mycred-functions.php:
|
4010 |
msgid "New Forum Topic (bbPress)"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: ../includes/mycred-functions.php:
|
4014 |
msgid "Favorited Topic (bbPress)"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: ../includes/mycred-functions.php:
|
4018 |
msgid "New Topic Reply (bbPress)"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: ../includes/mycred-functions.php:
|
4022 |
msgid "Form Submission (Contact Form 7)"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: ../includes/mycred-functions.php:
|
4026 |
msgid "Form Submission (Gravity Form)"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: ../includes/mycred-functions.php:
|
4030 |
msgid "New Forum Topic (SimplePress)"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: ../includes/mycred-functions.php:
|
4034 |
msgid "New Forum Post (SimplePress)"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: ../includes/mycred-functions.php:
|
4038 |
msgid "Poll Voting"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: ../includes/mycred-functions.php:
|
4042 |
msgid "Sending an Invite"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: ../includes/mycred-functions.php:
|
4046 |
msgid "Accepting an Invite"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: ../includes/mycred-functions.php:
|
4050 |
msgid "Banking Payout"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: ../includes/mycred-functions.php:
|
4054 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: ../includes/mycred-functions.php:
|
4058 |
msgid "buyCRED Purchase (Skrill)"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: ../includes/mycred-functions.php:
|
4062 |
msgid "buyCRED Purchase (Zombaio)"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: ../includes/mycred-functions.php:
|
4066 |
msgid "buyCRED Purchase (NETBilling)"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#: ../includes/mycred-functions.php:
|
4070 |
msgid "buyCRED Purchase (BitPay)"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: ../includes/mycred-functions.php:
|
4074 |
msgid "Coupon Purchase"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#: ../includes/mycred-functions.php:
|
4078 |
msgid "Store Purchase (WooCommerce)"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: ../includes/mycred-functions.php:
|
4082 |
msgid "Store Purchase (MarketPress)"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#: ../includes/mycred-functions.php:
|
4086 |
msgid "Store Purchase (WP E-Commerce)"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: ../includes/mycred-functions.php:
|
4090 |
msgid "Event Payment (Event Espresso)"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: ../includes/mycred-functions.php:
|
4094 |
msgid "Event Sale (Event Espresso)"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: ../includes/mycred-functions.php:
|
4098 |
msgid "Event Payment (Events Manager)"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: ../includes/mycred-functions.php:
|
4102 |
msgid "Event Sale (Events Manager)"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: ../includes/mycred-functions.php:
|
4106 |
msgid "Content Purchase / Sale"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#: ../includes/mycred-functions.php:
|
4110 |
msgid "Manual Adjustment by Admin"
|
4111 |
msgstr ""
|
4112 |
|
@@ -4156,14 +4156,14 @@ msgstr ""
|
|
4156 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4157 |
msgstr "افزونه ی \"اعتبار من\" برای اجرا به SQL نسخه 5.0 نیاز دارد . نسخه ی یافت شده :"
|
4158 |
|
4159 |
-
#: ../includes/mycred-install.php:
|
4160 |
msgid ""
|
4161 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4162 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4163 |
"for you!"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: ../includes/mycred-install.php:
|
4167 |
msgid ""
|
4168 |
"Sorry but your WordPress installation does not reach the minimum "
|
4169 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4171,28 +4171,28 @@ msgstr ""
|
|
4171 |
"پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
|
4172 |
"\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
|
4173 |
|
4174 |
-
#: ../includes/mycred-install.php:
|
4175 |
msgid "myCRED needs your attention."
|
4176 |
msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
|
4177 |
|
4178 |
-
#: ../includes/mycred-install.php:
|
4179 |
msgid "Run Setup"
|
4180 |
msgstr "اجرای نصب"
|
4181 |
|
4182 |
-
#: ../includes/mycred-install.php:
|
4183 |
msgid "myCRED Setup"
|
4184 |
msgstr "راه اندازی \"اعتبار من\""
|
4185 |
|
4186 |
-
#: ../includes/mycred-install.php:
|
4187 |
#, php-format
|
4188 |
msgid "%s Setup"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: ../includes/mycred-install.php:
|
4192 |
msgid "Step"
|
4193 |
msgstr "گام"
|
4194 |
|
4195 |
-
#: ../includes/mycred-install.php:
|
4196 |
msgid ""
|
4197 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4198 |
"points format, layout and security settings."
|
@@ -4200,75 +4200,75 @@ msgstr ""
|
|
4200 |
"برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
|
4201 |
"بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
|
4202 |
|
4203 |
-
#: ../includes/mycred-install.php:
|
4204 |
msgid "Begin Setup"
|
4205 |
msgstr "آغاز نصب"
|
4206 |
|
4207 |
-
#: ../includes/mycred-install.php:
|
4208 |
msgid "Select the format you want to use for your points."
|
4209 |
msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
|
4210 |
|
4211 |
-
#: ../includes/mycred-install.php:
|
4212 |
msgid "Format"
|
4213 |
msgstr "طرح ( فرمت )"
|
4214 |
|
4215 |
-
#: ../includes/mycred-install.php:
|
4216 |
msgid "Separators"
|
4217 |
msgstr "جداکننده ها"
|
4218 |
|
4219 |
-
#: ../includes/mycred-install.php:
|
4220 |
msgid "Decimals"
|
4221 |
msgstr "اعداد اعشاری"
|
4222 |
|
4223 |
-
#: ../includes/mycred-install.php:
|
4224 |
msgid "Use zero for no decimals."
|
4225 |
msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
|
4226 |
|
4227 |
-
#: ../includes/mycred-install.php:
|
4228 |
msgid "Presentation"
|
4229 |
msgstr "چگونگی نمایش امتیازها"
|
4230 |
|
4231 |
-
#: ../includes/mycred-install.php:
|
4232 |
msgid "Name (Singular)"
|
4233 |
msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
|
4234 |
|
4235 |
-
#: ../includes/mycred-install.php:
|
4236 |
msgid "Name (Plural)"
|
4237 |
msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
|
4238 |
|
4239 |
-
#: ../includes/mycred-install.php:
|
4240 |
msgid "Prefix"
|
4241 |
msgstr "پیشوند"
|
4242 |
|
4243 |
-
#: ../includes/mycred-install.php:
|
4244 |
msgid "Suffix"
|
4245 |
msgstr "پسوند"
|
4246 |
|
4247 |
-
#: ../includes/mycred-install.php:
|
4248 |
msgid "Cancel Setup"
|
4249 |
msgstr "لغو عملیات راه اندازی"
|
4250 |
|
4251 |
-
#: ../includes/mycred-install.php:
|
4252 |
msgid "Next"
|
4253 |
msgstr "گام بعدی"
|
4254 |
|
4255 |
-
#: ../includes/mycred-install.php:
|
4256 |
msgid "Security"
|
4257 |
msgstr "امنیت"
|
4258 |
|
4259 |
-
#: ../includes/mycred-install.php:
|
4260 |
msgid "Edit Settings Capability"
|
4261 |
msgstr "ویرایش تنظیمات ظرفیتی"
|
4262 |
|
4263 |
-
#: ../includes/mycred-install.php:
|
4264 |
msgid "Edit Users %plural% Capability"
|
4265 |
msgstr "ویرایش ظرفیت %plural% کاربر"
|
4266 |
|
4267 |
-
#: ../includes/mycred-install.php:
|
4268 |
msgid "Maximum %plural% payouts"
|
4269 |
msgstr "بیشترین پرداخت %plural%"
|
4270 |
|
4271 |
-
#: ../includes/mycred-install.php:
|
4272 |
msgid ""
|
4273 |
"As an added security, you can set the maximum amount a user can gain or "
|
4274 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4281,47 +4281,47 @@ msgstr ""
|
|
4281 |
"امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
|
4282 |
"تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
|
4283 |
|
4284 |
-
#: ../includes/mycred-install.php:
|
4285 |
msgid "Excludes"
|
4286 |
msgstr "کاربران استثنا"
|
4287 |
|
4288 |
-
#: ../includes/mycred-install.php:
|
4289 |
msgid "Exclude those who can \"Edit Settings\"."
|
4290 |
msgstr ""
|
4291 |
"استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
|
4292 |
"خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
|
4293 |
"آن ها را در این کادر وارد فرمایید . )"
|
4294 |
|
4295 |
-
#: ../includes/mycred-install.php:
|
4296 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4297 |
msgstr ""
|
4298 |
"استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
|
4299 |
"اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
|
4300 |
"، اسامی آن ها را در این کادر وارد فرمایید . )"
|
4301 |
|
4302 |
-
#: ../includes/mycred-install.php:
|
4303 |
msgid "Exclude the following user IDs:"
|
4304 |
msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
|
4305 |
|
4306 |
-
#: ../includes/mycred-install.php:
|
4307 |
msgid "User Deletions"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: ../includes/mycred-install.php:
|
4311 |
msgid "Delete log entries when user is deleted."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: ../includes/mycred-install.php:
|
4315 |
msgid "Ready"
|
4316 |
msgstr "آماده"
|
4317 |
|
4318 |
-
#: ../includes/mycred-install.php:
|
4319 |
msgid "Almost done! Click the button below to finish this setup."
|
4320 |
msgstr ""
|
4321 |
"تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
|
4322 |
"پایان ببرید ."
|
4323 |
|
4324 |
-
#: ../includes/mycred-install.php:
|
4325 |
msgid "Install & Run"
|
4326 |
msgstr "نصب و راه اندازی"
|
4327 |
|
@@ -4334,29 +4334,29 @@ msgstr "نمایش %d %s"
|
|
4334 |
msgid "entry"
|
4335 |
msgstr "اطلاعات ورودی"
|
4336 |
|
4337 |
-
#: ../includes/mycred-log.php:
|
4338 |
msgid "Go to the first page"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: ../includes/mycred-log.php:
|
4342 |
msgid "Go to the previous page"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: ../includes/mycred-log.php:
|
4346 |
msgid "Current page"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: ../includes/mycred-log.php:
|
4350 |
#, php-format
|
4351 |
msgctxt "paging"
|
4352 |
msgid "%1$s of %2$s"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: ../includes/mycred-log.php:
|
4356 |
msgid "Go to the next page"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: ../includes/mycred-log.php:
|
4360 |
msgid "Go to the last page"
|
4361 |
msgstr ""
|
4362 |
|
@@ -4364,7 +4364,7 @@ msgstr ""
|
|
4364 |
msgid "Show all references"
|
4365 |
msgstr "نمایش تمام منابع"
|
4366 |
|
4367 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4368 |
msgid "User ID"
|
4369 |
msgstr "شناسه کاربر"
|
4370 |
|
@@ -4593,92 +4593,92 @@ msgstr ""
|
|
4593 |
"به یاد داشته باشید که در هنگام بلااستفاده بودن ، آن را غیرفعال کرده تا از "
|
4594 |
"فراخوانی های مخرب جلوگیری به عمل آورید ."
|
4595 |
|
4596 |
-
#: ../includes/mycred-shortcodes.php:
|
4597 |
msgid "Leaderboard is empty."
|
4598 |
msgstr "لیست برترین ها خالیست"
|
4599 |
|
4600 |
-
#: ../includes/mycred-shortcodes.php:
|
4601 |
msgid "Amount missing!"
|
4602 |
msgstr "مقدار موجود نیست"
|
4603 |
|
4604 |
-
#: ../includes/mycred-shortcodes.php:
|
4605 |
msgid "Log Template Missing!"
|
4606 |
msgstr "نمونه لوگ موجود نیست"
|
4607 |
|
4608 |
-
#: ../includes/mycred-shortcodes.php:
|
4609 |
msgid "Anchor missing URL!"
|
4610 |
msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
|
4611 |
|
4612 |
-
#: ../includes/mycred-shortcodes.php:
|
4613 |
msgid "User ID missing for recipient."
|
4614 |
msgstr "شناسه ی کاربر گیرنده موجود نیست"
|
4615 |
|
4616 |
-
#: ../includes/mycred-shortcodes.php:
|
4617 |
msgid "Sent"
|
4618 |
msgstr "ارسال شده"
|
4619 |
|
4620 |
-
#: ../includes/mycred-shortcodes.php:
|
4621 |
msgid "Error - Try Again"
|
4622 |
msgstr "خطا - لطفا مجددا تلاش کنید"
|
4623 |
|
4624 |
-
#: ../includes/mycred-shortcodes.php:
|
4625 |
msgid "A video ID is required for this shortcode"
|
4626 |
msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
|
4627 |
|
4628 |
-
#: ../includes/mycred-shortcodes.php:
|
4629 |
msgid "Point types not found."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: ../includes/mycred-shortcodes.php:
|
4633 |
-
#: includes/mycred-shortcodes.php:
|
4634 |
#, php-format
|
4635 |
msgid "You are excluded from using %s."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: ../includes/mycred-shortcodes.php:
|
4639 |
msgid "Your balance is too low to use this feature."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: ../includes/mycred-shortcodes.php:
|
4643 |
#, php-format
|
4644 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
-
#: ../includes/mycred-shortcodes.php:
|
4648 |
#, php-format
|
4649 |
msgid "Your current %s balance"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: ../includes/mycred-shortcodes.php:
|
4653 |
#, php-format
|
4654 |
msgid "Minimum %s"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: ../includes/mycred-shortcodes.php:
|
4658 |
#, php-format
|
4659 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: ../includes/mycred-shortcodes.php:
|
4663 |
msgid "Exchange"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: ../includes/mycred-shortcodes.php:
|
4667 |
#, php-format
|
4668 |
msgid "You must exchange at least %s!"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#: ../includes/mycred-shortcodes.php:
|
4672 |
#, php-format
|
4673 |
msgid "Exchange from %s"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
-
#: ../includes/mycred-shortcodes.php:
|
4677 |
#, php-format
|
4678 |
msgid "Exchange to %s"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
-
#: ../includes/mycred-shortcodes.php:
|
4682 |
#, php-format
|
4683 |
msgid "You have successfully exchanged %s into %s."
|
4684 |
msgstr ""
|
@@ -4697,7 +4697,7 @@ msgstr "میزان امتیازات (%s) من"
|
|
4697 |
msgid "My Balance"
|
4698 |
msgstr "میزان امتیازات من"
|
4699 |
|
4700 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4701 |
msgid "%plural% History"
|
4702 |
msgstr "گزارش جابجایی %plural%"
|
4703 |
|
@@ -5116,66 +5116,66 @@ msgstr "لیست اعمال و گزارشات %s"
|
|
5116 |
msgid "Current balance"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: ../modules/mycred-module-buddypress.php:
|
5120 |
msgid "Go"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: ../modules/mycred-module-buddypress.php:
|
5124 |
msgid "Show in Profile"
|
5125 |
msgstr "نمایش در پروفایل"
|
5126 |
|
5127 |
-
#: ../modules/mycred-module-buddypress.php:
|
5128 |
#, php-format
|
5129 |
msgid "%singular% Balance"
|
5130 |
msgstr "میزان %singular%"
|
5131 |
|
5132 |
-
#: ../modules/mycred-module-buddypress.php:
|
5133 |
#, php-format
|
5134 |
msgid "Members and visitors can other members %_singular% balance."
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: ../modules/mycred-module-buddypress.php:
|
5138 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5139 |
msgstr ""
|
5140 |
"توجه داشته باشید که علاوه بر آن می توانید از %rank_logo% برای نمایش عکس شاخص "
|
5141 |
"رنک استفاده نمایید ."
|
5142 |
|
5143 |
-
#: ../modules/mycred-module-buddypress.php:
|
5144 |
msgid "Members can view each others %_plural% history."
|
5145 |
msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
|
5146 |
|
5147 |
-
#: ../modules/mycred-module-buddypress.php:
|
5148 |
msgid "Menu Title"
|
5149 |
msgstr "عنوان منو"
|
5150 |
|
5151 |
-
#: ../modules/mycred-module-buddypress.php:
|
5152 |
msgid "Title shown to me"
|
5153 |
msgstr "عنوان به من نمایش داده شد"
|
5154 |
|
5155 |
-
#: ../modules/mycred-module-buddypress.php:
|
5156 |
#, php-format
|
5157 |
msgid "Title shown to others. Use %s to show the first name."
|
5158 |
msgstr ""
|
5159 |
"عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
|
5160 |
"استفاده کنید ."
|
5161 |
|
5162 |
-
#: ../modules/mycred-module-buddypress.php:
|
5163 |
msgid "Menu Position"
|
5164 |
msgstr "جایگاه منو"
|
5165 |
|
5166 |
-
#: ../modules/mycred-module-buddypress.php:
|
5167 |
msgid "Current menu positions:"
|
5168 |
msgstr "جایگاه فعلی منو :"
|
5169 |
|
5170 |
-
#: ../modules/mycred-module-buddypress.php:
|
5171 |
msgid "History URL slug"
|
5172 |
msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
|
5173 |
|
5174 |
-
#: ../modules/mycred-module-buddypress.php:
|
5175 |
msgid "Do not use empty spaces!"
|
5176 |
msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
|
5177 |
|
5178 |
-
#: ../modules/mycred-module-buddypress.php:
|
5179 |
msgid "Number of history entries to show"
|
5180 |
msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
|
5181 |
|
@@ -5313,8 +5313,8 @@ msgstr ""
|
|
5313 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5314 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5315 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5316 |
-
#:
|
5317 |
-
#: php:
|
5318 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5319 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5320 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5375,8 +5375,8 @@ msgstr ""
|
|
5375 |
msgid "%plural% for viewing %s"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5379 |
-
#: ../modules/mycred-module-hooks.php:
|
5380 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5381 |
msgid "Limit"
|
5382 |
msgstr "محدوده"
|
@@ -5466,7 +5466,7 @@ msgstr ""
|
|
5466 |
msgid "Custom tags: %url%, %title% or %id%."
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5470 |
msgid "Note!"
|
5471 |
msgstr "نکته !"
|
5472 |
|
@@ -5482,44 +5482,44 @@ msgstr ""
|
|
5482 |
"href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
|
5483 |
"استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
|
5484 |
|
5485 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5486 |
msgid "Available Shortcode"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: ../modules/mycred-module-hooks.php:
|
5490 |
msgid "Amount to award for viewing videos."
|
5491 |
msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
|
5492 |
|
5493 |
-
#: ../modules/mycred-module-hooks.php:
|
5494 |
msgid "Award Logic"
|
5495 |
msgstr "منطق اهدای امتیازات"
|
5496 |
|
5497 |
-
#: ../modules/mycred-module-hooks.php:
|
5498 |
#, php-format
|
5499 |
msgid "Select when %_plural% should be awarded or deducted."
|
5500 |
msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
|
5501 |
|
5502 |
-
#: ../modules/mycred-module-hooks.php:
|
5503 |
msgid "Play - As soon as video starts playing."
|
5504 |
msgstr "پخش - به محض شروع به پخش ویدیو"
|
5505 |
|
5506 |
-
#: ../modules/mycred-module-hooks.php:
|
5507 |
msgid "Full - First when the entire video has played."
|
5508 |
msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
|
5509 |
|
5510 |
-
#: ../modules/mycred-module-hooks.php:
|
5511 |
msgid "Interval - For each x number of seconds watched."
|
5512 |
msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
|
5513 |
|
5514 |
-
#: ../modules/mycred-module-hooks.php:
|
5515 |
msgid "Number of seconds"
|
5516 |
msgstr "تعداد ثانیه ها"
|
5517 |
|
5518 |
-
#: ../modules/mycred-module-hooks.php:
|
5519 |
msgid "Leniency"
|
5520 |
msgstr "نرمی و ملایمت"
|
5521 |
|
5522 |
-
#: ../modules/mycred-module-hooks.php:
|
5523 |
msgid ""
|
5524 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5525 |
"length."
|
@@ -5527,7 +5527,7 @@ msgstr ""
|
|
5527 |
"بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
|
5528 |
"می شه ، تفاوت پیدا کنه"
|
5529 |
|
5530 |
-
#: ../modules/mycred-module-hooks.php:
|
5531 |
msgid ""
|
5532 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5533 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5538,108 +5538,116 @@ msgstr ""
|
|
5538 |
"در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
|
5539 |
"روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-hooks.php:
|
5542 |
msgid "Affiliate Program"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: ../modules/mycred-module-hooks.php:
|
5546 |
msgid "Per Day"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#: ../modules/mycred-module-hooks.php:
|
5550 |
msgid "Link"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5554 |
msgid "Referring Visitors"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: ../modules/mycred-module-hooks.php:
|
5558 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: ../modules/mycred-module-hooks.php:
|
5562 |
msgid "Referring Signups"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: ../modules/mycred-module-hooks.php:
|
5566 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: ../modules/mycred-module-hooks.php:
|
5570 |
msgid "Registrations are disabled."
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: ../modules/mycred-module-hooks.php:
|
5574 |
msgid "Referral Links"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: ../modules/mycred-module-hooks.php:
|
5578 |
msgid "Assign numeric referral IDs to each user."
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: ../modules/mycred-module-hooks.php:
|
5582 |
msgid "Example"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: ../modules/mycred-module-hooks.php:
|
5586 |
msgid "Assign usernames as IDs for each user."
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#: ../modules/mycred-module-hooks.php:
|
5590 |
msgid "IP Limit"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: ../modules/mycred-module-hooks.php:
|
5594 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: ../modules/mycred-module-hooks.php:
|
5598 |
msgid "BuddyPress Profile"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: ../modules/mycred-module-hooks.php:
|
5602 |
msgid "Insert Link in users Profile"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: ../modules/mycred-module-hooks.php:
|
5606 |
msgid ""
|
5607 |
"Option to inser the referral link in users profiles. Links will only be "
|
5608 |
"visible to users viewing their own profiles or administrators."
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: ../modules/mycred-module-hooks.php:
|
5612 |
msgid "Leave empty to hide."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: ../modules/mycred-module-hooks.php:
|
5616 |
msgid "Description"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: ../modules/mycred-module-hooks.php:
|
5620 |
msgid "Optional description to insert under the link."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: ../modules/mycred-module-hooks.php:
|
5624 |
msgid "Profile Positioning"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: ../modules/mycred-module-hooks.php:
|
5628 |
msgid ""
|
5629 |
"You can move around the referral link on your users profile by changing the "
|
5630 |
"position. Increase to move up, decrease to move down."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: ../modules/mycred-module-hooks.php:
|
5634 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: ../modules/mycred-module-hooks.php:
|
5638 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5642 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5643 |
msgid "Access denied for this action"
|
5644 |
msgstr "عدم دسترسی مجاز برای انجام این عملیات"
|
5645 |
|
@@ -5655,12 +5663,12 @@ msgstr ""
|
|
5655 |
msgid "Entry Updated"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5659 |
msgid "Entries"
|
5660 |
msgstr "داده های ورودی"
|
5661 |
|
5662 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5663 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5664 |
msgid "Export"
|
5665 |
msgstr "خروجی گرفتن"
|
5666 |
|
@@ -5707,49 +5715,49 @@ msgid "My %s History"
|
|
5707 |
msgstr ""
|
5708 |
|
5709 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5710 |
-
#:
|
5711 |
msgid "Missing point type"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#: ../modules/mycred-module-settings.php:
|
5715 |
msgid "Accounts successfully reset"
|
5716 |
msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
|
5717 |
|
5718 |
-
#: ../modules/mycred-module-settings.php:
|
5719 |
msgid "No users found to export"
|
5720 |
msgstr "کاربری برای خروجی گرفتن یافت نشد"
|
5721 |
|
5722 |
-
#: ../modules/mycred-module-settings.php:
|
5723 |
#, php-format
|
5724 |
msgid "%s Settings"
|
5725 |
msgstr "تنظیمات %s"
|
5726 |
|
5727 |
-
#: ../modules/mycred-module-settings.php:
|
5728 |
msgid "Adjust your core or add-on settings."
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: ../modules/mycred-module-settings.php:
|
5732 |
msgid "Core Settings"
|
5733 |
msgstr "تنظیمات اصلی"
|
5734 |
|
5735 |
-
#: ../modules/mycred-module-settings.php:
|
5736 |
msgid "Name"
|
5737 |
msgstr "نام"
|
5738 |
|
5739 |
-
#: ../modules/mycred-module-settings.php:
|
5740 |
#, php-format
|
5741 |
msgid "Accessible though the %singular% template tag."
|
5742 |
msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
|
5743 |
|
5744 |
-
#: ../modules/mycred-module-settings.php:
|
5745 |
msgid "Accessible though the %plural% template tag."
|
5746 |
msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
|
5747 |
|
5748 |
-
#: ../modules/mycred-module-settings.php:
|
5749 |
msgid "Tip"
|
5750 |
msgstr "نکته"
|
5751 |
|
5752 |
-
#: ../modules/mycred-module-settings.php:
|
5753 |
msgid ""
|
5754 |
"Adding an underscore at the beginning of template tag for names will return "
|
5755 |
"them in lowercase. i.e. %_singular%"
|
@@ -5757,105 +5765,105 @@ msgstr ""
|
|
5757 |
"اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
|
5758 |
"شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
|
5759 |
|
5760 |
-
#: ../modules/mycred-module-settings.php:
|
5761 |
msgid "Separator"
|
5762 |
msgstr "جدا کننده"
|
5763 |
|
5764 |
-
#: ../modules/mycred-module-settings.php:
|
5765 |
msgid "Edit Settings"
|
5766 |
msgstr "تنظیم مجدد"
|
5767 |
|
5768 |
-
#: ../modules/mycred-module-settings.php:
|
5769 |
-
#: php:
|
5770 |
msgid "Capability to check for."
|
5771 |
msgstr "توانایی بررسی"
|
5772 |
|
5773 |
-
#: ../modules/mycred-module-settings.php:
|
5774 |
msgid "Edit Users %plural%"
|
5775 |
msgstr "ویرایش %plural% کاربران"
|
5776 |
|
5777 |
-
#: ../modules/mycred-module-settings.php:
|
5778 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5779 |
msgstr ""
|
5780 |
"برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
|
5781 |
"استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
|
5782 |
|
5783 |
-
#: ../modules/mycred-module-settings.php:
|
5784 |
msgid "Management"
|
5785 |
msgstr "مدیریت"
|
5786 |
|
5787 |
-
#: ../modules/mycred-module-settings.php:
|
5788 |
msgid "The Log"
|
5789 |
msgstr "لیست گزارش ( لوگ )"
|
5790 |
|
5791 |
-
#: ../modules/mycred-module-settings.php:
|
5792 |
msgid "Table Name"
|
5793 |
msgstr "نام جدول"
|
5794 |
|
5795 |
-
#: ../modules/mycred-module-settings.php:
|
5796 |
msgid "Empty Log"
|
5797 |
msgstr "لیست گزارشات ( لوگ ) خالی"
|
5798 |
|
5799 |
-
#: ../modules/mycred-module-settings.php:
|
5800 |
msgid "User Meta Key"
|
5801 |
msgstr "کلید اطلاعات کاربر ( Meta key ("
|
5802 |
|
5803 |
-
#: ../modules/mycred-module-settings.php:
|
5804 |
msgid "Set all to zero"
|
5805 |
msgstr "تغییر تمام داده ها به عدد صفر"
|
5806 |
|
5807 |
-
#: ../modules/mycred-module-settings.php:
|
5808 |
msgid "CSV Export"
|
5809 |
msgstr "خروجی گرفتن به صورت فایل CVS"
|
5810 |
|
5811 |
-
#: ../modules/mycred-module-settings.php:
|
5812 |
msgid "Default"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: ../modules/mycred-module-settings.php:
|
5816 |
-
#: php:
|
5817 |
msgid "Meta Key"
|
5818 |
msgstr "کلید اطلاعات"
|
5819 |
|
5820 |
-
#: ../modules/mycred-module-settings.php:
|
5821 |
msgid "Add New Type"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: ../modules/mycred-module-settings.php:
|
5825 |
msgid "A unique ID for this type."
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: ../modules/mycred-module-settings.php:
|
5829 |
msgid "Menu and page title."
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: ../modules/mycred-module-settings.php:
|
5833 |
msgid "The meta key will define where your users balances are saved."
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: ../modules/mycred-module-settings.php:
|
5837 |
msgid "Identify users by"
|
5838 |
msgstr "تایید هویت کاربر به وسیله ی"
|
5839 |
|
5840 |
-
#: ../modules/mycred-module-settings.php:
|
5841 |
msgid "User Email"
|
5842 |
msgstr "ایمیل کاربر"
|
5843 |
|
5844 |
-
#: ../modules/mycred-module-settings.php:
|
5845 |
msgid "User Login"
|
5846 |
msgstr "ورود کاربر"
|
5847 |
|
5848 |
-
#: ../modules/mycred-module-settings.php:
|
5849 |
msgid ""
|
5850 |
"Use ID if you intend to use this export as a backup of your current site "
|
5851 |
"while Email is recommended if you want to export to a different site."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: ../modules/mycred-module-settings.php:
|
5855 |
msgid "Import Log Entry"
|
5856 |
msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
|
5857 |
|
5858 |
-
#: ../modules/mycred-module-settings.php:
|
5859 |
#, php-format
|
5860 |
msgid ""
|
5861 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5864,13 +5872,13 @@ msgstr ""
|
|
5864 |
"لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را "
|
5865 |
"در مرحله ی نصب %s دیگری وارد فرمایید ."
|
5866 |
|
5867 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5868 |
msgid "BadgeOS"
|
5869 |
msgstr ""
|
5870 |
"افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا "
|
5871 |
"گواهینامه )"
|
5872 |
|
5873 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5874 |
msgid ""
|
5875 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5876 |
"overridden for individual achievement type."
|
@@ -5878,7 +5886,7 @@ msgstr ""
|
|
5878 |
"تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را "
|
5879 |
"برای مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
|
5880 |
|
5881 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5882 |
#, php-format
|
5883 |
msgid ""
|
5884 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5887,28 +5895,28 @@ msgstr ""
|
|
5887 |
"برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> "
|
5888 |
"خود را سفارشی سازی کنید"
|
5889 |
|
5890 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5891 |
msgid "%plural% to Award"
|
5892 |
msgstr "%plural% برای اهدا"
|
5893 |
|
5894 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5895 |
msgid "Use zero to disable"
|
5896 |
msgstr "برای غیرفعالسازی عدد صفر را وارد کنید"
|
5897 |
|
5898 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5899 |
msgid "Deduction Log Template"
|
5900 |
msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
|
5901 |
|
5902 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5903 |
#, php-format
|
5904 |
msgid "Default %s for %s"
|
5905 |
msgstr "%s پیش فرض برای %s"
|
5906 |
|
5907 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5908 |
msgid "Use zero to disable users gaining %_plural%"
|
5909 |
msgstr "برای غیرفعالسازی کسب %_plural% توسط کاربران ، عدد صفر را وارد کنید"
|
5910 |
|
5911 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5912 |
msgid "Default Log template"
|
5913 |
msgstr "نمونه ی گزارشات ( لوگ ) پیش فرض"
|
5914 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:54:03 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Persian (Iran)\n"
|
10 |
"Plural-Forms: nplurals=1; plural=0\n"
|
23 |
"X-Poedit-SearchPath-1: .\n"
|
24 |
"X-Loco-Target-Locale: fa_IR"
|
25 |
|
26 |
+
#: ../mycred.php:425
|
27 |
msgid "Balance"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../mycred.php:450
|
31 |
msgid "%label% History"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../mycred.php:543
|
35 |
#, php-format
|
36 |
msgid "About %s"
|
37 |
msgstr "درباره %s"
|
38 |
|
39 |
+
#: ../mycred.php:552
|
40 |
msgid "Awesome People"
|
41 |
msgstr "\"اعتبار من\""
|
42 |
|
43 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
44 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
45 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
46 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
47 |
+
#: includes/mycred-shortcodes.php:631
|
48 |
msgid "Processing..."
|
49 |
msgstr "در حال پردازش ..."
|
50 |
|
51 |
+
#: ../mycred.php:638
|
52 |
msgid ""
|
53 |
"Warning! All entries in your log will be permanently removed! This can not "
|
54 |
"be undone!"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../mycred.php:639
|
58 |
msgid ""
|
59 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
60 |
"can not be undone!"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../mycred.php:640
|
64 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
65 |
msgstr ""
|
66 |
"اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
|
67 |
"غیرقابل بازگشت می باشد !"
|
68 |
|
69 |
+
#: ../mycred.php:641
|
70 |
msgid "Done!"
|
71 |
msgstr "انجام شد !"
|
72 |
|
73 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
74 |
msgid "Close"
|
75 |
msgstr "بستن"
|
76 |
|
77 |
+
#: ../mycred.php:643
|
78 |
msgid "Export users %plural%"
|
79 |
msgstr "خروجی گرفتن از %plural% کاربران"
|
80 |
|
81 |
+
#: ../mycred.php:659
|
82 |
msgid "Edit Users Balance"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../mycred.php:677
|
86 |
msgid "Edit Log Entry"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../mycred.php:681
|
90 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../mycred.php:682
|
94 |
msgid "Log entry updated"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
98 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
99 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
100 |
msgid "Setup"
|
101 |
msgstr "نصب"
|
102 |
|
103 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
104 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
105 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
106 |
msgid "Settings"
|
107 |
msgstr "تنظیمات"
|
108 |
|
109 |
+
#: ../mycred.php:776
|
110 |
msgid ""
|
111 |
"Make sure to backup your database and files before updating, in case "
|
112 |
"anything goes wrong!"
|
144 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
145 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
146 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
147 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
148 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
149 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
150 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
151 |
msgid "Select"
|
152 |
msgstr "انتخاب"
|
153 |
|
247 |
msgstr ""
|
248 |
|
249 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
250 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
251 |
msgid "Users"
|
252 |
msgstr "کاربران"
|
253 |
|
330 |
|
331 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
332 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
333 |
+
#: modules/mycred-module-buddypress.php:395
|
334 |
msgid "Do not show"
|
335 |
msgstr "نمایش نده !"
|
336 |
|
337 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
338 |
+
#: buddypress.php:396
|
339 |
msgid "Include in Profile Header"
|
340 |
msgstr ""
|
341 |
|
342 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
343 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
344 |
msgid "Include under the \"Profile\" tab"
|
345 |
msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
|
346 |
|
347 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
348 |
+
#: buddypress.php:398
|
349 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
350 |
msgstr ""
|
351 |
|
414 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
415 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
416 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
417 |
+
#: modules/mycred-module-settings.php:313
|
418 |
msgid "Access Denied"
|
419 |
msgstr "دسترسی غیرمجاز می باشد"
|
420 |
|
568 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
569 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
570 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
571 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
572 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
573 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
574 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
575 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
666 |
|
667 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
668 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
669 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
670 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
671 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
672 |
+
#: includes/mycred-shortcodes.php:939
|
673 |
msgid "Amount"
|
674 |
msgstr "مقدار"
|
675 |
|
676 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
677 |
+
#: modules/mycred-module-hooks.php:2112
|
678 |
msgid "Interval"
|
679 |
msgstr "فاصله زمانی"
|
680 |
|
728 |
msgstr ""
|
729 |
|
730 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
731 |
+
#: addon-buy-creds.php:1635
|
732 |
msgid "No pending payments found"
|
733 |
msgstr ""
|
734 |
|
737 |
msgstr ""
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
740 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
741 |
msgid "Transaction ID"
|
742 |
msgstr ""
|
743 |
|
744 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
745 |
+
#: addon-buy-creds.php:985
|
746 |
msgid "Buyer"
|
747 |
msgstr ""
|
748 |
|
749 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
750 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
751 |
#: gateway.php:563
|
752 |
msgid "Cost"
|
753 |
msgstr ""
|
754 |
|
755 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
756 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
757 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
758 |
msgid "Gateway"
|
759 |
msgstr "درگاه"
|
804 |
|
805 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
806 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
807 |
+
#: module-settings.php:470
|
808 |
msgid "Point Types"
|
809 |
msgstr ""
|
810 |
|
857 |
msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
|
858 |
|
859 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
860 |
+
#: hooks.php:2792
|
861 |
msgid "Available Shortcodes"
|
862 |
msgstr ""
|
863 |
|
884 |
msgstr "درگاه های پرداخت %s"
|
885 |
|
886 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
887 |
+
#: addon-buy-creds.php:993
|
888 |
msgid "buyCRED Settings"
|
889 |
msgstr ""
|
890 |
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
914 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
915 |
msgid "Update Settings"
|
916 |
msgstr "به روزرسانی تنظیمات"
|
917 |
|
919 |
msgid "More Gateways"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
923 |
#: 634
|
924 |
msgid "Date"
|
925 |
msgstr "تاریخ"
|
926 |
|
927 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
928 |
msgid "Payed"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
932 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
936 |
#: booking/mycred-eventespresso3.php:367
|
937 |
msgid "Gateway Settings"
|
938 |
msgstr "تنظیمات درگاه پرداخت"
|
939 |
|
940 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
941 |
+
#: content/myCRED-addon-sell-content.php:1191
|
942 |
msgid "No purchases found"
|
943 |
msgstr "خریدی یافت نشد"
|
944 |
|
945 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
946 |
+
#: addon-buy-creds.php:1355
|
947 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
948 |
msgstr ""
|
949 |
"برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
|
950 |
"جانبی را راه اندازی کنید ."
|
951 |
|
952 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
953 |
+
#: addon-buy-creds.php:1374
|
954 |
msgid "No gateways installed."
|
955 |
msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
|
956 |
|
957 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
958 |
+
#: addon-buy-creds.php:1375
|
959 |
msgid "Gateway does not exist."
|
960 |
msgstr "درگاه موجود نیست ."
|
961 |
|
962 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
963 |
msgid "Yourself"
|
964 |
msgstr "خودتان"
|
965 |
|
966 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
967 |
msgid "No active gateways found."
|
968 |
msgstr "درگاه پرداخت فعالی یافت نشد ."
|
969 |
|
970 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
971 |
msgid "The selected gateway is not active."
|
972 |
msgstr "درگاه پرداخت انتخابی فعال نیست ."
|
973 |
|
974 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
975 |
#, php-format
|
976 |
msgid "Buy with %gateway%"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
980 |
#: content/myCRED-addon-sell-content.php:44
|
981 |
msgid "Buy Now"
|
982 |
msgstr "همین الان بخرید"
|
983 |
|
984 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
985 |
msgid "No users found"
|
986 |
msgstr "کاربری یافت نشد"
|
987 |
|
988 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
989 |
msgid "To"
|
990 |
msgstr "به"
|
991 |
|
992 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
993 |
msgid "Select Amount"
|
994 |
msgstr "مقدار را انتخاب کنید"
|
995 |
|
996 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
997 |
msgid "min."
|
998 |
msgstr "حداقل"
|
999 |
|
1000 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
1001 |
msgid "Select Gateway"
|
1002 |
msgstr "درگاه پرداخت را انتخاب کنید"
|
1003 |
|
1004 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1005 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1006 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1007 |
#: php:35
|
1008 |
msgid "Pay Now"
|
1009 |
msgstr "همین حالا بپردازید"
|
1010 |
|
1011 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1012 |
+
#: php:516
|
1013 |
msgid "Cancel"
|
1014 |
msgstr "لغو"
|
1015 |
|
1016 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1017 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1018 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1019 |
msgid "Actions"
|
1020 |
msgstr "عملیات ها"
|
1021 |
|
1155 |
msgid "The following information will be sent to the gateway"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1159 |
msgid "Outside US"
|
1160 |
msgstr "خارج از آمـریکا"
|
1161 |
|
1162 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1163 |
msgid "January"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1167 |
msgid "February"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1171 |
msgid "March"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1175 |
msgid "April"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1179 |
msgid "May"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1183 |
msgid "June"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1187 |
msgid "July"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1191 |
msgid "August"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1195 |
msgid "September"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1199 |
msgid "October"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1203 |
msgid "November"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1207 |
msgid "December"
|
1208 |
msgstr ""
|
1209 |
|
1455 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1456 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1457 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1458 |
+
#: modules/mycred-module-hooks.php:2757
|
1459 |
msgid "Title"
|
1460 |
msgstr "عنوان"
|
1461 |
|
1661 |
msgstr ""
|
1662 |
|
1663 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1664 |
+
#: php:2202
|
1665 |
msgid "Total"
|
1666 |
msgstr ""
|
1667 |
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1826 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1827 |
msgid "Email Notice"
|
1828 |
msgstr "اطلاعیه ایمیلی"
|
1829 |
|
2021 |
"نیز قابل ویرایش هستند ."
|
2022 |
|
2023 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2024 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2025 |
msgid "Email Settings"
|
2026 |
msgstr "تنظیمات ایمیل"
|
2027 |
|
2028 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2029 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2030 |
msgid "Senders Name:"
|
2031 |
msgstr "نام ارسال کننده :"
|
2032 |
|
2033 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2034 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2035 |
msgid "Senders Email:"
|
2036 |
msgstr "آدرس ایمیل ارسال کننده :"
|
2037 |
|
2058 |
"در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
|
2059 |
"."
|
2060 |
|
2061 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2062 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2063 |
msgid "Email Subject"
|
2064 |
msgstr "موضوع ایمیل"
|
2065 |
|
2066 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2067 |
msgid "Status"
|
2068 |
msgstr "وضعیت"
|
2069 |
|
2070 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2071 |
msgid "Not Active"
|
2072 |
msgstr "غیرفعال"
|
2073 |
|
2074 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2075 |
#, php-format
|
2076 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2077 |
msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
|
2078 |
|
2079 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2080 |
msgid "Active"
|
2081 |
msgstr "فعال"
|
2082 |
|
2083 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2084 |
#, php-format
|
2085 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2086 |
msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
|
2087 |
|
2088 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2089 |
msgid "Email is sent when"
|
2090 |
msgstr "ایمیل فرستاده وقتی فرستاده شود که"
|
2091 |
|
2092 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2093 |
msgid "Missing instance for this notice!"
|
2094 |
msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
|
2095 |
|
2096 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2097 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2098 |
+
#: addon-email-notices.php:775
|
2099 |
msgid "Sent To"
|
2100 |
msgstr "ارسال شده به"
|
2101 |
|
2102 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2103 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2104 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2105 |
msgid "User"
|
2106 |
msgstr "کاربر"
|
2107 |
|
2108 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2109 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2110 |
msgid "Administrator"
|
2111 |
msgstr "مدیر"
|
2112 |
|
2113 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2114 |
msgid "Both Administrator and User"
|
2115 |
msgstr "هم کاربر و هم مدیر"
|
2116 |
|
2117 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2118 |
msgid "Available Template Tags"
|
2119 |
msgstr "نمونه تگ های قابل استفاده"
|
2120 |
|
2121 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2122 |
msgid "Email Header"
|
2123 |
msgstr "سربرگ ایمیل"
|
2124 |
|
2125 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2126 |
msgid "Send this email notice when..."
|
2127 |
msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
|
2128 |
|
2129 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2130 |
msgid "Recipient:"
|
2131 |
msgstr "گیرندگان ایمیل :"
|
2132 |
|
2133 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2134 |
msgid "Both"
|
2135 |
msgstr "هر دو"
|
2136 |
|
2137 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2138 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2139 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2140 |
+
#: module-settings.php:527
|
2141 |
msgid "Label"
|
2142 |
msgstr "برچسب ( اتیکت )"
|
2143 |
|
2144 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2145 |
msgid "Reply-To Email:"
|
2146 |
msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2149 |
msgid "Save"
|
2150 |
msgstr "ذخیره"
|
2151 |
|
2152 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2153 |
msgid "CSS Styling"
|
2154 |
msgstr "صفحه آرایی با CSS"
|
2155 |
|
2156 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2157 |
msgid "Site Related"
|
2158 |
msgstr "مرتبط با سایت"
|
2159 |
|
2160 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2161 |
msgid "Your websites title"
|
2162 |
msgstr "عنوان وبسایت شما"
|
2163 |
|
2164 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2165 |
msgid "Your websites address"
|
2166 |
msgstr "آدرس وبسایت شما"
|
2167 |
|
2168 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2169 |
msgid "Your websites tagline (description)"
|
2170 |
msgstr "شرح وبسایت شما"
|
2171 |
|
2172 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2173 |
msgid "Your websites admin email"
|
2174 |
msgstr "آدرس ایمیل مدیر وبسایت شما"
|
2175 |
|
2176 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2177 |
msgid "Total number of blog members"
|
2178 |
msgstr "تعداد کل کاربران سایت شما"
|
2179 |
|
2180 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2181 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2182 |
+
#: addon-email-notices.php:1040
|
2183 |
msgid "Email Notice Updated."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2187 |
msgid "Email Notice Activated"
|
2188 |
msgstr "اطلاعیه فعال شد"
|
2189 |
|
2190 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2191 |
msgid "Email Notice Saved"
|
2192 |
msgstr "اطلاعیه ذخیره شد"
|
2193 |
|
2194 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2195 |
msgid ""
|
2196 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2197 |
"are not yet ready to use this email notice!"
|
2200 |
"استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
|
2201 |
"گردد ."
|
2202 |
|
2203 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2204 |
#, php-format
|
2205 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2206 |
msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
|
2207 |
|
2208 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2209 |
msgid "This email notice is active."
|
2210 |
msgstr "این اطلاعیه ی ایمیلی فعال شد ."
|
2211 |
|
2212 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2213 |
msgid "Settings saved."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2217 |
msgid "Unsubscribe"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2221 |
msgid "There are no email notifications yet."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2225 |
msgid "Save Changes"
|
2226 |
msgstr ""
|
2227 |
|
2270 |
|
2271 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2272 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2273 |
+
#: 52 ../includes/mycred-network.php:53
|
2274 |
msgid "myCRED"
|
2275 |
msgstr "افزونه \"اعتبار من\""
|
2276 |
|
2355 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2356 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2357 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2358 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2359 |
msgid "Exchange Rate"
|
2360 |
msgstr "نرخ مبادلات"
|
2361 |
|
2668 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2669 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2670 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2671 |
+
#: sell-content.php:669
|
2672 |
msgid "Button Label"
|
2673 |
msgstr "برچسب کلید"
|
2674 |
|
2682 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2683 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2684 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2685 |
+
#: sell-content.php:665
|
2686 |
msgid "Price"
|
2687 |
msgstr "هزینه"
|
2688 |
|
2787 |
msgstr "رد کردن"
|
2788 |
|
2789 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2790 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2791 |
+
#: modules/mycred-module-settings.php:508
|
2792 |
msgid "Delete"
|
2793 |
msgstr "پاک کردن"
|
2794 |
|
2912 |
msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
|
2913 |
|
2914 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2915 |
+
#: module-buddypress.php:439
|
2916 |
msgid "Template"
|
2917 |
msgstr "نمونه ( الگو )"
|
2918 |
|
3190 |
"داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
|
3191 |
|
3192 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3193 |
+
#: php:402
|
3194 |
msgid "Do not show."
|
3195 |
msgstr "عدم نمایش"
|
3196 |
|
3240 |
msgstr "کاربری با این مدال یافت نشد"
|
3241 |
|
3242 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3243 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3244 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3245 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3246 |
msgid "error"
|
3247 |
msgstr "خطا"
|
3248 |
|
3367 |
msgid "%s Sell This"
|
3368 |
msgstr "فروش %s "
|
3369 |
|
3370 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3371 |
#, php-format
|
3372 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3373 |
msgstr ""
|
3374 |
"برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
|
3375 |
"اندازی کنید ."
|
3376 |
|
3377 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3378 |
msgid "Setup add-on"
|
3379 |
msgstr "نصب افزونه"
|
3380 |
|
3381 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3382 |
msgid "Lets do it"
|
3383 |
msgstr "بریم که داشته باشیم !"
|
3384 |
|
3385 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3386 |
#, php-format
|
3387 |
msgid "Enable sale of this %s"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3391 |
msgid "Purchase expires after"
|
3392 |
msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
|
3393 |
|
3394 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3395 |
msgid "Thank you for your purchase!"
|
3396 |
msgstr "از خرید شما صمیمانه سپاسگذاریم !"
|
3397 |
|
3398 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3399 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3400 |
msgid "The following content is set for sale:"
|
3401 |
msgstr "محتوای زیر برای فروش تنظیم می شود :"
|
3402 |
|
3403 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3404 |
msgid "Purchased"
|
3405 |
msgstr "خریداری شده"
|
3406 |
|
3415 |
"امتیاز بیشتر را ندارید ."
|
3416 |
|
3417 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3418 |
+
#: php:2367
|
3419 |
msgid "Transfer"
|
3420 |
msgstr "جابجایی"
|
3421 |
|
3452 |
"جابجایی امتیاز امکان پذیر نخواهد بود !"
|
3453 |
|
3454 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3455 |
+
#: php:1041
|
3456 |
msgid "Insufficient Funds. Please try a lower amount."
|
3457 |
msgstr ""
|
3458 |
|
3831 |
msgid "My Entire Log"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: ../includes/mycred-functions.php:1854
|
3835 |
msgid "ref empty"
|
3836 |
msgstr "ارجاع ( استرداد ) خالی می باشد"
|
3837 |
|
3838 |
+
#: ../includes/mycred-functions.php:1862
|
3839 |
msgid "incorrect user id format"
|
3840 |
msgstr "فرمت نامعتبر شناسه ی کاربر"
|
3841 |
|
3842 |
+
#: ../includes/mycred-functions.php:1875
|
3843 |
msgid "incorrect unix timestamp (from):"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: ../includes/mycred-functions.php:1884
|
3847 |
msgid "incorrect unix timestamp (to):"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: ../includes/mycred-functions.php:2254
|
3851 |
msgid "Website Registration"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: ../includes/mycred-functions.php:2255
|
3855 |
msgid "Website Visit"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: ../includes/mycred-functions.php:2256
|
3859 |
msgid "Viewing Content (Member)"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: ../includes/mycred-functions.php:2257
|
3863 |
msgid "Viewing Content (Author)"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: ../includes/mycred-functions.php:2258
|
3867 |
msgid "Logging in"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: ../includes/mycred-functions.php:2259
|
3871 |
msgid "Publishing Content"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3875 |
msgid "Approved Comment"
|
3876 |
msgstr "نظرات تایید شده"
|
3877 |
|
3878 |
+
#: ../includes/mycred-functions.php:2261
|
3879 |
msgid "Unapproved Comment"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: ../includes/mycred-functions.php:2262
|
3883 |
msgid "SPAM Comment"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: ../includes/mycred-functions.php:2263
|
3887 |
msgid "Deleted Comment"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: ../includes/mycred-functions.php:2264
|
3891 |
msgid "Link Click"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: ../includes/mycred-functions.php:2265
|
3895 |
msgid "Watching Video"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: ../includes/mycred-functions.php:2266
|
3899 |
msgid "Visitor Referral"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: ../includes/mycred-functions.php:2267
|
3903 |
msgid "Signup Referral"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: ../includes/mycred-functions.php:2271
|
3907 |
msgid "New Profile Update"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: ../includes/mycred-functions.php:2272
|
3911 |
msgid "Avatar Upload"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: ../includes/mycred-functions.php:2273
|
3915 |
msgid "New Friendship"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: ../includes/mycred-functions.php:2274
|
3919 |
msgid "Ended Friendship"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: ../includes/mycred-functions.php:2275
|
3923 |
msgid "New Profile Comment"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: ../includes/mycred-functions.php:2276
|
3927 |
msgid "Profile Comment Deletion"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: ../includes/mycred-functions.php:2277
|
3931 |
msgid "New Message"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: ../includes/mycred-functions.php:2278
|
3935 |
msgid "Sending Gift"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: ../includes/mycred-functions.php:2279
|
3939 |
msgid "New Group"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: ../includes/mycred-functions.php:2280
|
3943 |
msgid "Deleted Group"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: ../includes/mycred-functions.php:2281
|
3947 |
msgid "New Group Forum Topic"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: ../includes/mycred-functions.php:2282
|
3951 |
msgid "Edit Group Forum Topic"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: ../includes/mycred-functions.php:2283
|
3955 |
msgid "New Group Forum Post"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: ../includes/mycred-functions.php:2284
|
3959 |
msgid "Edit Group Forum Post"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: ../includes/mycred-functions.php:2285
|
3963 |
msgid "Joining Group"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: ../includes/mycred-functions.php:2286
|
3967 |
msgid "Leaving Group"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: ../includes/mycred-functions.php:2287
|
3971 |
msgid "New Group Avatar"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: ../includes/mycred-functions.php:2288
|
3975 |
msgid "New Group Comment"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3979 |
#: php:166
|
3980 |
msgid "Photo Upload"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3984 |
#: php:176
|
3985 |
msgid "Video Upload"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
3989 |
#: php:186
|
3990 |
msgid "Music Upload"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: ../includes/mycred-functions.php:2298
|
3994 |
msgid "New Link"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: ../includes/mycred-functions.php:2299
|
3998 |
msgid "Link Voting"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: ../includes/mycred-functions.php:2300
|
4002 |
msgid "Link Update"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: ../includes/mycred-functions.php:2304
|
4006 |
msgid "New Forum (bbPress)"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: ../includes/mycred-functions.php:2305
|
4010 |
msgid "New Forum Topic (bbPress)"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: ../includes/mycred-functions.php:2306
|
4014 |
msgid "Favorited Topic (bbPress)"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: ../includes/mycred-functions.php:2307
|
4018 |
msgid "New Topic Reply (bbPress)"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: ../includes/mycred-functions.php:2311
|
4022 |
msgid "Form Submission (Contact Form 7)"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: ../includes/mycred-functions.php:2314
|
4026 |
msgid "Form Submission (Gravity Form)"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: ../includes/mycred-functions.php:2317
|
4030 |
msgid "New Forum Topic (SimplePress)"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: ../includes/mycred-functions.php:2318
|
4034 |
msgid "New Forum Post (SimplePress)"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: ../includes/mycred-functions.php:2322
|
4038 |
msgid "Poll Voting"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: ../includes/mycred-functions.php:2325
|
4042 |
msgid "Sending an Invite"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: ../includes/mycred-functions.php:2326
|
4046 |
msgid "Accepting an Invite"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: ../includes/mycred-functions.php:2332
|
4050 |
msgid "Banking Payout"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: ../includes/mycred-functions.php:2335
|
4054 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: ../includes/mycred-functions.php:2336
|
4058 |
msgid "buyCRED Purchase (Skrill)"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: ../includes/mycred-functions.php:2337
|
4062 |
msgid "buyCRED Purchase (Zombaio)"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: ../includes/mycred-functions.php:2338
|
4066 |
msgid "buyCRED Purchase (NETBilling)"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: ../includes/mycred-functions.php:2339
|
4070 |
msgid "buyCRED Purchase (BitPay)"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: ../includes/mycred-functions.php:2344
|
4074 |
msgid "Coupon Purchase"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: ../includes/mycred-functions.php:2347
|
4078 |
msgid "Store Purchase (WooCommerce)"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: ../includes/mycred-functions.php:2348
|
4082 |
msgid "Store Purchase (MarketPress)"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: ../includes/mycred-functions.php:2349
|
4086 |
msgid "Store Purchase (WP E-Commerce)"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: ../includes/mycred-functions.php:2354
|
4090 |
msgid "Event Payment (Event Espresso)"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: ../includes/mycred-functions.php:2355
|
4094 |
msgid "Event Sale (Event Espresso)"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: ../includes/mycred-functions.php:2359
|
4098 |
msgid "Event Payment (Events Manager)"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: ../includes/mycred-functions.php:2360
|
4102 |
msgid "Event Sale (Events Manager)"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: ../includes/mycred-functions.php:2364
|
4106 |
msgid "Content Purchase / Sale"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: ../includes/mycred-functions.php:2371
|
4110 |
msgid "Manual Adjustment by Admin"
|
4111 |
msgstr ""
|
4112 |
|
4156 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4157 |
msgstr "افزونه ی \"اعتبار من\" برای اجرا به SQL نسخه 5.0 نیاز دارد . نسخه ی یافت شده :"
|
4158 |
|
4159 |
+
#: ../includes/mycred-install.php:54
|
4160 |
msgid ""
|
4161 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4162 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4163 |
"for you!"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: ../includes/mycred-install.php:59
|
4167 |
msgid ""
|
4168 |
"Sorry but your WordPress installation does not reach the minimum "
|
4169 |
"requirements for running myCRED. The following errors were given:"
|
4171 |
"پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
|
4172 |
"\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
|
4173 |
|
4174 |
+
#: ../includes/mycred-install.php:248
|
4175 |
msgid "myCRED needs your attention."
|
4176 |
msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
|
4177 |
|
4178 |
+
#: ../includes/mycred-install.php:248
|
4179 |
msgid "Run Setup"
|
4180 |
msgstr "اجرای نصب"
|
4181 |
|
4182 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4183 |
msgid "myCRED Setup"
|
4184 |
msgstr "راه اندازی \"اعتبار من\""
|
4185 |
|
4186 |
+
#: ../includes/mycred-install.php:390
|
4187 |
#, php-format
|
4188 |
msgid "%s Setup"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: ../includes/mycred-install.php:392
|
4192 |
msgid "Step"
|
4193 |
msgstr "گام"
|
4194 |
|
4195 |
+
#: ../includes/mycred-install.php:416
|
4196 |
msgid ""
|
4197 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4198 |
"points format, layout and security settings."
|
4200 |
"برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
|
4201 |
"بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
|
4202 |
|
4203 |
+
#: ../includes/mycred-install.php:417
|
4204 |
msgid "Begin Setup"
|
4205 |
msgstr "آغاز نصب"
|
4206 |
|
4207 |
+
#: ../includes/mycred-install.php:472
|
4208 |
msgid "Select the format you want to use for your points."
|
4209 |
msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
|
4210 |
|
4211 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4212 |
msgid "Format"
|
4213 |
msgstr "طرح ( فرمت )"
|
4214 |
|
4215 |
+
#: ../includes/mycred-install.php:476
|
4216 |
msgid "Separators"
|
4217 |
msgstr "جداکننده ها"
|
4218 |
|
4219 |
+
#: ../includes/mycred-install.php:486
|
4220 |
msgid "Decimals"
|
4221 |
msgstr "اعداد اعشاری"
|
4222 |
|
4223 |
+
#: ../includes/mycred-install.php:488
|
4224 |
msgid "Use zero for no decimals."
|
4225 |
msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
|
4226 |
|
4227 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4228 |
msgid "Presentation"
|
4229 |
msgstr "چگونگی نمایش امتیازها"
|
4230 |
|
4231 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4232 |
msgid "Name (Singular)"
|
4233 |
msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
|
4234 |
|
4235 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4236 |
msgid "Name (Plural)"
|
4237 |
msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
|
4238 |
|
4239 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4240 |
msgid "Prefix"
|
4241 |
msgstr "پیشوند"
|
4242 |
|
4243 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4244 |
msgid "Suffix"
|
4245 |
msgstr "پسوند"
|
4246 |
|
4247 |
+
#: ../includes/mycred-install.php:516
|
4248 |
msgid "Cancel Setup"
|
4249 |
msgstr "لغو عملیات راه اندازی"
|
4250 |
|
4251 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4252 |
msgid "Next"
|
4253 |
msgstr "گام بعدی"
|
4254 |
|
4255 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4256 |
msgid "Security"
|
4257 |
msgstr "امنیت"
|
4258 |
|
4259 |
+
#: ../includes/mycred-install.php:551
|
4260 |
msgid "Edit Settings Capability"
|
4261 |
msgstr "ویرایش تنظیمات ظرفیتی"
|
4262 |
|
4263 |
+
#: ../includes/mycred-install.php:555
|
4264 |
msgid "Edit Users %plural% Capability"
|
4265 |
msgstr "ویرایش ظرفیت %plural% کاربر"
|
4266 |
|
4267 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4268 |
msgid "Maximum %plural% payouts"
|
4269 |
msgstr "بیشترین پرداخت %plural%"
|
4270 |
|
4271 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4272 |
msgid ""
|
4273 |
"As an added security, you can set the maximum amount a user can gain or "
|
4274 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4281 |
"امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
|
4282 |
"تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
|
4283 |
|
4284 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4285 |
msgid "Excludes"
|
4286 |
msgstr "کاربران استثنا"
|
4287 |
|
4288 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4289 |
msgid "Exclude those who can \"Edit Settings\"."
|
4290 |
msgstr ""
|
4291 |
"استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
|
4292 |
"خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
|
4293 |
"آن ها را در این کادر وارد فرمایید . )"
|
4294 |
|
4295 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4296 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4297 |
msgstr ""
|
4298 |
"استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
|
4299 |
"اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
|
4300 |
"، اسامی آن ها را در این کادر وارد فرمایید . )"
|
4301 |
|
4302 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4303 |
msgid "Exclude the following user IDs:"
|
4304 |
msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
|
4305 |
|
4306 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4307 |
msgid "User Deletions"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4311 |
msgid "Delete log entries when user is deleted."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: ../includes/mycred-install.php:604
|
4315 |
msgid "Ready"
|
4316 |
msgstr "آماده"
|
4317 |
|
4318 |
+
#: ../includes/mycred-install.php:605
|
4319 |
msgid "Almost done! Click the button below to finish this setup."
|
4320 |
msgstr ""
|
4321 |
"تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
|
4322 |
"پایان ببرید ."
|
4323 |
|
4324 |
+
#: ../includes/mycred-install.php:606
|
4325 |
msgid "Install & Run"
|
4326 |
msgstr "نصب و راه اندازی"
|
4327 |
|
4334 |
msgid "entry"
|
4335 |
msgstr "اطلاعات ورودی"
|
4336 |
|
4337 |
+
#: ../includes/mycred-log.php:412
|
4338 |
msgid "Go to the first page"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: ../includes/mycred-log.php:419
|
4342 |
msgid "Go to the previous page"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: ../includes/mycred-log.php:428
|
4346 |
msgid "Current page"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: ../includes/mycred-log.php:434
|
4350 |
#, php-format
|
4351 |
msgctxt "paging"
|
4352 |
msgid "%1$s of %2$s"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
+
#: ../includes/mycred-log.php:438
|
4356 |
msgid "Go to the next page"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: ../includes/mycred-log.php:445
|
4360 |
msgid "Go to the last page"
|
4361 |
msgstr ""
|
4362 |
|
4364 |
msgid "Show all references"
|
4365 |
msgstr "نمایش تمام منابع"
|
4366 |
|
4367 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4368 |
msgid "User ID"
|
4369 |
msgstr "شناسه کاربر"
|
4370 |
|
4593 |
"به یاد داشته باشید که در هنگام بلااستفاده بودن ، آن را غیرفعال کرده تا از "
|
4594 |
"فراخوانی های مخرب جلوگیری به عمل آورید ."
|
4595 |
|
4596 |
+
#: ../includes/mycred-shortcodes.php:178
|
4597 |
msgid "Leaderboard is empty."
|
4598 |
msgstr "لیست برترین ها خالیست"
|
4599 |
|
4600 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4601 |
msgid "Amount missing!"
|
4602 |
msgstr "مقدار موجود نیست"
|
4603 |
|
4604 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4605 |
msgid "Log Template Missing!"
|
4606 |
msgstr "نمونه لوگ موجود نیست"
|
4607 |
|
4608 |
+
#: ../includes/mycred-shortcodes.php:515
|
4609 |
msgid "Anchor missing URL!"
|
4610 |
msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
|
4611 |
|
4612 |
+
#: ../includes/mycred-shortcodes.php:577
|
4613 |
msgid "User ID missing for recipient."
|
4614 |
msgstr "شناسه ی کاربر گیرنده موجود نیست"
|
4615 |
|
4616 |
+
#: ../includes/mycred-shortcodes.php:632
|
4617 |
msgid "Sent"
|
4618 |
msgstr "ارسال شده"
|
4619 |
|
4620 |
+
#: ../includes/mycred-shortcodes.php:633
|
4621 |
msgid "Error - Try Again"
|
4622 |
msgstr "خطا - لطفا مجددا تلاش کنید"
|
4623 |
|
4624 |
+
#: ../includes/mycred-shortcodes.php:742
|
4625 |
msgid "A video ID is required for this shortcode"
|
4626 |
msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
|
4627 |
|
4628 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4629 |
msgid "Point types not found."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4633 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4634 |
#, php-format
|
4635 |
msgid "You are excluded from using %s."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4639 |
msgid "Your balance is too low to use this feature."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: ../includes/mycred-shortcodes.php:924
|
4643 |
#, php-format
|
4644 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
+
#: ../includes/mycred-shortcodes.php:933
|
4648 |
#, php-format
|
4649 |
msgid "Your current %s balance"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: ../includes/mycred-shortcodes.php:941
|
4653 |
#, php-format
|
4654 |
msgid "Minimum %s"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: ../includes/mycred-shortcodes.php:945
|
4658 |
#, php-format
|
4659 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: ../includes/mycred-shortcodes.php:951
|
4663 |
msgid "Exchange"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4667 |
#, php-format
|
4668 |
msgid "You must exchange at least %s!"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4672 |
#, php-format
|
4673 |
msgid "Exchange from %s"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4677 |
#, php-format
|
4678 |
msgid "Exchange to %s"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4682 |
#, php-format
|
4683 |
msgid "You have successfully exchanged %s into %s."
|
4684 |
msgstr ""
|
4697 |
msgid "My Balance"
|
4698 |
msgstr "میزان امتیازات من"
|
4699 |
|
4700 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4701 |
msgid "%plural% History"
|
4702 |
msgstr "گزارش جابجایی %plural%"
|
4703 |
|
5116 |
msgid "Current balance"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5120 |
msgid "Go"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5124 |
msgid "Show in Profile"
|
5125 |
msgstr "نمایش در پروفایل"
|
5126 |
|
5127 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5128 |
#, php-format
|
5129 |
msgid "%singular% Balance"
|
5130 |
msgstr "میزان %singular%"
|
5131 |
|
5132 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5133 |
#, php-format
|
5134 |
msgid "Members and visitors can other members %_singular% balance."
|
5135 |
msgstr ""
|
5136 |
|
5137 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5138 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5139 |
msgstr ""
|
5140 |
"توجه داشته باشید که علاوه بر آن می توانید از %rank_logo% برای نمایش عکس شاخص "
|
5141 |
"رنک استفاده نمایید ."
|
5142 |
|
5143 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5144 |
msgid "Members can view each others %_plural% history."
|
5145 |
msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
|
5146 |
|
5147 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5148 |
msgid "Menu Title"
|
5149 |
msgstr "عنوان منو"
|
5150 |
|
5151 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5152 |
msgid "Title shown to me"
|
5153 |
msgstr "عنوان به من نمایش داده شد"
|
5154 |
|
5155 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5156 |
#, php-format
|
5157 |
msgid "Title shown to others. Use %s to show the first name."
|
5158 |
msgstr ""
|
5159 |
"عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
|
5160 |
"استفاده کنید ."
|
5161 |
|
5162 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5163 |
msgid "Menu Position"
|
5164 |
msgstr "جایگاه منو"
|
5165 |
|
5166 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5167 |
msgid "Current menu positions:"
|
5168 |
msgstr "جایگاه فعلی منو :"
|
5169 |
|
5170 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5171 |
msgid "History URL slug"
|
5172 |
msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
|
5173 |
|
5174 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5175 |
msgid "Do not use empty spaces!"
|
5176 |
msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
|
5177 |
|
5178 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5179 |
msgid "Number of history entries to show"
|
5180 |
msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
|
5181 |
|
5313 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5314 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5315 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5316 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5317 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5318 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5319 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5320 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5375 |
msgid "%plural% for viewing %s"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5379 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5380 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5381 |
msgid "Limit"
|
5382 |
msgstr "محدوده"
|
5466 |
msgid "Custom tags: %url%, %title% or %id%."
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5470 |
msgid "Note!"
|
5471 |
msgstr "نکته !"
|
5472 |
|
5482 |
"href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
|
5483 |
"استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
|
5484 |
|
5485 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5486 |
msgid "Available Shortcode"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5490 |
msgid "Amount to award for viewing videos."
|
5491 |
msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
|
5492 |
|
5493 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5494 |
msgid "Award Logic"
|
5495 |
msgstr "منطق اهدای امتیازات"
|
5496 |
|
5497 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5498 |
#, php-format
|
5499 |
msgid "Select when %_plural% should be awarded or deducted."
|
5500 |
msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
|
5501 |
|
5502 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5503 |
msgid "Play - As soon as video starts playing."
|
5504 |
msgstr "پخش - به محض شروع به پخش ویدیو"
|
5505 |
|
5506 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5507 |
msgid "Full - First when the entire video has played."
|
5508 |
msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
|
5509 |
|
5510 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5511 |
msgid "Interval - For each x number of seconds watched."
|
5512 |
msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
|
5513 |
|
5514 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5515 |
msgid "Number of seconds"
|
5516 |
msgstr "تعداد ثانیه ها"
|
5517 |
|
5518 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5519 |
msgid "Leniency"
|
5520 |
msgstr "نرمی و ملایمت"
|
5521 |
|
5522 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5523 |
msgid ""
|
5524 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5525 |
"length."
|
5527 |
"بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
|
5528 |
"می شه ، تفاوت پیدا کنه"
|
5529 |
|
5530 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5531 |
msgid ""
|
5532 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5533 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5538 |
"در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
|
5539 |
"روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
|
5540 |
|
5541 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5542 |
msgid "Affiliate Program"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5546 |
msgid "Per Day"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5550 |
msgid "Link"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5554 |
+
msgid "Visitors Referred"
|
5555 |
+
msgstr ""
|
5556 |
+
|
5557 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5558 |
+
msgid "Signups Referred"
|
5559 |
+
msgstr ""
|
5560 |
+
|
5561 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5562 |
msgid "Referring Visitors"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5566 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5570 |
msgid "Referring Signups"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5574 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5578 |
msgid "Registrations are disabled."
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5582 |
msgid "Referral Links"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5586 |
msgid "Assign numeric referral IDs to each user."
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5590 |
msgid "Example"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5594 |
msgid "Assign usernames as IDs for each user."
|
5595 |
msgstr ""
|
5596 |
|
5597 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5598 |
msgid "IP Limit"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5602 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5606 |
msgid "BuddyPress Profile"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5610 |
msgid "Insert Link in users Profile"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5614 |
msgid ""
|
5615 |
"Option to inser the referral link in users profiles. Links will only be "
|
5616 |
"visible to users viewing their own profiles or administrators."
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5620 |
msgid "Leave empty to hide."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5624 |
msgid "Description"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5628 |
msgid "Optional description to insert under the link."
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5632 |
msgid "Profile Positioning"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5636 |
msgid ""
|
5637 |
"You can move around the referral link on your users profile by changing the "
|
5638 |
"position. Increase to move up, decrease to move down."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5642 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5646 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5650 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5651 |
msgid "Access denied for this action"
|
5652 |
msgstr "عدم دسترسی مجاز برای انجام این عملیات"
|
5653 |
|
5663 |
msgid "Entry Updated"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5667 |
msgid "Entries"
|
5668 |
msgstr "داده های ورودی"
|
5669 |
|
5670 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5671 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5672 |
msgid "Export"
|
5673 |
msgstr "خروجی گرفتن"
|
5674 |
|
5715 |
msgstr ""
|
5716 |
|
5717 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5718 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5719 |
msgid "Missing point type"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: ../modules/mycred-module-settings.php:129
|
5723 |
msgid "Accounts successfully reset"
|
5724 |
msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
|
5725 |
|
5726 |
+
#: ../modules/mycred-module-settings.php:175
|
5727 |
msgid "No users found to export"
|
5728 |
msgstr "کاربری برای خروجی گرفتن یافت نشد"
|
5729 |
|
5730 |
+
#: ../modules/mycred-module-settings.php:331
|
5731 |
#, php-format
|
5732 |
msgid "%s Settings"
|
5733 |
msgstr "تنظیمات %s"
|
5734 |
|
5735 |
+
#: ../modules/mycred-module-settings.php:334
|
5736 |
msgid "Adjust your core or add-on settings."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: ../modules/mycred-module-settings.php:339
|
5740 |
msgid "Core Settings"
|
5741 |
msgstr "تنظیمات اصلی"
|
5742 |
|
5743 |
+
#: ../modules/mycred-module-settings.php:341
|
5744 |
msgid "Name"
|
5745 |
msgstr "نام"
|
5746 |
|
5747 |
+
#: ../modules/mycred-module-settings.php:346
|
5748 |
#, php-format
|
5749 |
msgid "Accessible though the %singular% template tag."
|
5750 |
msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
|
5751 |
|
5752 |
+
#: ../modules/mycred-module-settings.php:351
|
5753 |
msgid "Accessible though the %plural% template tag."
|
5754 |
msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
|
5755 |
|
5756 |
+
#: ../modules/mycred-module-settings.php:354
|
5757 |
msgid "Tip"
|
5758 |
msgstr "نکته"
|
5759 |
|
5760 |
+
#: ../modules/mycred-module-settings.php:354
|
5761 |
msgid ""
|
5762 |
"Adding an underscore at the beginning of template tag for names will return "
|
5763 |
"them in lowercase. i.e. %_singular%"
|
5765 |
"اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
|
5766 |
"شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
|
5767 |
|
5768 |
+
#: ../modules/mycred-module-settings.php:372
|
5769 |
msgid "Separator"
|
5770 |
msgstr "جدا کننده"
|
5771 |
|
5772 |
+
#: ../modules/mycred-module-settings.php:379
|
5773 |
msgid "Edit Settings"
|
5774 |
msgstr "تنظیم مجدد"
|
5775 |
|
5776 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5777 |
+
#: php:386
|
5778 |
msgid "Capability to check for."
|
5779 |
msgstr "توانایی بررسی"
|
5780 |
|
5781 |
+
#: ../modules/mycred-module-settings.php:384
|
5782 |
msgid "Edit Users %plural%"
|
5783 |
msgstr "ویرایش %plural% کاربران"
|
5784 |
|
5785 |
+
#: ../modules/mycred-module-settings.php:408
|
5786 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5787 |
msgstr ""
|
5788 |
"برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
|
5789 |
"استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
|
5790 |
|
5791 |
+
#: ../modules/mycred-module-settings.php:428
|
5792 |
msgid "Management"
|
5793 |
msgstr "مدیریت"
|
5794 |
|
5795 |
+
#: ../modules/mycred-module-settings.php:430
|
5796 |
msgid "The Log"
|
5797 |
msgstr "لیست گزارش ( لوگ )"
|
5798 |
|
5799 |
+
#: ../modules/mycred-module-settings.php:433
|
5800 |
msgid "Table Name"
|
5801 |
msgstr "نام جدول"
|
5802 |
|
5803 |
+
#: ../modules/mycred-module-settings.php:442
|
5804 |
msgid "Empty Log"
|
5805 |
msgstr "لیست گزارشات ( لوگ ) خالی"
|
5806 |
|
5807 |
+
#: ../modules/mycred-module-settings.php:448
|
5808 |
msgid "User Meta Key"
|
5809 |
msgstr "کلید اطلاعات کاربر ( Meta key ("
|
5810 |
|
5811 |
+
#: ../modules/mycred-module-settings.php:457
|
5812 |
msgid "Set all to zero"
|
5813 |
msgstr "تغییر تمام داده ها به عدد صفر"
|
5814 |
|
5815 |
+
#: ../modules/mycred-module-settings.php:457
|
5816 |
msgid "CSV Export"
|
5817 |
msgstr "خروجی گرفتن به صورت فایل CVS"
|
5818 |
|
5819 |
+
#: ../modules/mycred-module-settings.php:478
|
5820 |
msgid "Default"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5824 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5825 |
msgid "Meta Key"
|
5826 |
msgstr "کلید اطلاعات"
|
5827 |
|
5828 |
+
#: ../modules/mycred-module-settings.php:519
|
5829 |
msgid "Add New Type"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: ../modules/mycred-module-settings.php:524
|
5833 |
msgid "A unique ID for this type."
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: ../modules/mycred-module-settings.php:529
|
5837 |
msgid "Menu and page title."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: ../modules/mycred-module-settings.php:532
|
5841 |
msgid "The meta key will define where your users balances are saved."
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: ../modules/mycred-module-settings.php:553
|
5845 |
msgid "Identify users by"
|
5846 |
msgstr "تایید هویت کاربر به وسیله ی"
|
5847 |
|
5848 |
+
#: ../modules/mycred-module-settings.php:559
|
5849 |
msgid "User Email"
|
5850 |
msgstr "ایمیل کاربر"
|
5851 |
|
5852 |
+
#: ../modules/mycred-module-settings.php:560
|
5853 |
msgid "User Login"
|
5854 |
msgstr "ورود کاربر"
|
5855 |
|
5856 |
+
#: ../modules/mycred-module-settings.php:567
|
5857 |
msgid ""
|
5858 |
"Use ID if you intend to use this export as a backup of your current site "
|
5859 |
"while Email is recommended if you want to export to a different site."
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: ../modules/mycred-module-settings.php:570
|
5863 |
msgid "Import Log Entry"
|
5864 |
msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
|
5865 |
|
5866 |
+
#: ../modules/mycred-module-settings.php:572
|
5867 |
#, php-format
|
5868 |
msgid ""
|
5869 |
"Optional log entry to use if you intend to import this file in a different "
|
5872 |
"لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را "
|
5873 |
"در مرحله ی نصب %s دیگری وارد فرمایید ."
|
5874 |
|
5875 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5876 |
msgid "BadgeOS"
|
5877 |
msgstr ""
|
5878 |
"افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا "
|
5879 |
"گواهینامه )"
|
5880 |
|
5881 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5882 |
msgid ""
|
5883 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5884 |
"overridden for individual achievement type."
|
5886 |
"تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را "
|
5887 |
"برای مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
|
5888 |
|
5889 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5890 |
#, php-format
|
5891 |
msgid ""
|
5892 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5895 |
"برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> "
|
5896 |
"خود را سفارشی سازی کنید"
|
5897 |
|
5898 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5899 |
msgid "%plural% to Award"
|
5900 |
msgstr "%plural% برای اهدا"
|
5901 |
|
5902 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5903 |
msgid "Use zero to disable"
|
5904 |
msgstr "برای غیرفعالسازی عدد صفر را وارد کنید"
|
5905 |
|
5906 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5907 |
msgid "Deduction Log Template"
|
5908 |
msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
|
5909 |
|
5910 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5911 |
#, php-format
|
5912 |
msgid "Default %s for %s"
|
5913 |
msgstr "%s پیش فرض برای %s"
|
5914 |
|
5915 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5916 |
msgid "Use zero to disable users gaining %_plural%"
|
5917 |
msgstr "برای غیرفعالسازی کسب %_plural% توسط کاربران ، عدد صفر را وارد کنید"
|
5918 |
|
5919 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5920 |
msgid "Default Log template"
|
5921 |
msgstr "نمونه ی گزارشات ( لوگ ) پیش فرض"
|
5922 |
|
lang/mycred-fr_FR.mo
CHANGED
Binary file
|
lang/mycred-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: French\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
@@ -21,32 +21,32 @@ msgstr ""
|
|
21 |
"X-Loco-Target-Locale: fr_FR\n"
|
22 |
"X-Generator: Loco - https://localise.biz/"
|
23 |
|
24 |
-
#: ../mycred.php:
|
25 |
msgid "Balance"
|
26 |
msgstr "Solde"
|
27 |
|
28 |
-
#: ../mycred.php:
|
29 |
msgid "%label% History"
|
30 |
msgstr "Historique %label%"
|
31 |
|
32 |
-
#: ../mycred.php:
|
33 |
#, php-format
|
34 |
msgid "About %s"
|
35 |
msgstr "À propos de %s"
|
36 |
|
37 |
-
#: ../mycred.php:
|
38 |
msgid "Awesome People"
|
39 |
msgstr "On les remercie"
|
40 |
|
41 |
-
#: ../mycred.php:
|
42 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
43 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
44 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
45 |
-
#: includes/mycred-shortcodes.php:
|
46 |
msgid "Processing..."
|
47 |
msgstr "Chargement en cours..."
|
48 |
|
49 |
-
#: ../mycred.php:
|
50 |
msgid ""
|
51 |
"Warning! All entries in your log will be permanently removed! This can not "
|
52 |
"be undone!"
|
@@ -54,7 +54,7 @@ msgstr ""
|
|
54 |
"Attention ! Toutes les entrées seront définitivement supprimées. Cette "
|
55 |
"action ne pourra pas être annulée."
|
56 |
|
57 |
-
#: ../mycred.php:
|
58 |
msgid ""
|
59 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
60 |
"can not be undone!"
|
@@ -62,55 +62,55 @@ msgstr ""
|
|
62 |
"Toutes les entrées appartenant aux utilisateurs supprimés seront "
|
63 |
"définitivement détruites. Cette action ne pourra pas être annulée."
|
64 |
|
65 |
-
#: ../mycred.php:
|
66 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
67 |
msgstr ""
|
68 |
"Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
|
69 |
"action ne pourra pas être annulée."
|
70 |
|
71 |
-
#: ../mycred.php:
|
72 |
msgid "Done!"
|
73 |
msgstr "Terminé !"
|
74 |
|
75 |
-
#: ../mycred.php:
|
76 |
msgid "Close"
|
77 |
msgstr "fermer"
|
78 |
|
79 |
-
#: ../mycred.php:
|
80 |
msgid "Export users %plural%"
|
81 |
msgstr "Exportation des %plural% des utilisateurs"
|
82 |
|
83 |
-
#: ../mycred.php:
|
84 |
msgid "Edit Users Balance"
|
85 |
msgstr "Modifier le solde des utilisateurs"
|
86 |
|
87 |
-
#: ../mycred.php:
|
88 |
msgid "Edit Log Entry"
|
89 |
msgstr "Modifier une entrée du journal"
|
90 |
|
91 |
-
#: ../mycred.php:
|
92 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
93 |
msgstr ""
|
94 |
"Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
|
95 |
"être annulée."
|
96 |
|
97 |
-
#: ../mycred.php:
|
98 |
msgid "Log entry updated"
|
99 |
msgstr "L'entrée du journal a été mise à jour"
|
100 |
|
101 |
-
#: ../mycred.php:
|
102 |
-
#: notices.php:
|
103 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
104 |
msgid "Setup"
|
105 |
msgstr "Configuration"
|
106 |
|
107 |
-
#: ../mycred.php:
|
108 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
109 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
110 |
msgid "Settings"
|
111 |
msgstr "Configuration"
|
112 |
|
113 |
-
#: ../mycred.php:
|
114 |
msgid ""
|
115 |
"Make sure to backup your database and files before updating, in case "
|
116 |
"anything goes wrong!"
|
@@ -152,10 +152,10 @@ msgstr "Une fois par jour (remise à zéro à minuit)"
|
|
152 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
153 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
154 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
155 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
156 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
157 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
158 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
159 |
msgid "Select"
|
160 |
msgstr "sélectionnez"
|
161 |
|
@@ -255,7 +255,7 @@ msgid "Requirements"
|
|
255 |
msgstr ""
|
256 |
|
257 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
258 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
259 |
msgid "Users"
|
260 |
msgstr "Utilisateurs"
|
261 |
|
@@ -338,22 +338,22 @@ msgstr ""
|
|
338 |
|
339 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
340 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
341 |
-
#: modules/mycred-module-buddypress.php:
|
342 |
msgid "Do not show"
|
343 |
msgstr "Ne pas afficher"
|
344 |
|
345 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
346 |
-
#: buddypress.php:
|
347 |
msgid "Include in Profile Header"
|
348 |
msgstr ""
|
349 |
|
350 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
351 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
352 |
msgid "Include under the \"Profile\" tab"
|
353 |
msgstr "Inclure sous l'onglet \"Profil\""
|
354 |
|
355 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
356 |
-
#: buddypress.php:
|
357 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
358 |
msgstr ""
|
359 |
|
@@ -422,7 +422,7 @@ msgstr ""
|
|
422 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
423 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
424 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
425 |
-
#: modules/mycred-module-settings.php:
|
426 |
msgid "Access Denied"
|
427 |
msgstr "Accès refusé"
|
428 |
|
@@ -573,8 +573,8 @@ msgstr "Paiement"
|
|
573 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
574 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
575 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
576 |
-
#: modules/mycred-module-hooks.php:
|
577 |
-
#: plugins/mycred-hook-badgeOS.php:
|
578 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
579 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
580 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -671,15 +671,15 @@ msgstr "Payer les Utilisateurs"
|
|
671 |
|
672 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
673 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
674 |
-
#: creds.php:
|
675 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
676 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
677 |
-
#: includes/mycred-shortcodes.php:
|
678 |
msgid "Amount"
|
679 |
msgstr "Montant"
|
680 |
|
681 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
682 |
-
#: modules/mycred-module-hooks.php:
|
683 |
msgid "Interval"
|
684 |
msgstr "Intervalle"
|
685 |
|
@@ -731,7 +731,7 @@ msgid "Edit Pending Payment"
|
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
734 |
-
#: addon-buy-creds.php:
|
735 |
msgid "No pending payments found"
|
736 |
msgstr ""
|
737 |
|
@@ -740,23 +740,23 @@ msgid "Not found in Trash"
|
|
740 |
msgstr ""
|
741 |
|
742 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
743 |
-
#: addon-buy-creds.php:
|
744 |
msgid "Transaction ID"
|
745 |
msgstr "ID de la transaction"
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
748 |
-
#: addon-buy-creds.php:
|
749 |
msgid "Buyer"
|
750 |
msgstr ""
|
751 |
|
752 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
753 |
-
#: addon-buy-creds.php:
|
754 |
#: gateway.php:563
|
755 |
msgid "Cost"
|
756 |
msgstr "Prix"
|
757 |
|
758 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
759 |
-
#: addon-buy-creds.php:
|
760 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
761 |
msgid "Gateway"
|
762 |
msgstr "Service"
|
@@ -805,7 +805,7 @@ msgstr "Nombre minimum de %_plural% qu'un membre peut acheter. 1 par défaut
|
|
805 |
|
806 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
807 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
808 |
-
#: module-settings.php:
|
809 |
msgid "Point Types"
|
810 |
msgstr "Types de Points"
|
811 |
|
@@ -858,7 +858,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
858 |
msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
|
859 |
|
860 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
861 |
-
#: hooks.php:
|
862 |
msgid "Available Shortcodes"
|
863 |
msgstr "Shortcodes disponibles"
|
864 |
|
@@ -885,7 +885,7 @@ msgid "%s Payment Gateways"
|
|
885 |
msgstr "%s Services de Paiements"
|
886 |
|
887 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
888 |
-
#: addon-buy-creds.php:
|
889 |
msgid "buyCRED Settings"
|
890 |
msgstr "Configuration buyCRED"
|
891 |
|
@@ -910,7 +910,7 @@ msgid "Enable for test purchases."
|
|
910 |
msgstr "Activez pour faire des tests d'achats factices."
|
911 |
|
912 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
913 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
914 |
msgid "Update Settings"
|
915 |
msgstr "Enregistrer la configuration"
|
916 |
|
@@ -918,103 +918,103 @@ msgstr "Enregistrer la configuration"
|
|
918 |
msgid "More Gateways"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
922 |
#: 634
|
923 |
msgid "Date"
|
924 |
msgstr "Daté"
|
925 |
|
926 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
927 |
msgid "Payed"
|
928 |
msgstr "Payé"
|
929 |
|
930 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
931 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
932 |
msgstr "Relevé des achats <strong>buy</strong>CRED"
|
933 |
|
934 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
935 |
#: booking/mycred-eventespresso3.php:367
|
936 |
msgid "Gateway Settings"
|
937 |
msgstr "Configuration du service de paiement"
|
938 |
|
939 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
940 |
-
#: content/myCRED-addon-sell-content.php:
|
941 |
msgid "No purchases found"
|
942 |
msgstr "Aucun achat trouvé"
|
943 |
|
944 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
945 |
-
#: addon-buy-creds.php:
|
946 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
947 |
msgstr ""
|
948 |
"Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
|
949 |
"shortcode."
|
950 |
|
951 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
952 |
-
#: addon-buy-creds.php:
|
953 |
msgid "No gateways installed."
|
954 |
msgstr "Aucun systme de paiement n'est installé."
|
955 |
|
956 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
957 |
-
#: addon-buy-creds.php:
|
958 |
msgid "Gateway does not exist."
|
959 |
msgstr "Le service de paiement n'existe pas."
|
960 |
|
961 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
962 |
msgid "Yourself"
|
963 |
msgstr "Vous-même"
|
964 |
|
965 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
966 |
msgid "No active gateways found."
|
967 |
msgstr "Aucun service de paiement n'a été trouvé."
|
968 |
|
969 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
970 |
msgid "The selected gateway is not active."
|
971 |
msgstr "Ce service de paiement n'est pas activé"
|
972 |
|
973 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
974 |
#, php-format
|
975 |
msgid "Buy with %gateway%"
|
976 |
msgstr "Régler avec %gateway%"
|
977 |
|
978 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
979 |
#: content/myCRED-addon-sell-content.php:44
|
980 |
msgid "Buy Now"
|
981 |
msgstr "Acheter maintenant"
|
982 |
|
983 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
984 |
msgid "No users found"
|
985 |
msgstr "Aucun membre n'a été trouvé"
|
986 |
|
987 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
988 |
msgid "To"
|
989 |
msgstr "à"
|
990 |
|
991 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
992 |
msgid "Select Amount"
|
993 |
msgstr "Sélectionnez le montant"
|
994 |
|
995 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
996 |
msgid "min."
|
997 |
msgstr "mini."
|
998 |
|
999 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1000 |
msgid "Select Gateway"
|
1001 |
msgstr "Sélectionnez le service de paiement"
|
1002 |
|
1003 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1004 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1005 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1006 |
#: php:35
|
1007 |
msgid "Pay Now"
|
1008 |
msgstr "Payer maintenant"
|
1009 |
|
1010 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1011 |
-
#: php:
|
1012 |
msgid "Cancel"
|
1013 |
msgstr "Annuler"
|
1014 |
|
1015 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1016 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1017 |
-
#: module-settings.php:
|
1018 |
msgid "Actions"
|
1019 |
msgstr "Actions"
|
1020 |
|
@@ -1159,55 +1159,55 @@ msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
|
|
1159 |
msgid "The following information will be sent to the gateway"
|
1160 |
msgstr "Les informations suivantes seront envoyées au Service"
|
1161 |
|
1162 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1163 |
msgid "Outside US"
|
1164 |
msgstr "Hors Etats-Unis"
|
1165 |
|
1166 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1167 |
msgid "January"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1171 |
msgid "February"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1175 |
msgid "March"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1179 |
msgid "April"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1183 |
msgid "May"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1187 |
msgid "June"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1191 |
msgid "July"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1195 |
msgid "August"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1199 |
msgid "September"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1203 |
msgid "October"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1207 |
msgid "November"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1211 |
msgid "December"
|
1212 |
msgstr ""
|
1213 |
|
@@ -1463,7 +1463,7 @@ msgstr "Page de contrôle"
|
|
1463 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1464 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1465 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1466 |
-
#: modules/mycred-module-hooks.php:
|
1467 |
msgid "Title"
|
1468 |
msgstr "Titre"
|
1469 |
|
@@ -1668,7 +1668,7 @@ msgid "not yet used"
|
|
1668 |
msgstr "pas encore utilisé"
|
1669 |
|
1670 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1671 |
-
#: php:
|
1672 |
msgid "Total"
|
1673 |
msgstr "Total"
|
1674 |
|
@@ -1850,7 +1850,7 @@ msgid "Apply Coupon"
|
|
1850 |
msgstr "Appliquer le bon"
|
1851 |
|
1852 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1853 |
-
#: notices/myCRED-addon-email-notices.php:
|
1854 |
msgid "Email Notice"
|
1855 |
msgstr "Message à envoyer"
|
1856 |
|
@@ -2043,17 +2043,17 @@ msgstr ""
|
|
2043 |
"lors de la modification d'un mail."
|
2044 |
|
2045 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2046 |
-
#: notices/myCRED-addon-email-notices.php:
|
2047 |
msgid "Email Settings"
|
2048 |
msgstr "Configuration des mails"
|
2049 |
|
2050 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2051 |
-
#: notices/myCRED-addon-email-notices.php:
|
2052 |
msgid "Senders Name:"
|
2053 |
msgstr "Expéditeur:"
|
2054 |
|
2055 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2056 |
-
#: notices/myCRED-addon-email-notices.php:
|
2057 |
msgid "Senders Email:"
|
2058 |
msgstr "Email de l'expéditeur"
|
2059 |
|
@@ -2077,140 +2077,140 @@ msgstr "Style par défaut"
|
|
2077 |
msgid "Ignored if HTML is not allowed in emails."
|
2078 |
msgstr "Sera ignoré si HTML désactivé pour les mails"
|
2079 |
|
2080 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2081 |
-
#: notices/myCRED-addon-email-notices.php:
|
2082 |
msgid "Email Subject"
|
2083 |
msgstr "Sujet du mail"
|
2084 |
|
2085 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2086 |
msgid "Status"
|
2087 |
msgstr "Statut"
|
2088 |
|
2089 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2090 |
msgid "Not Active"
|
2091 |
msgstr "Inactif"
|
2092 |
|
2093 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2094 |
#, php-format
|
2095 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2096 |
msgstr "Prévu pour le:<br /><strong>%1$s</strong>"
|
2097 |
|
2098 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2099 |
msgid "Active"
|
2100 |
msgstr "Actif"
|
2101 |
|
2102 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2103 |
#, php-format
|
2104 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2105 |
msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
|
2106 |
|
2107 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2108 |
msgid "Email is sent when"
|
2109 |
msgstr "Le mail sera envoyé quand"
|
2110 |
|
2111 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2112 |
msgid "Missing instance for this notice!"
|
2113 |
msgstr "Ce message n'est pas instancié !"
|
2114 |
|
2115 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2116 |
-
#: notices/myCRED-addon-email-notices.php:
|
2117 |
-
#: addon-email-notices.php:
|
2118 |
msgid "Sent To"
|
2119 |
msgstr "Envoyer à"
|
2120 |
|
2121 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2122 |
-
#: notices/myCRED-addon-email-notices.php:
|
2123 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2124 |
msgid "User"
|
2125 |
msgstr "Utilisateur"
|
2126 |
|
2127 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2128 |
-
#: notices/myCRED-addon-email-notices.php:
|
2129 |
msgid "Administrator"
|
2130 |
msgstr "Administrateur"
|
2131 |
|
2132 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2133 |
msgid "Both Administrator and User"
|
2134 |
msgstr "A l'administrateur et à l'utilisateur"
|
2135 |
|
2136 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2137 |
msgid "Available Template Tags"
|
2138 |
msgstr "Mots-clés utilisables ici"
|
2139 |
|
2140 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2141 |
msgid "Email Header"
|
2142 |
msgstr "En-tête du mail"
|
2143 |
|
2144 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2145 |
msgid "Send this email notice when..."
|
2146 |
msgstr "Envoyer ce mail quand...."
|
2147 |
|
2148 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2149 |
msgid "Recipient:"
|
2150 |
msgstr "Destinataire:"
|
2151 |
|
2152 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2153 |
msgid "Both"
|
2154 |
msgstr "Les deux"
|
2155 |
|
2156 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2157 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2158 |
-
#: settings.php:
|
2159 |
-
#: module-settings.php:
|
2160 |
msgid "Label"
|
2161 |
msgstr "Etiquette"
|
2162 |
|
2163 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2164 |
msgid "Reply-To Email:"
|
2165 |
msgstr "Adresse de réponse"
|
2166 |
|
2167 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2168 |
msgid "Save"
|
2169 |
msgstr "Enregistrer"
|
2170 |
|
2171 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2172 |
msgid "CSS Styling"
|
2173 |
msgstr "Règles de style"
|
2174 |
|
2175 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2176 |
msgid "Site Related"
|
2177 |
msgstr "A propos du site"
|
2178 |
|
2179 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2180 |
msgid "Your websites title"
|
2181 |
msgstr "Titre de votre site"
|
2182 |
|
2183 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2184 |
msgid "Your websites address"
|
2185 |
msgstr "Adresse de votre site"
|
2186 |
|
2187 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2188 |
msgid "Your websites tagline (description)"
|
2189 |
msgstr "Description de votre site"
|
2190 |
|
2191 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2192 |
msgid "Your websites admin email"
|
2193 |
msgstr "Email de l'administrateur du site"
|
2194 |
|
2195 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2196 |
msgid "Total number of blog members"
|
2197 |
msgstr "Total des membres de votre blog"
|
2198 |
|
2199 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2200 |
-
#: notices/myCRED-addon-email-notices.php:
|
2201 |
-
#: addon-email-notices.php:
|
2202 |
msgid "Email Notice Updated."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2206 |
msgid "Email Notice Activated"
|
2207 |
msgstr "Message activé"
|
2208 |
|
2209 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2210 |
msgid "Email Notice Saved"
|
2211 |
msgstr "Message enregistré"
|
2212 |
|
2213 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2214 |
msgid ""
|
2215 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2216 |
"are not yet ready to use this email notice!"
|
@@ -2219,28 +2219,28 @@ msgstr ""
|
|
2219 |
"actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
|
2220 |
"l'utiliser."
|
2221 |
|
2222 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2223 |
#, php-format
|
2224 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2225 |
msgstr "Ce message sera activé le:<br /><strong>%1$s</strong>"
|
2226 |
|
2227 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2228 |
msgid "This email notice is active."
|
2229 |
msgstr "Ce message est activé."
|
2230 |
|
2231 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2232 |
msgid "Settings saved."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2236 |
msgid "Unsubscribe"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2240 |
msgid "There are no email notifications yet."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2244 |
msgid "Save Changes"
|
2245 |
msgstr ""
|
2246 |
|
@@ -2290,7 +2290,7 @@ msgstr "Payé"
|
|
2290 |
|
2291 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2292 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2293 |
-
#: 52 ../includes/mycred-network.php:53
|
2294 |
msgid "myCRED"
|
2295 |
msgstr "myCred"
|
2296 |
|
@@ -2373,7 +2373,7 @@ msgstr "Combien vaut 1 %_singular% en %currency% ?"
|
|
2373 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2374 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2375 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2376 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2377 |
msgid "Exchange Rate"
|
2378 |
msgstr "Taux de change"
|
2379 |
|
@@ -2681,7 +2681,7 @@ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
|
|
2681 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2682 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2683 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2684 |
-
#: sell-content.php:
|
2685 |
msgid "Button Label"
|
2686 |
msgstr "Intitulé du bouton"
|
2687 |
|
@@ -2695,7 +2695,7 @@ msgstr "Bouton de paiement"
|
|
2695 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2696 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2697 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2698 |
-
#: sell-content.php:
|
2699 |
msgid "Price"
|
2700 |
msgstr "Prix"
|
2701 |
|
@@ -2800,8 +2800,8 @@ msgid "Reject"
|
|
2800 |
msgstr "Rejeter"
|
2801 |
|
2802 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2803 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2804 |
-
#: modules/mycred-module-settings.php:
|
2805 |
msgid "Delete"
|
2806 |
msgstr "Suppirmer"
|
2807 |
|
@@ -2932,7 +2932,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2932 |
msgstr "Utiliser le style CSS inclus pour les notifications."
|
2933 |
|
2934 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2935 |
-
#: module-buddypress.php:
|
2936 |
msgid "Template"
|
2937 |
msgstr "Texte à afficher"
|
2938 |
|
@@ -3221,7 +3221,7 @@ msgstr ""
|
|
3221 |
"site quand les classements sont marqués comme \"Publics\""
|
3222 |
|
3223 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3224 |
-
#: php:
|
3225 |
msgid "Do not show."
|
3226 |
msgstr "Ne pas afficher."
|
3227 |
|
@@ -3271,9 +3271,9 @@ msgid "No users found with this rank"
|
|
3271 |
msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
|
3272 |
|
3273 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3274 |
-
#: shortcodes.php:
|
3275 |
-
#: shortcodes.php:
|
3276 |
-
#: shortcodes.php:
|
3277 |
msgid "error"
|
3278 |
msgstr "erreur"
|
3279 |
|
@@ -3400,40 +3400,40 @@ msgstr "Template de connexion pour les ventes"
|
|
3400 |
msgid "%s Sell This"
|
3401 |
msgstr "%s a vendu ceci"
|
3402 |
|
3403 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3404 |
#, php-format
|
3405 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3406 |
msgstr ""
|
3407 |
"%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
|
3408 |
"cette fonctionnalité."
|
3409 |
|
3410 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3411 |
msgid "Setup add-on"
|
3412 |
msgstr "Configuration du module"
|
3413 |
|
3414 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3415 |
msgid "Lets do it"
|
3416 |
msgstr "Faisons cela"
|
3417 |
|
3418 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3419 |
#, php-format
|
3420 |
msgid "Enable sale of this %s"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3424 |
msgid "Purchase expires after"
|
3425 |
msgstr "Les achats expirent après"
|
3426 |
|
3427 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3428 |
msgid "Thank you for your purchase!"
|
3429 |
msgstr "Merci pour votre achat"
|
3430 |
|
3431 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3432 |
-
#: content/myCRED-addon-sell-content.php:
|
3433 |
msgid "The following content is set for sale:"
|
3434 |
msgstr "Le contenu suivant est prévu à la vente:"
|
3435 |
|
3436 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3437 |
msgid "Purchased"
|
3438 |
msgstr "Acheté"
|
3439 |
|
@@ -3446,7 +3446,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3446 |
msgstr "Vous avez dépassé votre limite de transfert %limit%."
|
3447 |
|
3448 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3449 |
-
#: php:
|
3450 |
msgid "Transfer"
|
3451 |
msgstr "Transférer"
|
3452 |
|
@@ -3485,7 +3485,7 @@ msgstr ""
|
|
3485 |
"autorisé avant qu'il ne soit activé."
|
3486 |
|
3487 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3488 |
-
#: php:
|
3489 |
msgid "Insufficient Funds. Please try a lower amount."
|
3490 |
msgstr ""
|
3491 |
|
@@ -3866,282 +3866,282 @@ msgstr "Résultats de la recherche"
|
|
3866 |
msgid "My Entire Log"
|
3867 |
msgstr "Mon journal complet"
|
3868 |
|
3869 |
-
#: ../includes/mycred-functions.php:
|
3870 |
msgid "ref empty"
|
3871 |
msgstr "ref est vide"
|
3872 |
|
3873 |
-
#: ../includes/mycred-functions.php:
|
3874 |
msgid "incorrect user id format"
|
3875 |
msgstr "format du ID utilisateur incorrect"
|
3876 |
|
3877 |
-
#: ../includes/mycred-functions.php:
|
3878 |
msgid "incorrect unix timestamp (from):"
|
3879 |
msgstr "Horodatage unix incorrect (from):"
|
3880 |
|
3881 |
-
#: ../includes/mycred-functions.php:
|
3882 |
msgid "incorrect unix timestamp (to):"
|
3883 |
msgstr "Horodatage unix incorrect (to):"
|
3884 |
|
3885 |
-
#: ../includes/mycred-functions.php:
|
3886 |
msgid "Website Registration"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: ../includes/mycred-functions.php:
|
3890 |
msgid "Website Visit"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: ../includes/mycred-functions.php:
|
3894 |
msgid "Viewing Content (Member)"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: ../includes/mycred-functions.php:
|
3898 |
msgid "Viewing Content (Author)"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: ../includes/mycred-functions.php:
|
3902 |
msgid "Logging in"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: ../includes/mycred-functions.php:
|
3906 |
msgid "Publishing Content"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: ../includes/mycred-functions.php:
|
3910 |
msgid "Approved Comment"
|
3911 |
msgstr "Commentaire approuvé"
|
3912 |
|
3913 |
-
#: ../includes/mycred-functions.php:
|
3914 |
msgid "Unapproved Comment"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: ../includes/mycred-functions.php:
|
3918 |
msgid "SPAM Comment"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: ../includes/mycred-functions.php:
|
3922 |
msgid "Deleted Comment"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: ../includes/mycred-functions.php:
|
3926 |
msgid "Link Click"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: ../includes/mycred-functions.php:
|
3930 |
msgid "Watching Video"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: ../includes/mycred-functions.php:
|
3934 |
msgid "Visitor Referral"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: ../includes/mycred-functions.php:
|
3938 |
msgid "Signup Referral"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: ../includes/mycred-functions.php:
|
3942 |
msgid "New Profile Update"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: ../includes/mycred-functions.php:
|
3946 |
msgid "Avatar Upload"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: ../includes/mycred-functions.php:
|
3950 |
msgid "New Friendship"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: ../includes/mycred-functions.php:
|
3954 |
msgid "Ended Friendship"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: ../includes/mycred-functions.php:
|
3958 |
msgid "New Profile Comment"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: ../includes/mycred-functions.php:
|
3962 |
msgid "Profile Comment Deletion"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: ../includes/mycred-functions.php:
|
3966 |
msgid "New Message"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: ../includes/mycred-functions.php:
|
3970 |
msgid "Sending Gift"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: ../includes/mycred-functions.php:
|
3974 |
msgid "New Group"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: ../includes/mycred-functions.php:
|
3978 |
msgid "Deleted Group"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: ../includes/mycred-functions.php:
|
3982 |
msgid "New Group Forum Topic"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: ../includes/mycred-functions.php:
|
3986 |
msgid "Edit Group Forum Topic"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: ../includes/mycred-functions.php:
|
3990 |
msgid "New Group Forum Post"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: ../includes/mycred-functions.php:
|
3994 |
msgid "Edit Group Forum Post"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: ../includes/mycred-functions.php:
|
3998 |
msgid "Joining Group"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: ../includes/mycred-functions.php:
|
4002 |
msgid "Leaving Group"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: ../includes/mycred-functions.php:
|
4006 |
msgid "New Group Avatar"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: ../includes/mycred-functions.php:
|
4010 |
msgid "New Group Comment"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: ../includes/mycred-functions.php:
|
4014 |
#: php:166
|
4015 |
msgid "Photo Upload"
|
4016 |
msgstr "Télécharger la photo"
|
4017 |
|
4018 |
-
#: ../includes/mycred-functions.php:
|
4019 |
#: php:176
|
4020 |
msgid "Video Upload"
|
4021 |
msgstr "Télécharger la vidéo"
|
4022 |
|
4023 |
-
#: ../includes/mycred-functions.php:
|
4024 |
#: php:186
|
4025 |
msgid "Music Upload"
|
4026 |
msgstr "Télécharger la musique"
|
4027 |
|
4028 |
-
#: ../includes/mycred-functions.php:
|
4029 |
msgid "New Link"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: ../includes/mycred-functions.php:
|
4033 |
msgid "Link Voting"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: ../includes/mycred-functions.php:
|
4037 |
msgid "Link Update"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: ../includes/mycred-functions.php:
|
4041 |
msgid "New Forum (bbPress)"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: ../includes/mycred-functions.php:
|
4045 |
msgid "New Forum Topic (bbPress)"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: ../includes/mycred-functions.php:
|
4049 |
msgid "Favorited Topic (bbPress)"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: ../includes/mycred-functions.php:
|
4053 |
msgid "New Topic Reply (bbPress)"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: ../includes/mycred-functions.php:
|
4057 |
msgid "Form Submission (Contact Form 7)"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: ../includes/mycred-functions.php:
|
4061 |
msgid "Form Submission (Gravity Form)"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: ../includes/mycred-functions.php:
|
4065 |
msgid "New Forum Topic (SimplePress)"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: ../includes/mycred-functions.php:
|
4069 |
msgid "New Forum Post (SimplePress)"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: ../includes/mycred-functions.php:
|
4073 |
msgid "Poll Voting"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: ../includes/mycred-functions.php:
|
4077 |
msgid "Sending an Invite"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: ../includes/mycred-functions.php:
|
4081 |
msgid "Accepting an Invite"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: ../includes/mycred-functions.php:
|
4085 |
msgid "Banking Payout"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: ../includes/mycred-functions.php:
|
4089 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: ../includes/mycred-functions.php:
|
4093 |
msgid "buyCRED Purchase (Skrill)"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: ../includes/mycred-functions.php:
|
4097 |
msgid "buyCRED Purchase (Zombaio)"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: ../includes/mycred-functions.php:
|
4101 |
msgid "buyCRED Purchase (NETBilling)"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: ../includes/mycred-functions.php:
|
4105 |
msgid "buyCRED Purchase (BitPay)"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: ../includes/mycred-functions.php:
|
4109 |
msgid "Coupon Purchase"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: ../includes/mycred-functions.php:
|
4113 |
msgid "Store Purchase (WooCommerce)"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: ../includes/mycred-functions.php:
|
4117 |
msgid "Store Purchase (MarketPress)"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: ../includes/mycred-functions.php:
|
4121 |
msgid "Store Purchase (WP E-Commerce)"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: ../includes/mycred-functions.php:
|
4125 |
msgid "Event Payment (Event Espresso)"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: ../includes/mycred-functions.php:
|
4129 |
msgid "Event Sale (Event Espresso)"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: ../includes/mycred-functions.php:
|
4133 |
msgid "Event Payment (Events Manager)"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: ../includes/mycred-functions.php:
|
4137 |
msgid "Event Sale (Events Manager)"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: ../includes/mycred-functions.php:
|
4141 |
msgid "Content Purchase / Sale"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: ../includes/mycred-functions.php:
|
4145 |
msgid "Manual Adjustment by Admin"
|
4146 |
msgstr ""
|
4147 |
|
@@ -4189,14 +4189,14 @@ msgstr "myCRED nécessite PHP 5.2.4 ou supérieure. Version détectée:"
|
|
4189 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4190 |
msgstr "myCRED requiert SQL 5.0 ou supérieur. Version trouvée: "
|
4191 |
|
4192 |
-
#: ../includes/mycred-install.php:
|
4193 |
msgid ""
|
4194 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4195 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4196 |
"for you!"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: ../includes/mycred-install.php:
|
4200 |
msgid ""
|
4201 |
"Sorry but your WordPress installation does not reach the minimum "
|
4202 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4205,28 +4205,28 @@ msgstr ""
|
|
4205 |
"nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
|
4206 |
"apparues:"
|
4207 |
|
4208 |
-
#: ../includes/mycred-install.php:
|
4209 |
msgid "myCRED needs your attention."
|
4210 |
msgstr "myCRED requiert votre attention."
|
4211 |
|
4212 |
-
#: ../includes/mycred-install.php:
|
4213 |
msgid "Run Setup"
|
4214 |
msgstr "Démarrer l'installation"
|
4215 |
|
4216 |
-
#: ../includes/mycred-install.php:
|
4217 |
msgid "myCRED Setup"
|
4218 |
msgstr "Installation de myCRED"
|
4219 |
|
4220 |
-
#: ../includes/mycred-install.php:
|
4221 |
#, php-format
|
4222 |
msgid "%s Setup"
|
4223 |
msgstr "Configuration %s"
|
4224 |
|
4225 |
-
#: ../includes/mycred-install.php:
|
4226 |
msgid "Step"
|
4227 |
msgstr "Etape"
|
4228 |
|
4229 |
-
#: ../includes/mycred-install.php:
|
4230 |
msgid ""
|
4231 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4232 |
"points format, layout and security settings."
|
@@ -4235,75 +4235,75 @@ msgstr ""
|
|
4235 |
"alors en mesure de choisir le format de points, l'apparence et les "
|
4236 |
"paramètres de sécurité."
|
4237 |
|
4238 |
-
#: ../includes/mycred-install.php:
|
4239 |
msgid "Begin Setup"
|
4240 |
msgstr "Démarrer le paramétrage"
|
4241 |
|
4242 |
-
#: ../includes/mycred-install.php:
|
4243 |
msgid "Select the format you want to use for your points."
|
4244 |
msgstr "Choisissez le format que vous voulez utiliser pour vos points"
|
4245 |
|
4246 |
-
#: ../includes/mycred-install.php:
|
4247 |
msgid "Format"
|
4248 |
msgstr "Formatage"
|
4249 |
|
4250 |
-
#: ../includes/mycred-install.php:
|
4251 |
msgid "Separators"
|
4252 |
msgstr "Séparateurs"
|
4253 |
|
4254 |
-
#: ../includes/mycred-install.php:
|
4255 |
msgid "Decimals"
|
4256 |
msgstr "Décimales"
|
4257 |
|
4258 |
-
#: ../includes/mycred-install.php:
|
4259 |
msgid "Use zero for no decimals."
|
4260 |
msgstr "Utilisez zéro si vous ne voulez pas de décimales."
|
4261 |
|
4262 |
-
#: ../includes/mycred-install.php:
|
4263 |
msgid "Presentation"
|
4264 |
msgstr "Présentation"
|
4265 |
|
4266 |
-
#: ../includes/mycred-install.php:
|
4267 |
msgid "Name (Singular)"
|
4268 |
msgstr "Nom (singulier)"
|
4269 |
|
4270 |
-
#: ../includes/mycred-install.php:
|
4271 |
msgid "Name (Plural)"
|
4272 |
msgstr "Nom (pluriel)"
|
4273 |
|
4274 |
-
#: ../includes/mycred-install.php:
|
4275 |
msgid "Prefix"
|
4276 |
msgstr "Préfixe"
|
4277 |
|
4278 |
-
#: ../includes/mycred-install.php:
|
4279 |
msgid "Suffix"
|
4280 |
msgstr "Suffixe"
|
4281 |
|
4282 |
-
#: ../includes/mycred-install.php:
|
4283 |
msgid "Cancel Setup"
|
4284 |
msgstr "Annuler le paramétrage"
|
4285 |
|
4286 |
-
#: ../includes/mycred-install.php:
|
4287 |
msgid "Next"
|
4288 |
msgstr "Suivant"
|
4289 |
|
4290 |
-
#: ../includes/mycred-install.php:
|
4291 |
msgid "Security"
|
4292 |
msgstr "Sécurité"
|
4293 |
|
4294 |
-
#: ../includes/mycred-install.php:
|
4295 |
msgid "Edit Settings Capability"
|
4296 |
msgstr "Modifier les paramètres"
|
4297 |
|
4298 |
-
#: ../includes/mycred-install.php:
|
4299 |
msgid "Edit Users %plural% Capability"
|
4300 |
msgstr "Modifier la capacité de %plural% des utilisateurs"
|
4301 |
|
4302 |
-
#: ../includes/mycred-install.php:
|
4303 |
msgid "Maximum %plural% payouts"
|
4304 |
msgstr "Maximum de %plural% à régler"
|
4305 |
|
4306 |
-
#: ../includes/mycred-install.php:
|
4307 |
msgid ""
|
4308 |
"As an added security, you can set the maximum amount a user can gain or "
|
4309 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4316,41 +4316,41 @@ msgstr ""
|
|
4316 |
"maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
|
4317 |
"désactiver l'option."
|
4318 |
|
4319 |
-
#: ../includes/mycred-install.php:
|
4320 |
msgid "Excludes"
|
4321 |
msgstr "Exclure"
|
4322 |
|
4323 |
-
#: ../includes/mycred-install.php:
|
4324 |
msgid "Exclude those who can \"Edit Settings\"."
|
4325 |
msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
|
4326 |
|
4327 |
-
#: ../includes/mycred-install.php:
|
4328 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4329 |
msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
|
4330 |
|
4331 |
-
#: ../includes/mycred-install.php:
|
4332 |
msgid "Exclude the following user IDs:"
|
4333 |
msgstr "Exclure les utilisateurs (ID) suivants"
|
4334 |
|
4335 |
-
#: ../includes/mycred-install.php:
|
4336 |
msgid "User Deletions"
|
4337 |
msgstr "Suppression de l'utilisateur"
|
4338 |
|
4339 |
-
#: ../includes/mycred-install.php:
|
4340 |
msgid "Delete log entries when user is deleted."
|
4341 |
msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
|
4342 |
|
4343 |
-
#: ../includes/mycred-install.php:
|
4344 |
msgid "Ready"
|
4345 |
msgstr "Prêt !"
|
4346 |
|
4347 |
-
#: ../includes/mycred-install.php:
|
4348 |
msgid "Almost done! Click the button below to finish this setup."
|
4349 |
msgstr ""
|
4350 |
"C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
|
4351 |
"configuration."
|
4352 |
|
4353 |
-
#: ../includes/mycred-install.php:
|
4354 |
msgid "Install & Run"
|
4355 |
msgstr "Installer et démarrer"
|
4356 |
|
@@ -4363,29 +4363,29 @@ msgstr "Affichage de %d %s"
|
|
4363 |
msgid "entry"
|
4364 |
msgstr "entrée"
|
4365 |
|
4366 |
-
#: ../includes/mycred-log.php:
|
4367 |
msgid "Go to the first page"
|
4368 |
msgstr "Aller à la première page"
|
4369 |
|
4370 |
-
#: ../includes/mycred-log.php:
|
4371 |
msgid "Go to the previous page"
|
4372 |
msgstr "Aller à la page précédente"
|
4373 |
|
4374 |
-
#: ../includes/mycred-log.php:
|
4375 |
msgid "Current page"
|
4376 |
msgstr "Page actuelle"
|
4377 |
|
4378 |
-
#: ../includes/mycred-log.php:
|
4379 |
#, php-format
|
4380 |
msgctxt "paging"
|
4381 |
msgid "%1$s of %2$s"
|
4382 |
msgstr "%1$s sur %2$s"
|
4383 |
|
4384 |
-
#: ../includes/mycred-log.php:
|
4385 |
msgid "Go to the next page"
|
4386 |
msgstr "Aller à la page suivante"
|
4387 |
|
4388 |
-
#: ../includes/mycred-log.php:
|
4389 |
msgid "Go to the last page"
|
4390 |
msgstr "Aller à la dernière page"
|
4391 |
|
@@ -4393,7 +4393,7 @@ msgstr "Aller à la dernière page"
|
|
4393 |
msgid "Show all references"
|
4394 |
msgstr "Afficher toutes les références"
|
4395 |
|
4396 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4397 |
msgid "User ID"
|
4398 |
msgstr "ID utilisateur"
|
4399 |
|
@@ -4628,92 +4628,92 @@ msgstr ""
|
|
4628 |
"empêcher des appels malicieux qui tenteraient de s'informer sur votre "
|
4629 |
"installation !"
|
4630 |
|
4631 |
-
#: ../includes/mycred-shortcodes.php:
|
4632 |
msgid "Leaderboard is empty."
|
4633 |
msgstr "Aucun classement à afficher."
|
4634 |
|
4635 |
-
#: ../includes/mycred-shortcodes.php:
|
4636 |
msgid "Amount missing!"
|
4637 |
msgstr "Montant absent !"
|
4638 |
|
4639 |
-
#: ../includes/mycred-shortcodes.php:
|
4640 |
msgid "Log Template Missing!"
|
4641 |
msgstr "Rapport absent !"
|
4642 |
|
4643 |
-
#: ../includes/mycred-shortcodes.php:
|
4644 |
msgid "Anchor missing URL!"
|
4645 |
msgstr "L'ancre de l'URL est absente !"
|
4646 |
|
4647 |
-
#: ../includes/mycred-shortcodes.php:
|
4648 |
msgid "User ID missing for recipient."
|
4649 |
msgstr "L'ID du destinataire est absente !"
|
4650 |
|
4651 |
-
#: ../includes/mycred-shortcodes.php:
|
4652 |
msgid "Sent"
|
4653 |
msgstr "Envoyer"
|
4654 |
|
4655 |
-
#: ../includes/mycred-shortcodes.php:
|
4656 |
msgid "Error - Try Again"
|
4657 |
msgstr "Erreur - essayez encore une fois"
|
4658 |
|
4659 |
-
#: ../includes/mycred-shortcodes.php:
|
4660 |
msgid "A video ID is required for this shortcode"
|
4661 |
msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
|
4662 |
|
4663 |
-
#: ../includes/mycred-shortcodes.php:
|
4664 |
msgid "Point types not found."
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: ../includes/mycred-shortcodes.php:
|
4668 |
-
#: includes/mycred-shortcodes.php:
|
4669 |
#, php-format
|
4670 |
msgid "You are excluded from using %s."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: ../includes/mycred-shortcodes.php:
|
4674 |
msgid "Your balance is too low to use this feature."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: ../includes/mycred-shortcodes.php:
|
4678 |
#, php-format
|
4679 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: ../includes/mycred-shortcodes.php:
|
4683 |
#, php-format
|
4684 |
msgid "Your current %s balance"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: ../includes/mycred-shortcodes.php:
|
4688 |
#, php-format
|
4689 |
msgid "Minimum %s"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: ../includes/mycred-shortcodes.php:
|
4693 |
#, php-format
|
4694 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: ../includes/mycred-shortcodes.php:
|
4698 |
msgid "Exchange"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: ../includes/mycred-shortcodes.php:
|
4702 |
#, php-format
|
4703 |
msgid "You must exchange at least %s!"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: ../includes/mycred-shortcodes.php:
|
4707 |
#, php-format
|
4708 |
msgid "Exchange from %s"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: ../includes/mycred-shortcodes.php:
|
4712 |
#, php-format
|
4713 |
msgid "Exchange to %s"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: ../includes/mycred-shortcodes.php:
|
4717 |
#, php-format
|
4718 |
msgid "You have successfully exchanged %s into %s."
|
4719 |
msgstr ""
|
@@ -4732,7 +4732,7 @@ msgstr "Mon solde (%s)"
|
|
4732 |
msgid "My Balance"
|
4733 |
msgstr "Mon relevé"
|
4734 |
|
4735 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4736 |
msgid "%plural% History"
|
4737 |
msgstr "Historique des %plural%"
|
4738 |
|
@@ -5166,68 +5166,68 @@ msgstr "Historique de %s"
|
|
5166 |
msgid "Current balance"
|
5167 |
msgstr "Solde courant"
|
5168 |
|
5169 |
-
#: ../modules/mycred-module-buddypress.php:
|
5170 |
msgid "Go"
|
5171 |
msgstr "Go"
|
5172 |
|
5173 |
-
#: ../modules/mycred-module-buddypress.php:
|
5174 |
msgid "Show in Profile"
|
5175 |
msgstr "Afficher sur le profil"
|
5176 |
|
5177 |
-
#: ../modules/mycred-module-buddypress.php:
|
5178 |
#, php-format
|
5179 |
msgid "%singular% Balance"
|
5180 |
msgstr "Solde de %singular%"
|
5181 |
|
5182 |
-
#: ../modules/mycred-module-buddypress.php:
|
5183 |
#, php-format
|
5184 |
msgid "Members and visitors can other members %_singular% balance."
|
5185 |
msgstr ""
|
5186 |
"Les membres et les visiteurs peuvent voir le solde de %_singular% des autres "
|
5187 |
"membres."
|
5188 |
|
5189 |
-
#: ../modules/mycred-module-buddypress.php:
|
5190 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5191 |
msgstr ""
|
5192 |
"Notez que vous pouvez aussi utiliser %rank_logo% pour afficher une image "
|
5193 |
"correspondant au classement."
|
5194 |
|
5195 |
-
#: ../modules/mycred-module-buddypress.php:
|
5196 |
msgid "Members can view each others %_plural% history."
|
5197 |
msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
|
5198 |
|
5199 |
-
#: ../modules/mycred-module-buddypress.php:
|
5200 |
msgid "Menu Title"
|
5201 |
msgstr "Titre du menu"
|
5202 |
|
5203 |
-
#: ../modules/mycred-module-buddypress.php:
|
5204 |
msgid "Title shown to me"
|
5205 |
msgstr "Le titre que moi je peux voir"
|
5206 |
|
5207 |
-
#: ../modules/mycred-module-buddypress.php:
|
5208 |
#, php-format
|
5209 |
msgid "Title shown to others. Use %s to show the first name."
|
5210 |
msgstr ""
|
5211 |
"Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
|
5212 |
"prénom."
|
5213 |
|
5214 |
-
#: ../modules/mycred-module-buddypress.php:
|
5215 |
msgid "Menu Position"
|
5216 |
msgstr "Position du menu"
|
5217 |
|
5218 |
-
#: ../modules/mycred-module-buddypress.php:
|
5219 |
msgid "Current menu positions:"
|
5220 |
msgstr "Positions actuelles du menu:"
|
5221 |
|
5222 |
-
#: ../modules/mycred-module-buddypress.php:
|
5223 |
msgid "History URL slug"
|
5224 |
msgstr "Chemin vers l'historique"
|
5225 |
|
5226 |
-
#: ../modules/mycred-module-buddypress.php:
|
5227 |
msgid "Do not use empty spaces!"
|
5228 |
msgstr "Sans espaces !"
|
5229 |
|
5230 |
-
#: ../modules/mycred-module-buddypress.php:
|
5231 |
msgid "Number of history entries to show"
|
5232 |
msgstr "Nombre d'historiques à afficher"
|
5233 |
|
@@ -5367,8 +5367,8 @@ msgstr ""
|
|
5367 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5368 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5369 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5370 |
-
#:
|
5371 |
-
#: php:
|
5372 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5373 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5374 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5429,8 +5429,8 @@ msgstr ""
|
|
5429 |
msgid "%plural% for viewing %s"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5433 |
-
#: ../modules/mycred-module-hooks.php:
|
5434 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5435 |
msgid "Limit"
|
5436 |
msgstr "Limite d'attribution"
|
@@ -5522,7 +5522,7 @@ msgstr ""
|
|
5522 |
msgid "Custom tags: %url%, %title% or %id%."
|
5523 |
msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
|
5524 |
|
5525 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5526 |
msgid "Note!"
|
5527 |
msgstr "Information !"
|
5528 |
|
@@ -5538,44 +5538,44 @@ msgstr ""
|
|
5538 |
"Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
|
5539 |
"recommandons fortement de limiter par ID."
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5542 |
msgid "Available Shortcode"
|
5543 |
msgstr "Shortcode disponible"
|
5544 |
|
5545 |
-
#: ../modules/mycred-module-hooks.php:
|
5546 |
msgid "Amount to award for viewing videos."
|
5547 |
msgstr "Montant à attribuer pour le visionnage d'une vidéo."
|
5548 |
|
5549 |
-
#: ../modules/mycred-module-hooks.php:
|
5550 |
msgid "Award Logic"
|
5551 |
msgstr "Attributs de classement"
|
5552 |
|
5553 |
-
#: ../modules/mycred-module-hooks.php:
|
5554 |
#, php-format
|
5555 |
msgid "Select when %_plural% should be awarded or deducted."
|
5556 |
msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-hooks.php:
|
5559 |
msgid "Play - As soon as video starts playing."
|
5560 |
msgstr "Play - aussitôt que la vidéo démarre"
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-hooks.php:
|
5563 |
msgid "Full - First when the entire video has played."
|
5564 |
msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-hooks.php:
|
5567 |
msgid "Interval - For each x number of seconds watched."
|
5568 |
msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
|
5569 |
|
5570 |
-
#: ../modules/mycred-module-hooks.php:
|
5571 |
msgid "Number of seconds"
|
5572 |
msgstr "Nombre de secondes"
|
5573 |
|
5574 |
-
#: ../modules/mycred-module-hooks.php:
|
5575 |
msgid "Leniency"
|
5576 |
msgstr "Tolérance"
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-hooks.php:
|
5579 |
msgid ""
|
5580 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5581 |
"length."
|
@@ -5583,7 +5583,7 @@ msgstr ""
|
|
5583 |
"Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
|
5584 |
"longueur actuelle d'une vidéo."
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-hooks.php:
|
5587 |
msgid ""
|
5588 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5589 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5593,77 +5593,85 @@ msgstr ""
|
|
5593 |
"produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
|
5594 |
"compteur pendant la mise en tampon ou produire des erreurs de différé."
|
5595 |
|
5596 |
-
#: ../modules/mycred-module-hooks.php:
|
5597 |
msgid "Affiliate Program"
|
5598 |
msgstr "Programme d'affiliation"
|
5599 |
|
5600 |
-
#: ../modules/mycred-module-hooks.php:
|
5601 |
msgid "Per Day"
|
5602 |
msgstr "Par jour"
|
5603 |
|
5604 |
-
#: ../modules/mycred-module-hooks.php:
|
5605 |
msgid "Link"
|
5606 |
msgstr "Lien"
|
5607 |
|
5608 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5609 |
msgid "Referring Visitors"
|
5610 |
msgstr "Visiteurs réferants"
|
5611 |
|
5612 |
-
#: ../modules/mycred-module-hooks.php:
|
5613 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5614 |
msgstr ""
|
5615 |
"Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
|
5616 |
"illimité."
|
5617 |
|
5618 |
-
#: ../modules/mycred-module-hooks.php:
|
5619 |
msgid "Referring Signups"
|
5620 |
msgstr "Inscriptions référentes"
|
5621 |
|
5622 |
-
#: ../modules/mycred-module-hooks.php:
|
5623 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5624 |
msgstr ""
|
5625 |
"Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
|
5626 |
"%_plural%."
|
5627 |
|
5628 |
-
#: ../modules/mycred-module-hooks.php:
|
5629 |
msgid "Registrations are disabled."
|
5630 |
msgstr "Les inscriptions sont désactivées."
|
5631 |
|
5632 |
-
#: ../modules/mycred-module-hooks.php:
|
5633 |
msgid "Referral Links"
|
5634 |
msgstr "Liens référents"
|
5635 |
|
5636 |
-
#: ../modules/mycred-module-hooks.php:
|
5637 |
msgid "Assign numeric referral IDs to each user."
|
5638 |
msgstr "Assigner un ID de référence numérique à chaque utilisateur."
|
5639 |
|
5640 |
-
#: ../modules/mycred-module-hooks.php:
|
5641 |
msgid "Example"
|
5642 |
msgstr "Exemple"
|
5643 |
|
5644 |
-
#: ../modules/mycred-module-hooks.php:
|
5645 |
msgid "Assign usernames as IDs for each user."
|
5646 |
msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
|
5647 |
|
5648 |
-
#: ../modules/mycred-module-hooks.php:
|
5649 |
msgid "IP Limit"
|
5650 |
msgstr "Limite IP"
|
5651 |
|
5652 |
-
#: ../modules/mycred-module-hooks.php:
|
5653 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5654 |
msgstr ""
|
5655 |
"Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
|
5656 |
"Indiquez 0 pour un nombre illimité."
|
5657 |
|
5658 |
-
#: ../modules/mycred-module-hooks.php:
|
5659 |
msgid "BuddyPress Profile"
|
5660 |
msgstr "Profil BuddyPress"
|
5661 |
|
5662 |
-
#: ../modules/mycred-module-hooks.php:
|
5663 |
msgid "Insert Link in users Profile"
|
5664 |
msgstr "Insérer un lien sur le Profil des utilisateurs"
|
5665 |
|
5666 |
-
#: ../modules/mycred-module-hooks.php:
|
5667 |
msgid ""
|
5668 |
"Option to inser the referral link in users profiles. Links will only be "
|
5669 |
"visible to users viewing their own profiles or administrators."
|
@@ -5672,23 +5680,23 @@ msgstr ""
|
|
5672 |
"visible que par l'utilisateur sur son propre profil et pour les "
|
5673 |
"administrateurs du site."
|
5674 |
|
5675 |
-
#: ../modules/mycred-module-hooks.php:
|
5676 |
msgid "Leave empty to hide."
|
5677 |
msgstr "Laissez vide pour masquer"
|
5678 |
|
5679 |
-
#: ../modules/mycred-module-hooks.php:
|
5680 |
msgid "Description"
|
5681 |
msgstr "Description"
|
5682 |
|
5683 |
-
#: ../modules/mycred-module-hooks.php:
|
5684 |
msgid "Optional description to insert under the link."
|
5685 |
msgstr "Description facultative qui apparaîtra sous le lien"
|
5686 |
|
5687 |
-
#: ../modules/mycred-module-hooks.php:
|
5688 |
msgid "Profile Positioning"
|
5689 |
msgstr "Position sur le Profil"
|
5690 |
|
5691 |
-
#: ../modules/mycred-module-hooks.php:
|
5692 |
msgid ""
|
5693 |
"You can move around the referral link on your users profile by changing the "
|
5694 |
"position. Increase to move up, decrease to move down."
|
@@ -5696,18 +5704,18 @@ msgstr ""
|
|
5696 |
"Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
|
5697 |
"position vers le haut ou le bas."
|
5698 |
|
5699 |
-
#: ../modules/mycred-module-hooks.php:
|
5700 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5701 |
msgstr ""
|
5702 |
"Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
|
5703 |
"profil \"Base\" "
|
5704 |
|
5705 |
-
#: ../modules/mycred-module-hooks.php:
|
5706 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5707 |
msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
|
5708 |
|
5709 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5710 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5711 |
msgid "Access denied for this action"
|
5712 |
msgstr "Accés refusé pour cette action"
|
5713 |
|
@@ -5723,12 +5731,12 @@ msgstr "Entrée introuvable"
|
|
5723 |
msgid "Entry Updated"
|
5724 |
msgstr "Entrée mise à jour"
|
5725 |
|
5726 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5727 |
msgid "Entries"
|
5728 |
msgstr "Entrées"
|
5729 |
|
5730 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5731 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5732 |
msgid "Export"
|
5733 |
msgstr "Exporter"
|
5734 |
|
@@ -5775,49 +5783,49 @@ msgid "My %s History"
|
|
5775 |
msgstr "Mon historique %s"
|
5776 |
|
5777 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5778 |
-
#:
|
5779 |
msgid "Missing point type"
|
5780 |
msgstr "Type de point manquant"
|
5781 |
|
5782 |
-
#: ../modules/mycred-module-settings.php:
|
5783 |
msgid "Accounts successfully reset"
|
5784 |
msgstr "Remise à zéro du compte réussie"
|
5785 |
|
5786 |
-
#: ../modules/mycred-module-settings.php:
|
5787 |
msgid "No users found to export"
|
5788 |
msgstr "Aucun utilisateur à exporter"
|
5789 |
|
5790 |
-
#: ../modules/mycred-module-settings.php:
|
5791 |
#, php-format
|
5792 |
msgid "%s Settings"
|
5793 |
msgstr "Configuration de %s"
|
5794 |
|
5795 |
-
#: ../modules/mycred-module-settings.php:
|
5796 |
msgid "Adjust your core or add-on settings."
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: ../modules/mycred-module-settings.php:
|
5800 |
msgid "Core Settings"
|
5801 |
msgstr "Configuration du Core"
|
5802 |
|
5803 |
-
#: ../modules/mycred-module-settings.php:
|
5804 |
msgid "Name"
|
5805 |
msgstr "Nom"
|
5806 |
|
5807 |
-
#: ../modules/mycred-module-settings.php:
|
5808 |
#, php-format
|
5809 |
msgid "Accessible though the %singular% template tag."
|
5810 |
msgstr "Accessible avec le mot-clés %singular%"
|
5811 |
|
5812 |
-
#: ../modules/mycred-module-settings.php:
|
5813 |
msgid "Accessible though the %plural% template tag."
|
5814 |
msgstr "Accessible avec le mot-clé %plural%"
|
5815 |
|
5816 |
-
#: ../modules/mycred-module-settings.php:
|
5817 |
msgid "Tip"
|
5818 |
msgstr "Astuce"
|
5819 |
|
5820 |
-
#: ../modules/mycred-module-settings.php:
|
5821 |
msgid ""
|
5822 |
"Adding an underscore at the beginning of template tag for names will return "
|
5823 |
"them in lowercase. i.e. %_singular%"
|
@@ -5825,97 +5833,97 @@ msgstr ""
|
|
5825 |
"En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné "
|
5826 |
"en minuscule. Par ex. %_singular%"
|
5827 |
|
5828 |
-
#: ../modules/mycred-module-settings.php:
|
5829 |
msgid "Separator"
|
5830 |
msgstr "Séparateur"
|
5831 |
|
5832 |
-
#: ../modules/mycred-module-settings.php:
|
5833 |
msgid "Edit Settings"
|
5834 |
msgstr "Modifier les réglages"
|
5835 |
|
5836 |
-
#: ../modules/mycred-module-settings.php:
|
5837 |
-
#: php:
|
5838 |
msgid "Capability to check for."
|
5839 |
msgstr "Capacité à observer."
|
5840 |
|
5841 |
-
#: ../modules/mycred-module-settings.php:
|
5842 |
msgid "Edit Users %plural%"
|
5843 |
msgstr "Modifier les %plural% de l'utilisateur"
|
5844 |
|
5845 |
-
#: ../modules/mycred-module-settings.php:
|
5846 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5847 |
msgstr ""
|
5848 |
"Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
|
5849 |
"espaces interdits."
|
5850 |
|
5851 |
-
#: ../modules/mycred-module-settings.php:
|
5852 |
msgid "Management"
|
5853 |
msgstr "Gestion des données"
|
5854 |
|
5855 |
-
#: ../modules/mycred-module-settings.php:
|
5856 |
msgid "The Log"
|
5857 |
msgstr "Rapport d'activités"
|
5858 |
|
5859 |
-
#: ../modules/mycred-module-settings.php:
|
5860 |
msgid "Table Name"
|
5861 |
msgstr "Nom de la table"
|
5862 |
|
5863 |
-
#: ../modules/mycred-module-settings.php:
|
5864 |
msgid "Empty Log"
|
5865 |
msgstr "Journal vide"
|
5866 |
|
5867 |
-
#: ../modules/mycred-module-settings.php:
|
5868 |
msgid "User Meta Key"
|
5869 |
msgstr "Mot clé utilisateur"
|
5870 |
|
5871 |
-
#: ../modules/mycred-module-settings.php:
|
5872 |
msgid "Set all to zero"
|
5873 |
msgstr "Tout remettre à zéro"
|
5874 |
|
5875 |
-
#: ../modules/mycred-module-settings.php:
|
5876 |
msgid "CSV Export"
|
5877 |
msgstr "Exportation CSV"
|
5878 |
|
5879 |
-
#: ../modules/mycred-module-settings.php:
|
5880 |
msgid "Default"
|
5881 |
msgstr "Défaut"
|
5882 |
|
5883 |
-
#: ../modules/mycred-module-settings.php:
|
5884 |
-
#: php:
|
5885 |
msgid "Meta Key"
|
5886 |
msgstr "Mot-clé"
|
5887 |
|
5888 |
-
#: ../modules/mycred-module-settings.php:
|
5889 |
msgid "Add New Type"
|
5890 |
msgstr "Ajouter un nouveau type"
|
5891 |
|
5892 |
-
#: ../modules/mycred-module-settings.php:
|
5893 |
msgid "A unique ID for this type."
|
5894 |
msgstr "Un identifiant unique pour ce type."
|
5895 |
|
5896 |
-
#: ../modules/mycred-module-settings.php:
|
5897 |
msgid "Menu and page title."
|
5898 |
msgstr "Titre de menu et de page"
|
5899 |
|
5900 |
-
#: ../modules/mycred-module-settings.php:
|
5901 |
msgid "The meta key will define where your users balances are saved."
|
5902 |
msgstr ""
|
5903 |
"Le mot clé définit l'endroit où est enregistré le solde de compte de "
|
5904 |
"l'utilisateur"
|
5905 |
|
5906 |
-
#: ../modules/mycred-module-settings.php:
|
5907 |
msgid "Identify users by"
|
5908 |
msgstr "Identifer les utilisateurs par"
|
5909 |
|
5910 |
-
#: ../modules/mycred-module-settings.php:
|
5911 |
msgid "User Email"
|
5912 |
msgstr "Email de l'utilisateur"
|
5913 |
|
5914 |
-
#: ../modules/mycred-module-settings.php:
|
5915 |
msgid "User Login"
|
5916 |
msgstr "ID de l'utilisateur"
|
5917 |
|
5918 |
-
#: ../modules/mycred-module-settings.php:
|
5919 |
msgid ""
|
5920 |
"Use ID if you intend to use this export as a backup of your current site "
|
5921 |
"while Email is recommended if you want to export to a different site."
|
@@ -5924,11 +5932,11 @@ msgstr ""
|
|
5924 |
"sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
|
5925 |
"si vous comptez exploiter les données sur un autre site."
|
5926 |
|
5927 |
-
#: ../modules/mycred-module-settings.php:
|
5928 |
msgid "Import Log Entry"
|
5929 |
msgstr "Import du journal d'entrées"
|
5930 |
|
5931 |
-
#: ../modules/mycred-module-settings.php:
|
5932 |
#, php-format
|
5933 |
msgid ""
|
5934 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5937,11 +5945,11 @@ msgstr ""
|
|
5937 |
"Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
|
5938 |
"installation %s différente."
|
5939 |
|
5940 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5941 |
msgid "BadgeOS"
|
5942 |
msgstr "BadgeOS"
|
5943 |
|
5944 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5945 |
msgid ""
|
5946 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5947 |
"overridden for individual achievement type."
|
@@ -5949,7 +5957,7 @@ msgstr ""
|
|
5949 |
"Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
|
5950 |
"paramètres peuvent être remplacés individuellement à partir de chaque type."
|
5951 |
|
5952 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5953 |
#, php-format
|
5954 |
msgid ""
|
5955 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5958,28 +5966,28 @@ msgstr ""
|
|
5958 |
"Veuillez paramétrer votre <a href=\"%s\">configuration par dé"
|
5959 |
"faut</a> avant d'utiliser ce service."
|
5960 |
|
5961 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5962 |
msgid "%plural% to Award"
|
5963 |
msgstr "Attribution de %_plural%"
|
5964 |
|
5965 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5966 |
msgid "Use zero to disable"
|
5967 |
msgstr "Utilisez zéro pour désactiver"
|
5968 |
|
5969 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5970 |
msgid "Deduction Log Template"
|
5971 |
msgstr "Texte pour le retrait de points"
|
5972 |
|
5973 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5974 |
#, php-format
|
5975 |
msgid "Default %s for %s"
|
5976 |
msgstr "%s pour %s par défaut"
|
5977 |
|
5978 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5979 |
msgid "Use zero to disable users gaining %_plural%"
|
5980 |
msgstr "Utilisez zéro pour désactiver les utilisateurs obtenant des %_plural%"
|
5981 |
|
5982 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5983 |
msgid "Default Log template"
|
5984 |
msgstr "Vue d'ensemble par défaut"
|
5985 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:54:19 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: French\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
21 |
"X-Loco-Target-Locale: fr_FR\n"
|
22 |
"X-Generator: Loco - https://localise.biz/"
|
23 |
|
24 |
+
#: ../mycred.php:425
|
25 |
msgid "Balance"
|
26 |
msgstr "Solde"
|
27 |
|
28 |
+
#: ../mycred.php:450
|
29 |
msgid "%label% History"
|
30 |
msgstr "Historique %label%"
|
31 |
|
32 |
+
#: ../mycred.php:543
|
33 |
#, php-format
|
34 |
msgid "About %s"
|
35 |
msgstr "À propos de %s"
|
36 |
|
37 |
+
#: ../mycred.php:552
|
38 |
msgid "Awesome People"
|
39 |
msgstr "On les remercie"
|
40 |
|
41 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
42 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
43 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
44 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
45 |
+
#: includes/mycred-shortcodes.php:631
|
46 |
msgid "Processing..."
|
47 |
msgstr "Chargement en cours..."
|
48 |
|
49 |
+
#: ../mycred.php:638
|
50 |
msgid ""
|
51 |
"Warning! All entries in your log will be permanently removed! This can not "
|
52 |
"be undone!"
|
54 |
"Attention ! Toutes les entrées seront définitivement supprimées. Cette "
|
55 |
"action ne pourra pas être annulée."
|
56 |
|
57 |
+
#: ../mycred.php:639
|
58 |
msgid ""
|
59 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
60 |
"can not be undone!"
|
62 |
"Toutes les entrées appartenant aux utilisateurs supprimés seront "
|
63 |
"définitivement détruites. Cette action ne pourra pas être annulée."
|
64 |
|
65 |
+
#: ../mycred.php:640
|
66 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
67 |
msgstr ""
|
68 |
"Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
|
69 |
"action ne pourra pas être annulée."
|
70 |
|
71 |
+
#: ../mycred.php:641
|
72 |
msgid "Done!"
|
73 |
msgstr "Terminé !"
|
74 |
|
75 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
76 |
msgid "Close"
|
77 |
msgstr "fermer"
|
78 |
|
79 |
+
#: ../mycred.php:643
|
80 |
msgid "Export users %plural%"
|
81 |
msgstr "Exportation des %plural% des utilisateurs"
|
82 |
|
83 |
+
#: ../mycred.php:659
|
84 |
msgid "Edit Users Balance"
|
85 |
msgstr "Modifier le solde des utilisateurs"
|
86 |
|
87 |
+
#: ../mycred.php:677
|
88 |
msgid "Edit Log Entry"
|
89 |
msgstr "Modifier une entrée du journal"
|
90 |
|
91 |
+
#: ../mycred.php:681
|
92 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
93 |
msgstr ""
|
94 |
"Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
|
95 |
"être annulée."
|
96 |
|
97 |
+
#: ../mycred.php:682
|
98 |
msgid "Log entry updated"
|
99 |
msgstr "L'entrée du journal a été mise à jour"
|
100 |
|
101 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
102 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
103 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
104 |
msgid "Setup"
|
105 |
msgstr "Configuration"
|
106 |
|
107 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
108 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
109 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
110 |
msgid "Settings"
|
111 |
msgstr "Configuration"
|
112 |
|
113 |
+
#: ../mycred.php:776
|
114 |
msgid ""
|
115 |
"Make sure to backup your database and files before updating, in case "
|
116 |
"anything goes wrong!"
|
152 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
153 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
154 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
155 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
156 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
157 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
158 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
159 |
msgid "Select"
|
160 |
msgstr "sélectionnez"
|
161 |
|
255 |
msgstr ""
|
256 |
|
257 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
258 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
259 |
msgid "Users"
|
260 |
msgstr "Utilisateurs"
|
261 |
|
338 |
|
339 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
340 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
341 |
+
#: modules/mycred-module-buddypress.php:395
|
342 |
msgid "Do not show"
|
343 |
msgstr "Ne pas afficher"
|
344 |
|
345 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
346 |
+
#: buddypress.php:396
|
347 |
msgid "Include in Profile Header"
|
348 |
msgstr ""
|
349 |
|
350 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
351 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
352 |
msgid "Include under the \"Profile\" tab"
|
353 |
msgstr "Inclure sous l'onglet \"Profil\""
|
354 |
|
355 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
356 |
+
#: buddypress.php:398
|
357 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
358 |
msgstr ""
|
359 |
|
422 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
423 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
424 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
425 |
+
#: modules/mycred-module-settings.php:313
|
426 |
msgid "Access Denied"
|
427 |
msgstr "Accès refusé"
|
428 |
|
573 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
574 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
575 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
576 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
577 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
578 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
579 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
580 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
671 |
|
672 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
673 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
674 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
675 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
676 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
677 |
+
#: includes/mycred-shortcodes.php:939
|
678 |
msgid "Amount"
|
679 |
msgstr "Montant"
|
680 |
|
681 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
682 |
+
#: modules/mycred-module-hooks.php:2112
|
683 |
msgid "Interval"
|
684 |
msgstr "Intervalle"
|
685 |
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
734 |
+
#: addon-buy-creds.php:1635
|
735 |
msgid "No pending payments found"
|
736 |
msgstr ""
|
737 |
|
740 |
msgstr ""
|
741 |
|
742 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
743 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
744 |
msgid "Transaction ID"
|
745 |
msgstr "ID de la transaction"
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
748 |
+
#: addon-buy-creds.php:985
|
749 |
msgid "Buyer"
|
750 |
msgstr ""
|
751 |
|
752 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
753 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
754 |
#: gateway.php:563
|
755 |
msgid "Cost"
|
756 |
msgstr "Prix"
|
757 |
|
758 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
759 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
760 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
761 |
msgid "Gateway"
|
762 |
msgstr "Service"
|
805 |
|
806 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
807 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
808 |
+
#: module-settings.php:470
|
809 |
msgid "Point Types"
|
810 |
msgstr "Types de Points"
|
811 |
|
858 |
msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
|
859 |
|
860 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
861 |
+
#: hooks.php:2792
|
862 |
msgid "Available Shortcodes"
|
863 |
msgstr "Shortcodes disponibles"
|
864 |
|
885 |
msgstr "%s Services de Paiements"
|
886 |
|
887 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
888 |
+
#: addon-buy-creds.php:993
|
889 |
msgid "buyCRED Settings"
|
890 |
msgstr "Configuration buyCRED"
|
891 |
|
910 |
msgstr "Activez pour faire des tests d'achats factices."
|
911 |
|
912 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
913 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
914 |
msgid "Update Settings"
|
915 |
msgstr "Enregistrer la configuration"
|
916 |
|
918 |
msgid "More Gateways"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
922 |
#: 634
|
923 |
msgid "Date"
|
924 |
msgstr "Daté"
|
925 |
|
926 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
927 |
msgid "Payed"
|
928 |
msgstr "Payé"
|
929 |
|
930 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
931 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
932 |
msgstr "Relevé des achats <strong>buy</strong>CRED"
|
933 |
|
934 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
935 |
#: booking/mycred-eventespresso3.php:367
|
936 |
msgid "Gateway Settings"
|
937 |
msgstr "Configuration du service de paiement"
|
938 |
|
939 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
940 |
+
#: content/myCRED-addon-sell-content.php:1191
|
941 |
msgid "No purchases found"
|
942 |
msgstr "Aucun achat trouvé"
|
943 |
|
944 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
945 |
+
#: addon-buy-creds.php:1355
|
946 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
947 |
msgstr ""
|
948 |
"Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
|
949 |
"shortcode."
|
950 |
|
951 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
952 |
+
#: addon-buy-creds.php:1374
|
953 |
msgid "No gateways installed."
|
954 |
msgstr "Aucun systme de paiement n'est installé."
|
955 |
|
956 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
957 |
+
#: addon-buy-creds.php:1375
|
958 |
msgid "Gateway does not exist."
|
959 |
msgstr "Le service de paiement n'existe pas."
|
960 |
|
961 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
962 |
msgid "Yourself"
|
963 |
msgstr "Vous-même"
|
964 |
|
965 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
966 |
msgid "No active gateways found."
|
967 |
msgstr "Aucun service de paiement n'a été trouvé."
|
968 |
|
969 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
970 |
msgid "The selected gateway is not active."
|
971 |
msgstr "Ce service de paiement n'est pas activé"
|
972 |
|
973 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
974 |
#, php-format
|
975 |
msgid "Buy with %gateway%"
|
976 |
msgstr "Régler avec %gateway%"
|
977 |
|
978 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
979 |
#: content/myCRED-addon-sell-content.php:44
|
980 |
msgid "Buy Now"
|
981 |
msgstr "Acheter maintenant"
|
982 |
|
983 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
984 |
msgid "No users found"
|
985 |
msgstr "Aucun membre n'a été trouvé"
|
986 |
|
987 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
988 |
msgid "To"
|
989 |
msgstr "à"
|
990 |
|
991 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
992 |
msgid "Select Amount"
|
993 |
msgstr "Sélectionnez le montant"
|
994 |
|
995 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
996 |
msgid "min."
|
997 |
msgstr "mini."
|
998 |
|
999 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
1000 |
msgid "Select Gateway"
|
1001 |
msgstr "Sélectionnez le service de paiement"
|
1002 |
|
1003 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1004 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1005 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1006 |
#: php:35
|
1007 |
msgid "Pay Now"
|
1008 |
msgstr "Payer maintenant"
|
1009 |
|
1010 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1011 |
+
#: php:516
|
1012 |
msgid "Cancel"
|
1013 |
msgstr "Annuler"
|
1014 |
|
1015 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1016 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1017 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1018 |
msgid "Actions"
|
1019 |
msgstr "Actions"
|
1020 |
|
1159 |
msgid "The following information will be sent to the gateway"
|
1160 |
msgstr "Les informations suivantes seront envoyées au Service"
|
1161 |
|
1162 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1163 |
msgid "Outside US"
|
1164 |
msgstr "Hors Etats-Unis"
|
1165 |
|
1166 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1167 |
msgid "January"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1171 |
msgid "February"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1175 |
msgid "March"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1179 |
msgid "April"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1183 |
msgid "May"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1187 |
msgid "June"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1191 |
msgid "July"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1195 |
msgid "August"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1199 |
msgid "September"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1203 |
msgid "October"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1207 |
msgid "November"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1211 |
msgid "December"
|
1212 |
msgstr ""
|
1213 |
|
1463 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1464 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1465 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1466 |
+
#: modules/mycred-module-hooks.php:2757
|
1467 |
msgid "Title"
|
1468 |
msgstr "Titre"
|
1469 |
|
1668 |
msgstr "pas encore utilisé"
|
1669 |
|
1670 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1671 |
+
#: php:2202
|
1672 |
msgid "Total"
|
1673 |
msgstr "Total"
|
1674 |
|
1850 |
msgstr "Appliquer le bon"
|
1851 |
|
1852 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1853 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1854 |
msgid "Email Notice"
|
1855 |
msgstr "Message à envoyer"
|
1856 |
|
2043 |
"lors de la modification d'un mail."
|
2044 |
|
2045 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2046 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2047 |
msgid "Email Settings"
|
2048 |
msgstr "Configuration des mails"
|
2049 |
|
2050 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2051 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2052 |
msgid "Senders Name:"
|
2053 |
msgstr "Expéditeur:"
|
2054 |
|
2055 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2056 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2057 |
msgid "Senders Email:"
|
2058 |
msgstr "Email de l'expéditeur"
|
2059 |
|
2077 |
msgid "Ignored if HTML is not allowed in emails."
|
2078 |
msgstr "Sera ignoré si HTML désactivé pour les mails"
|
2079 |
|
2080 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2081 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2082 |
msgid "Email Subject"
|
2083 |
msgstr "Sujet du mail"
|
2084 |
|
2085 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2086 |
msgid "Status"
|
2087 |
msgstr "Statut"
|
2088 |
|
2089 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2090 |
msgid "Not Active"
|
2091 |
msgstr "Inactif"
|
2092 |
|
2093 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2094 |
#, php-format
|
2095 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2096 |
msgstr "Prévu pour le:<br /><strong>%1$s</strong>"
|
2097 |
|
2098 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2099 |
msgid "Active"
|
2100 |
msgstr "Actif"
|
2101 |
|
2102 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2103 |
#, php-format
|
2104 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2105 |
msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
|
2106 |
|
2107 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2108 |
msgid "Email is sent when"
|
2109 |
msgstr "Le mail sera envoyé quand"
|
2110 |
|
2111 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2112 |
msgid "Missing instance for this notice!"
|
2113 |
msgstr "Ce message n'est pas instancié !"
|
2114 |
|
2115 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2116 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2117 |
+
#: addon-email-notices.php:775
|
2118 |
msgid "Sent To"
|
2119 |
msgstr "Envoyer à"
|
2120 |
|
2121 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2122 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2123 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2124 |
msgid "User"
|
2125 |
msgstr "Utilisateur"
|
2126 |
|
2127 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2128 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2129 |
msgid "Administrator"
|
2130 |
msgstr "Administrateur"
|
2131 |
|
2132 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2133 |
msgid "Both Administrator and User"
|
2134 |
msgstr "A l'administrateur et à l'utilisateur"
|
2135 |
|
2136 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2137 |
msgid "Available Template Tags"
|
2138 |
msgstr "Mots-clés utilisables ici"
|
2139 |
|
2140 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2141 |
msgid "Email Header"
|
2142 |
msgstr "En-tête du mail"
|
2143 |
|
2144 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2145 |
msgid "Send this email notice when..."
|
2146 |
msgstr "Envoyer ce mail quand...."
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2149 |
msgid "Recipient:"
|
2150 |
msgstr "Destinataire:"
|
2151 |
|
2152 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2153 |
msgid "Both"
|
2154 |
msgstr "Les deux"
|
2155 |
|
2156 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2157 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2158 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2159 |
+
#: module-settings.php:527
|
2160 |
msgid "Label"
|
2161 |
msgstr "Etiquette"
|
2162 |
|
2163 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2164 |
msgid "Reply-To Email:"
|
2165 |
msgstr "Adresse de réponse"
|
2166 |
|
2167 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2168 |
msgid "Save"
|
2169 |
msgstr "Enregistrer"
|
2170 |
|
2171 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2172 |
msgid "CSS Styling"
|
2173 |
msgstr "Règles de style"
|
2174 |
|
2175 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2176 |
msgid "Site Related"
|
2177 |
msgstr "A propos du site"
|
2178 |
|
2179 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2180 |
msgid "Your websites title"
|
2181 |
msgstr "Titre de votre site"
|
2182 |
|
2183 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2184 |
msgid "Your websites address"
|
2185 |
msgstr "Adresse de votre site"
|
2186 |
|
2187 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2188 |
msgid "Your websites tagline (description)"
|
2189 |
msgstr "Description de votre site"
|
2190 |
|
2191 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2192 |
msgid "Your websites admin email"
|
2193 |
msgstr "Email de l'administrateur du site"
|
2194 |
|
2195 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2196 |
msgid "Total number of blog members"
|
2197 |
msgstr "Total des membres de votre blog"
|
2198 |
|
2199 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2200 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2201 |
+
#: addon-email-notices.php:1040
|
2202 |
msgid "Email Notice Updated."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2206 |
msgid "Email Notice Activated"
|
2207 |
msgstr "Message activé"
|
2208 |
|
2209 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2210 |
msgid "Email Notice Saved"
|
2211 |
msgstr "Message enregistré"
|
2212 |
|
2213 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2214 |
msgid ""
|
2215 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2216 |
"are not yet ready to use this email notice!"
|
2219 |
"actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
|
2220 |
"l'utiliser."
|
2221 |
|
2222 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2223 |
#, php-format
|
2224 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2225 |
msgstr "Ce message sera activé le:<br /><strong>%1$s</strong>"
|
2226 |
|
2227 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2228 |
msgid "This email notice is active."
|
2229 |
msgstr "Ce message est activé."
|
2230 |
|
2231 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2232 |
msgid "Settings saved."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2236 |
msgid "Unsubscribe"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2240 |
msgid "There are no email notifications yet."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2244 |
msgid "Save Changes"
|
2245 |
msgstr ""
|
2246 |
|
2290 |
|
2291 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2292 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2293 |
+
#: 52 ../includes/mycred-network.php:53
|
2294 |
msgid "myCRED"
|
2295 |
msgstr "myCred"
|
2296 |
|
2373 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2374 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2375 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2376 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2377 |
msgid "Exchange Rate"
|
2378 |
msgstr "Taux de change"
|
2379 |
|
2681 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2682 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2683 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2684 |
+
#: sell-content.php:669
|
2685 |
msgid "Button Label"
|
2686 |
msgstr "Intitulé du bouton"
|
2687 |
|
2695 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2696 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2697 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2698 |
+
#: sell-content.php:665
|
2699 |
msgid "Price"
|
2700 |
msgstr "Prix"
|
2701 |
|
2800 |
msgstr "Rejeter"
|
2801 |
|
2802 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2803 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2804 |
+
#: modules/mycred-module-settings.php:508
|
2805 |
msgid "Delete"
|
2806 |
msgstr "Suppirmer"
|
2807 |
|
2932 |
msgstr "Utiliser le style CSS inclus pour les notifications."
|
2933 |
|
2934 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2935 |
+
#: module-buddypress.php:439
|
2936 |
msgid "Template"
|
2937 |
msgstr "Texte à afficher"
|
2938 |
|
3221 |
"site quand les classements sont marqués comme \"Publics\""
|
3222 |
|
3223 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3224 |
+
#: php:402
|
3225 |
msgid "Do not show."
|
3226 |
msgstr "Ne pas afficher."
|
3227 |
|
3271 |
msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
|
3272 |
|
3273 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3274 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3275 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3276 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3277 |
msgid "error"
|
3278 |
msgstr "erreur"
|
3279 |
|
3400 |
msgid "%s Sell This"
|
3401 |
msgstr "%s a vendu ceci"
|
3402 |
|
3403 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3404 |
#, php-format
|
3405 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3406 |
msgstr ""
|
3407 |
"%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
|
3408 |
"cette fonctionnalité."
|
3409 |
|
3410 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3411 |
msgid "Setup add-on"
|
3412 |
msgstr "Configuration du module"
|
3413 |
|
3414 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3415 |
msgid "Lets do it"
|
3416 |
msgstr "Faisons cela"
|
3417 |
|
3418 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3419 |
#, php-format
|
3420 |
msgid "Enable sale of this %s"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3424 |
msgid "Purchase expires after"
|
3425 |
msgstr "Les achats expirent après"
|
3426 |
|
3427 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3428 |
msgid "Thank you for your purchase!"
|
3429 |
msgstr "Merci pour votre achat"
|
3430 |
|
3431 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3432 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3433 |
msgid "The following content is set for sale:"
|
3434 |
msgstr "Le contenu suivant est prévu à la vente:"
|
3435 |
|
3436 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3437 |
msgid "Purchased"
|
3438 |
msgstr "Acheté"
|
3439 |
|
3446 |
msgstr "Vous avez dépassé votre limite de transfert %limit%."
|
3447 |
|
3448 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3449 |
+
#: php:2367
|
3450 |
msgid "Transfer"
|
3451 |
msgstr "Transférer"
|
3452 |
|
3485 |
"autorisé avant qu'il ne soit activé."
|
3486 |
|
3487 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3488 |
+
#: php:1041
|
3489 |
msgid "Insufficient Funds. Please try a lower amount."
|
3490 |
msgstr ""
|
3491 |
|
3866 |
msgid "My Entire Log"
|
3867 |
msgstr "Mon journal complet"
|
3868 |
|
3869 |
+
#: ../includes/mycred-functions.php:1854
|
3870 |
msgid "ref empty"
|
3871 |
msgstr "ref est vide"
|
3872 |
|
3873 |
+
#: ../includes/mycred-functions.php:1862
|
3874 |
msgid "incorrect user id format"
|
3875 |
msgstr "format du ID utilisateur incorrect"
|
3876 |
|
3877 |
+
#: ../includes/mycred-functions.php:1875
|
3878 |
msgid "incorrect unix timestamp (from):"
|
3879 |
msgstr "Horodatage unix incorrect (from):"
|
3880 |
|
3881 |
+
#: ../includes/mycred-functions.php:1884
|
3882 |
msgid "incorrect unix timestamp (to):"
|
3883 |
msgstr "Horodatage unix incorrect (to):"
|
3884 |
|
3885 |
+
#: ../includes/mycred-functions.php:2254
|
3886 |
msgid "Website Registration"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: ../includes/mycred-functions.php:2255
|
3890 |
msgid "Website Visit"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: ../includes/mycred-functions.php:2256
|
3894 |
msgid "Viewing Content (Member)"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: ../includes/mycred-functions.php:2257
|
3898 |
msgid "Viewing Content (Author)"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: ../includes/mycred-functions.php:2258
|
3902 |
msgid "Logging in"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: ../includes/mycred-functions.php:2259
|
3906 |
msgid "Publishing Content"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3910 |
msgid "Approved Comment"
|
3911 |
msgstr "Commentaire approuvé"
|
3912 |
|
3913 |
+
#: ../includes/mycred-functions.php:2261
|
3914 |
msgid "Unapproved Comment"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: ../includes/mycred-functions.php:2262
|
3918 |
msgid "SPAM Comment"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: ../includes/mycred-functions.php:2263
|
3922 |
msgid "Deleted Comment"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: ../includes/mycred-functions.php:2264
|
3926 |
msgid "Link Click"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: ../includes/mycred-functions.php:2265
|
3930 |
msgid "Watching Video"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: ../includes/mycred-functions.php:2266
|
3934 |
msgid "Visitor Referral"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: ../includes/mycred-functions.php:2267
|
3938 |
msgid "Signup Referral"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: ../includes/mycred-functions.php:2271
|
3942 |
msgid "New Profile Update"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: ../includes/mycred-functions.php:2272
|
3946 |
msgid "Avatar Upload"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: ../includes/mycred-functions.php:2273
|
3950 |
msgid "New Friendship"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: ../includes/mycred-functions.php:2274
|
3954 |
msgid "Ended Friendship"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: ../includes/mycred-functions.php:2275
|
3958 |
msgid "New Profile Comment"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: ../includes/mycred-functions.php:2276
|
3962 |
msgid "Profile Comment Deletion"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: ../includes/mycred-functions.php:2277
|
3966 |
msgid "New Message"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: ../includes/mycred-functions.php:2278
|
3970 |
msgid "Sending Gift"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: ../includes/mycred-functions.php:2279
|
3974 |
msgid "New Group"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: ../includes/mycred-functions.php:2280
|
3978 |
msgid "Deleted Group"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: ../includes/mycred-functions.php:2281
|
3982 |
msgid "New Group Forum Topic"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: ../includes/mycred-functions.php:2282
|
3986 |
msgid "Edit Group Forum Topic"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: ../includes/mycred-functions.php:2283
|
3990 |
msgid "New Group Forum Post"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: ../includes/mycred-functions.php:2284
|
3994 |
msgid "Edit Group Forum Post"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: ../includes/mycred-functions.php:2285
|
3998 |
msgid "Joining Group"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: ../includes/mycred-functions.php:2286
|
4002 |
msgid "Leaving Group"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: ../includes/mycred-functions.php:2287
|
4006 |
msgid "New Group Avatar"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: ../includes/mycred-functions.php:2288
|
4010 |
msgid "New Group Comment"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
4014 |
#: php:166
|
4015 |
msgid "Photo Upload"
|
4016 |
msgstr "Télécharger la photo"
|
4017 |
|
4018 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
4019 |
#: php:176
|
4020 |
msgid "Video Upload"
|
4021 |
msgstr "Télécharger la vidéo"
|
4022 |
|
4023 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
4024 |
#: php:186
|
4025 |
msgid "Music Upload"
|
4026 |
msgstr "Télécharger la musique"
|
4027 |
|
4028 |
+
#: ../includes/mycred-functions.php:2298
|
4029 |
msgid "New Link"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: ../includes/mycred-functions.php:2299
|
4033 |
msgid "Link Voting"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: ../includes/mycred-functions.php:2300
|
4037 |
msgid "Link Update"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: ../includes/mycred-functions.php:2304
|
4041 |
msgid "New Forum (bbPress)"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: ../includes/mycred-functions.php:2305
|
4045 |
msgid "New Forum Topic (bbPress)"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: ../includes/mycred-functions.php:2306
|
4049 |
msgid "Favorited Topic (bbPress)"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: ../includes/mycred-functions.php:2307
|
4053 |
msgid "New Topic Reply (bbPress)"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: ../includes/mycred-functions.php:2311
|
4057 |
msgid "Form Submission (Contact Form 7)"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: ../includes/mycred-functions.php:2314
|
4061 |
msgid "Form Submission (Gravity Form)"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: ../includes/mycred-functions.php:2317
|
4065 |
msgid "New Forum Topic (SimplePress)"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: ../includes/mycred-functions.php:2318
|
4069 |
msgid "New Forum Post (SimplePress)"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: ../includes/mycred-functions.php:2322
|
4073 |
msgid "Poll Voting"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: ../includes/mycred-functions.php:2325
|
4077 |
msgid "Sending an Invite"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: ../includes/mycred-functions.php:2326
|
4081 |
msgid "Accepting an Invite"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: ../includes/mycred-functions.php:2332
|
4085 |
msgid "Banking Payout"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: ../includes/mycred-functions.php:2335
|
4089 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: ../includes/mycred-functions.php:2336
|
4093 |
msgid "buyCRED Purchase (Skrill)"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: ../includes/mycred-functions.php:2337
|
4097 |
msgid "buyCRED Purchase (Zombaio)"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: ../includes/mycred-functions.php:2338
|
4101 |
msgid "buyCRED Purchase (NETBilling)"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: ../includes/mycred-functions.php:2339
|
4105 |
msgid "buyCRED Purchase (BitPay)"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: ../includes/mycred-functions.php:2344
|
4109 |
msgid "Coupon Purchase"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: ../includes/mycred-functions.php:2347
|
4113 |
msgid "Store Purchase (WooCommerce)"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: ../includes/mycred-functions.php:2348
|
4117 |
msgid "Store Purchase (MarketPress)"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: ../includes/mycred-functions.php:2349
|
4121 |
msgid "Store Purchase (WP E-Commerce)"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: ../includes/mycred-functions.php:2354
|
4125 |
msgid "Event Payment (Event Espresso)"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: ../includes/mycred-functions.php:2355
|
4129 |
msgid "Event Sale (Event Espresso)"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: ../includes/mycred-functions.php:2359
|
4133 |
msgid "Event Payment (Events Manager)"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: ../includes/mycred-functions.php:2360
|
4137 |
msgid "Event Sale (Events Manager)"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: ../includes/mycred-functions.php:2364
|
4141 |
msgid "Content Purchase / Sale"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: ../includes/mycred-functions.php:2371
|
4145 |
msgid "Manual Adjustment by Admin"
|
4146 |
msgstr ""
|
4147 |
|
4189 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4190 |
msgstr "myCRED requiert SQL 5.0 ou supérieur. Version trouvée: "
|
4191 |
|
4192 |
+
#: ../includes/mycred-install.php:54
|
4193 |
msgid ""
|
4194 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4195 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4196 |
"for you!"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: ../includes/mycred-install.php:59
|
4200 |
msgid ""
|
4201 |
"Sorry but your WordPress installation does not reach the minimum "
|
4202 |
"requirements for running myCRED. The following errors were given:"
|
4205 |
"nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
|
4206 |
"apparues:"
|
4207 |
|
4208 |
+
#: ../includes/mycred-install.php:248
|
4209 |
msgid "myCRED needs your attention."
|
4210 |
msgstr "myCRED requiert votre attention."
|
4211 |
|
4212 |
+
#: ../includes/mycred-install.php:248
|
4213 |
msgid "Run Setup"
|
4214 |
msgstr "Démarrer l'installation"
|
4215 |
|
4216 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4217 |
msgid "myCRED Setup"
|
4218 |
msgstr "Installation de myCRED"
|
4219 |
|
4220 |
+
#: ../includes/mycred-install.php:390
|
4221 |
#, php-format
|
4222 |
msgid "%s Setup"
|
4223 |
msgstr "Configuration %s"
|
4224 |
|
4225 |
+
#: ../includes/mycred-install.php:392
|
4226 |
msgid "Step"
|
4227 |
msgstr "Etape"
|
4228 |
|
4229 |
+
#: ../includes/mycred-install.php:416
|
4230 |
msgid ""
|
4231 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4232 |
"points format, layout and security settings."
|
4235 |
"alors en mesure de choisir le format de points, l'apparence et les "
|
4236 |
"paramètres de sécurité."
|
4237 |
|
4238 |
+
#: ../includes/mycred-install.php:417
|
4239 |
msgid "Begin Setup"
|
4240 |
msgstr "Démarrer le paramétrage"
|
4241 |
|
4242 |
+
#: ../includes/mycred-install.php:472
|
4243 |
msgid "Select the format you want to use for your points."
|
4244 |
msgstr "Choisissez le format que vous voulez utiliser pour vos points"
|
4245 |
|
4246 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4247 |
msgid "Format"
|
4248 |
msgstr "Formatage"
|
4249 |
|
4250 |
+
#: ../includes/mycred-install.php:476
|
4251 |
msgid "Separators"
|
4252 |
msgstr "Séparateurs"
|
4253 |
|
4254 |
+
#: ../includes/mycred-install.php:486
|
4255 |
msgid "Decimals"
|
4256 |
msgstr "Décimales"
|
4257 |
|
4258 |
+
#: ../includes/mycred-install.php:488
|
4259 |
msgid "Use zero for no decimals."
|
4260 |
msgstr "Utilisez zéro si vous ne voulez pas de décimales."
|
4261 |
|
4262 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4263 |
msgid "Presentation"
|
4264 |
msgstr "Présentation"
|
4265 |
|
4266 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4267 |
msgid "Name (Singular)"
|
4268 |
msgstr "Nom (singulier)"
|
4269 |
|
4270 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4271 |
msgid "Name (Plural)"
|
4272 |
msgstr "Nom (pluriel)"
|
4273 |
|
4274 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4275 |
msgid "Prefix"
|
4276 |
msgstr "Préfixe"
|
4277 |
|
4278 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4279 |
msgid "Suffix"
|
4280 |
msgstr "Suffixe"
|
4281 |
|
4282 |
+
#: ../includes/mycred-install.php:516
|
4283 |
msgid "Cancel Setup"
|
4284 |
msgstr "Annuler le paramétrage"
|
4285 |
|
4286 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4287 |
msgid "Next"
|
4288 |
msgstr "Suivant"
|
4289 |
|
4290 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4291 |
msgid "Security"
|
4292 |
msgstr "Sécurité"
|
4293 |
|
4294 |
+
#: ../includes/mycred-install.php:551
|
4295 |
msgid "Edit Settings Capability"
|
4296 |
msgstr "Modifier les paramètres"
|
4297 |
|
4298 |
+
#: ../includes/mycred-install.php:555
|
4299 |
msgid "Edit Users %plural% Capability"
|
4300 |
msgstr "Modifier la capacité de %plural% des utilisateurs"
|
4301 |
|
4302 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4303 |
msgid "Maximum %plural% payouts"
|
4304 |
msgstr "Maximum de %plural% à régler"
|
4305 |
|
4306 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4307 |
msgid ""
|
4308 |
"As an added security, you can set the maximum amount a user can gain or "
|
4309 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4316 |
"maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
|
4317 |
"désactiver l'option."
|
4318 |
|
4319 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4320 |
msgid "Excludes"
|
4321 |
msgstr "Exclure"
|
4322 |
|
4323 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4324 |
msgid "Exclude those who can \"Edit Settings\"."
|
4325 |
msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
|
4326 |
|
4327 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4328 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4329 |
msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
|
4330 |
|
4331 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4332 |
msgid "Exclude the following user IDs:"
|
4333 |
msgstr "Exclure les utilisateurs (ID) suivants"
|
4334 |
|
4335 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4336 |
msgid "User Deletions"
|
4337 |
msgstr "Suppression de l'utilisateur"
|
4338 |
|
4339 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4340 |
msgid "Delete log entries when user is deleted."
|
4341 |
msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
|
4342 |
|
4343 |
+
#: ../includes/mycred-install.php:604
|
4344 |
msgid "Ready"
|
4345 |
msgstr "Prêt !"
|
4346 |
|
4347 |
+
#: ../includes/mycred-install.php:605
|
4348 |
msgid "Almost done! Click the button below to finish this setup."
|
4349 |
msgstr ""
|
4350 |
"C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
|
4351 |
"configuration."
|
4352 |
|
4353 |
+
#: ../includes/mycred-install.php:606
|
4354 |
msgid "Install & Run"
|
4355 |
msgstr "Installer et démarrer"
|
4356 |
|
4363 |
msgid "entry"
|
4364 |
msgstr "entrée"
|
4365 |
|
4366 |
+
#: ../includes/mycred-log.php:412
|
4367 |
msgid "Go to the first page"
|
4368 |
msgstr "Aller à la première page"
|
4369 |
|
4370 |
+
#: ../includes/mycred-log.php:419
|
4371 |
msgid "Go to the previous page"
|
4372 |
msgstr "Aller à la page précédente"
|
4373 |
|
4374 |
+
#: ../includes/mycred-log.php:428
|
4375 |
msgid "Current page"
|
4376 |
msgstr "Page actuelle"
|
4377 |
|
4378 |
+
#: ../includes/mycred-log.php:434
|
4379 |
#, php-format
|
4380 |
msgctxt "paging"
|
4381 |
msgid "%1$s of %2$s"
|
4382 |
msgstr "%1$s sur %2$s"
|
4383 |
|
4384 |
+
#: ../includes/mycred-log.php:438
|
4385 |
msgid "Go to the next page"
|
4386 |
msgstr "Aller à la page suivante"
|
4387 |
|
4388 |
+
#: ../includes/mycred-log.php:445
|
4389 |
msgid "Go to the last page"
|
4390 |
msgstr "Aller à la dernière page"
|
4391 |
|
4393 |
msgid "Show all references"
|
4394 |
msgstr "Afficher toutes les références"
|
4395 |
|
4396 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4397 |
msgid "User ID"
|
4398 |
msgstr "ID utilisateur"
|
4399 |
|
4628 |
"empêcher des appels malicieux qui tenteraient de s'informer sur votre "
|
4629 |
"installation !"
|
4630 |
|
4631 |
+
#: ../includes/mycred-shortcodes.php:178
|
4632 |
msgid "Leaderboard is empty."
|
4633 |
msgstr "Aucun classement à afficher."
|
4634 |
|
4635 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4636 |
msgid "Amount missing!"
|
4637 |
msgstr "Montant absent !"
|
4638 |
|
4639 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4640 |
msgid "Log Template Missing!"
|
4641 |
msgstr "Rapport absent !"
|
4642 |
|
4643 |
+
#: ../includes/mycred-shortcodes.php:515
|
4644 |
msgid "Anchor missing URL!"
|
4645 |
msgstr "L'ancre de l'URL est absente !"
|
4646 |
|
4647 |
+
#: ../includes/mycred-shortcodes.php:577
|
4648 |
msgid "User ID missing for recipient."
|
4649 |
msgstr "L'ID du destinataire est absente !"
|
4650 |
|
4651 |
+
#: ../includes/mycred-shortcodes.php:632
|
4652 |
msgid "Sent"
|
4653 |
msgstr "Envoyer"
|
4654 |
|
4655 |
+
#: ../includes/mycred-shortcodes.php:633
|
4656 |
msgid "Error - Try Again"
|
4657 |
msgstr "Erreur - essayez encore une fois"
|
4658 |
|
4659 |
+
#: ../includes/mycred-shortcodes.php:742
|
4660 |
msgid "A video ID is required for this shortcode"
|
4661 |
msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
|
4662 |
|
4663 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4664 |
msgid "Point types not found."
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4668 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4669 |
#, php-format
|
4670 |
msgid "You are excluded from using %s."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4674 |
msgid "Your balance is too low to use this feature."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: ../includes/mycred-shortcodes.php:924
|
4678 |
#, php-format
|
4679 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: ../includes/mycred-shortcodes.php:933
|
4683 |
#, php-format
|
4684 |
msgid "Your current %s balance"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: ../includes/mycred-shortcodes.php:941
|
4688 |
#, php-format
|
4689 |
msgid "Minimum %s"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: ../includes/mycred-shortcodes.php:945
|
4693 |
#, php-format
|
4694 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: ../includes/mycred-shortcodes.php:951
|
4698 |
msgid "Exchange"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4702 |
#, php-format
|
4703 |
msgid "You must exchange at least %s!"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4707 |
#, php-format
|
4708 |
msgid "Exchange from %s"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4712 |
#, php-format
|
4713 |
msgid "Exchange to %s"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4717 |
#, php-format
|
4718 |
msgid "You have successfully exchanged %s into %s."
|
4719 |
msgstr ""
|
4732 |
msgid "My Balance"
|
4733 |
msgstr "Mon relevé"
|
4734 |
|
4735 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4736 |
msgid "%plural% History"
|
4737 |
msgstr "Historique des %plural%"
|
4738 |
|
5166 |
msgid "Current balance"
|
5167 |
msgstr "Solde courant"
|
5168 |
|
5169 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5170 |
msgid "Go"
|
5171 |
msgstr "Go"
|
5172 |
|
5173 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5174 |
msgid "Show in Profile"
|
5175 |
msgstr "Afficher sur le profil"
|
5176 |
|
5177 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5178 |
#, php-format
|
5179 |
msgid "%singular% Balance"
|
5180 |
msgstr "Solde de %singular%"
|
5181 |
|
5182 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5183 |
#, php-format
|
5184 |
msgid "Members and visitors can other members %_singular% balance."
|
5185 |
msgstr ""
|
5186 |
"Les membres et les visiteurs peuvent voir le solde de %_singular% des autres "
|
5187 |
"membres."
|
5188 |
|
5189 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5190 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5191 |
msgstr ""
|
5192 |
"Notez que vous pouvez aussi utiliser %rank_logo% pour afficher une image "
|
5193 |
"correspondant au classement."
|
5194 |
|
5195 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5196 |
msgid "Members can view each others %_plural% history."
|
5197 |
msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
|
5198 |
|
5199 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5200 |
msgid "Menu Title"
|
5201 |
msgstr "Titre du menu"
|
5202 |
|
5203 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5204 |
msgid "Title shown to me"
|
5205 |
msgstr "Le titre que moi je peux voir"
|
5206 |
|
5207 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5208 |
#, php-format
|
5209 |
msgid "Title shown to others. Use %s to show the first name."
|
5210 |
msgstr ""
|
5211 |
"Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
|
5212 |
"prénom."
|
5213 |
|
5214 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5215 |
msgid "Menu Position"
|
5216 |
msgstr "Position du menu"
|
5217 |
|
5218 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5219 |
msgid "Current menu positions:"
|
5220 |
msgstr "Positions actuelles du menu:"
|
5221 |
|
5222 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5223 |
msgid "History URL slug"
|
5224 |
msgstr "Chemin vers l'historique"
|
5225 |
|
5226 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5227 |
msgid "Do not use empty spaces!"
|
5228 |
msgstr "Sans espaces !"
|
5229 |
|
5230 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5231 |
msgid "Number of history entries to show"
|
5232 |
msgstr "Nombre d'historiques à afficher"
|
5233 |
|
5367 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5368 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5369 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5370 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5371 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5372 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5373 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5374 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5429 |
msgid "%plural% for viewing %s"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5433 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5434 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5435 |
msgid "Limit"
|
5436 |
msgstr "Limite d'attribution"
|
5522 |
msgid "Custom tags: %url%, %title% or %id%."
|
5523 |
msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
|
5524 |
|
5525 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5526 |
msgid "Note!"
|
5527 |
msgstr "Information !"
|
5528 |
|
5538 |
"Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
|
5539 |
"recommandons fortement de limiter par ID."
|
5540 |
|
5541 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5542 |
msgid "Available Shortcode"
|
5543 |
msgstr "Shortcode disponible"
|
5544 |
|
5545 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5546 |
msgid "Amount to award for viewing videos."
|
5547 |
msgstr "Montant à attribuer pour le visionnage d'une vidéo."
|
5548 |
|
5549 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5550 |
msgid "Award Logic"
|
5551 |
msgstr "Attributs de classement"
|
5552 |
|
5553 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5554 |
#, php-format
|
5555 |
msgid "Select when %_plural% should be awarded or deducted."
|
5556 |
msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
|
5557 |
|
5558 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5559 |
msgid "Play - As soon as video starts playing."
|
5560 |
msgstr "Play - aussitôt que la vidéo démarre"
|
5561 |
|
5562 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5563 |
msgid "Full - First when the entire video has played."
|
5564 |
msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
|
5565 |
|
5566 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5567 |
msgid "Interval - For each x number of seconds watched."
|
5568 |
msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
|
5569 |
|
5570 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5571 |
msgid "Number of seconds"
|
5572 |
msgstr "Nombre de secondes"
|
5573 |
|
5574 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5575 |
msgid "Leniency"
|
5576 |
msgstr "Tolérance"
|
5577 |
|
5578 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5579 |
msgid ""
|
5580 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5581 |
"length."
|
5583 |
"Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
|
5584 |
"longueur actuelle d'une vidéo."
|
5585 |
|
5586 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5587 |
msgid ""
|
5588 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5589 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5593 |
"produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
|
5594 |
"compteur pendant la mise en tampon ou produire des erreurs de différé."
|
5595 |
|
5596 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5597 |
msgid "Affiliate Program"
|
5598 |
msgstr "Programme d'affiliation"
|
5599 |
|
5600 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5601 |
msgid "Per Day"
|
5602 |
msgstr "Par jour"
|
5603 |
|
5604 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5605 |
msgid "Link"
|
5606 |
msgstr "Lien"
|
5607 |
|
5608 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5609 |
+
msgid "Visitors Referred"
|
5610 |
+
msgstr ""
|
5611 |
+
|
5612 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5613 |
+
msgid "Signups Referred"
|
5614 |
+
msgstr ""
|
5615 |
+
|
5616 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5617 |
msgid "Referring Visitors"
|
5618 |
msgstr "Visiteurs réferants"
|
5619 |
|
5620 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5621 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5622 |
msgstr ""
|
5623 |
"Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
|
5624 |
"illimité."
|
5625 |
|
5626 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5627 |
msgid "Referring Signups"
|
5628 |
msgstr "Inscriptions référentes"
|
5629 |
|
5630 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5631 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5632 |
msgstr ""
|
5633 |
"Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
|
5634 |
"%_plural%."
|
5635 |
|
5636 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5637 |
msgid "Registrations are disabled."
|
5638 |
msgstr "Les inscriptions sont désactivées."
|
5639 |
|
5640 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5641 |
msgid "Referral Links"
|
5642 |
msgstr "Liens référents"
|
5643 |
|
5644 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5645 |
msgid "Assign numeric referral IDs to each user."
|
5646 |
msgstr "Assigner un ID de référence numérique à chaque utilisateur."
|
5647 |
|
5648 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5649 |
msgid "Example"
|
5650 |
msgstr "Exemple"
|
5651 |
|
5652 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5653 |
msgid "Assign usernames as IDs for each user."
|
5654 |
msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
|
5655 |
|
5656 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5657 |
msgid "IP Limit"
|
5658 |
msgstr "Limite IP"
|
5659 |
|
5660 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5661 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5662 |
msgstr ""
|
5663 |
"Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
|
5664 |
"Indiquez 0 pour un nombre illimité."
|
5665 |
|
5666 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5667 |
msgid "BuddyPress Profile"
|
5668 |
msgstr "Profil BuddyPress"
|
5669 |
|
5670 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5671 |
msgid "Insert Link in users Profile"
|
5672 |
msgstr "Insérer un lien sur le Profil des utilisateurs"
|
5673 |
|
5674 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5675 |
msgid ""
|
5676 |
"Option to inser the referral link in users profiles. Links will only be "
|
5677 |
"visible to users viewing their own profiles or administrators."
|
5680 |
"visible que par l'utilisateur sur son propre profil et pour les "
|
5681 |
"administrateurs du site."
|
5682 |
|
5683 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5684 |
msgid "Leave empty to hide."
|
5685 |
msgstr "Laissez vide pour masquer"
|
5686 |
|
5687 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5688 |
msgid "Description"
|
5689 |
msgstr "Description"
|
5690 |
|
5691 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5692 |
msgid "Optional description to insert under the link."
|
5693 |
msgstr "Description facultative qui apparaîtra sous le lien"
|
5694 |
|
5695 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5696 |
msgid "Profile Positioning"
|
5697 |
msgstr "Position sur le Profil"
|
5698 |
|
5699 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5700 |
msgid ""
|
5701 |
"You can move around the referral link on your users profile by changing the "
|
5702 |
"position. Increase to move up, decrease to move down."
|
5704 |
"Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
|
5705 |
"position vers le haut ou le bas."
|
5706 |
|
5707 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5708 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5709 |
msgstr ""
|
5710 |
"Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
|
5711 |
"profil \"Base\" "
|
5712 |
|
5713 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5714 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5715 |
msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
|
5716 |
|
5717 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5718 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5719 |
msgid "Access denied for this action"
|
5720 |
msgstr "Accés refusé pour cette action"
|
5721 |
|
5731 |
msgid "Entry Updated"
|
5732 |
msgstr "Entrée mise à jour"
|
5733 |
|
5734 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5735 |
msgid "Entries"
|
5736 |
msgstr "Entrées"
|
5737 |
|
5738 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5739 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5740 |
msgid "Export"
|
5741 |
msgstr "Exporter"
|
5742 |
|
5783 |
msgstr "Mon historique %s"
|
5784 |
|
5785 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5786 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5787 |
msgid "Missing point type"
|
5788 |
msgstr "Type de point manquant"
|
5789 |
|
5790 |
+
#: ../modules/mycred-module-settings.php:129
|
5791 |
msgid "Accounts successfully reset"
|
5792 |
msgstr "Remise à zéro du compte réussie"
|
5793 |
|
5794 |
+
#: ../modules/mycred-module-settings.php:175
|
5795 |
msgid "No users found to export"
|
5796 |
msgstr "Aucun utilisateur à exporter"
|
5797 |
|
5798 |
+
#: ../modules/mycred-module-settings.php:331
|
5799 |
#, php-format
|
5800 |
msgid "%s Settings"
|
5801 |
msgstr "Configuration de %s"
|
5802 |
|
5803 |
+
#: ../modules/mycred-module-settings.php:334
|
5804 |
msgid "Adjust your core or add-on settings."
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: ../modules/mycred-module-settings.php:339
|
5808 |
msgid "Core Settings"
|
5809 |
msgstr "Configuration du Core"
|
5810 |
|
5811 |
+
#: ../modules/mycred-module-settings.php:341
|
5812 |
msgid "Name"
|
5813 |
msgstr "Nom"
|
5814 |
|
5815 |
+
#: ../modules/mycred-module-settings.php:346
|
5816 |
#, php-format
|
5817 |
msgid "Accessible though the %singular% template tag."
|
5818 |
msgstr "Accessible avec le mot-clés %singular%"
|
5819 |
|
5820 |
+
#: ../modules/mycred-module-settings.php:351
|
5821 |
msgid "Accessible though the %plural% template tag."
|
5822 |
msgstr "Accessible avec le mot-clé %plural%"
|
5823 |
|
5824 |
+
#: ../modules/mycred-module-settings.php:354
|
5825 |
msgid "Tip"
|
5826 |
msgstr "Astuce"
|
5827 |
|
5828 |
+
#: ../modules/mycred-module-settings.php:354
|
5829 |
msgid ""
|
5830 |
"Adding an underscore at the beginning of template tag for names will return "
|
5831 |
"them in lowercase. i.e. %_singular%"
|
5833 |
"En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné "
|
5834 |
"en minuscule. Par ex. %_singular%"
|
5835 |
|
5836 |
+
#: ../modules/mycred-module-settings.php:372
|
5837 |
msgid "Separator"
|
5838 |
msgstr "Séparateur"
|
5839 |
|
5840 |
+
#: ../modules/mycred-module-settings.php:379
|
5841 |
msgid "Edit Settings"
|
5842 |
msgstr "Modifier les réglages"
|
5843 |
|
5844 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5845 |
+
#: php:386
|
5846 |
msgid "Capability to check for."
|
5847 |
msgstr "Capacité à observer."
|
5848 |
|
5849 |
+
#: ../modules/mycred-module-settings.php:384
|
5850 |
msgid "Edit Users %plural%"
|
5851 |
msgstr "Modifier les %plural% de l'utilisateur"
|
5852 |
|
5853 |
+
#: ../modules/mycred-module-settings.php:408
|
5854 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5855 |
msgstr ""
|
5856 |
"Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
|
5857 |
"espaces interdits."
|
5858 |
|
5859 |
+
#: ../modules/mycred-module-settings.php:428
|
5860 |
msgid "Management"
|
5861 |
msgstr "Gestion des données"
|
5862 |
|
5863 |
+
#: ../modules/mycred-module-settings.php:430
|
5864 |
msgid "The Log"
|
5865 |
msgstr "Rapport d'activités"
|
5866 |
|
5867 |
+
#: ../modules/mycred-module-settings.php:433
|
5868 |
msgid "Table Name"
|
5869 |
msgstr "Nom de la table"
|
5870 |
|
5871 |
+
#: ../modules/mycred-module-settings.php:442
|
5872 |
msgid "Empty Log"
|
5873 |
msgstr "Journal vide"
|
5874 |
|
5875 |
+
#: ../modules/mycred-module-settings.php:448
|
5876 |
msgid "User Meta Key"
|
5877 |
msgstr "Mot clé utilisateur"
|
5878 |
|
5879 |
+
#: ../modules/mycred-module-settings.php:457
|
5880 |
msgid "Set all to zero"
|
5881 |
msgstr "Tout remettre à zéro"
|
5882 |
|
5883 |
+
#: ../modules/mycred-module-settings.php:457
|
5884 |
msgid "CSV Export"
|
5885 |
msgstr "Exportation CSV"
|
5886 |
|
5887 |
+
#: ../modules/mycred-module-settings.php:478
|
5888 |
msgid "Default"
|
5889 |
msgstr "Défaut"
|
5890 |
|
5891 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5892 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5893 |
msgid "Meta Key"
|
5894 |
msgstr "Mot-clé"
|
5895 |
|
5896 |
+
#: ../modules/mycred-module-settings.php:519
|
5897 |
msgid "Add New Type"
|
5898 |
msgstr "Ajouter un nouveau type"
|
5899 |
|
5900 |
+
#: ../modules/mycred-module-settings.php:524
|
5901 |
msgid "A unique ID for this type."
|
5902 |
msgstr "Un identifiant unique pour ce type."
|
5903 |
|
5904 |
+
#: ../modules/mycred-module-settings.php:529
|
5905 |
msgid "Menu and page title."
|
5906 |
msgstr "Titre de menu et de page"
|
5907 |
|
5908 |
+
#: ../modules/mycred-module-settings.php:532
|
5909 |
msgid "The meta key will define where your users balances are saved."
|
5910 |
msgstr ""
|
5911 |
"Le mot clé définit l'endroit où est enregistré le solde de compte de "
|
5912 |
"l'utilisateur"
|
5913 |
|
5914 |
+
#: ../modules/mycred-module-settings.php:553
|
5915 |
msgid "Identify users by"
|
5916 |
msgstr "Identifer les utilisateurs par"
|
5917 |
|
5918 |
+
#: ../modules/mycred-module-settings.php:559
|
5919 |
msgid "User Email"
|
5920 |
msgstr "Email de l'utilisateur"
|
5921 |
|
5922 |
+
#: ../modules/mycred-module-settings.php:560
|
5923 |
msgid "User Login"
|
5924 |
msgstr "ID de l'utilisateur"
|
5925 |
|
5926 |
+
#: ../modules/mycred-module-settings.php:567
|
5927 |
msgid ""
|
5928 |
"Use ID if you intend to use this export as a backup of your current site "
|
5929 |
"while Email is recommended if you want to export to a different site."
|
5932 |
"sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
|
5933 |
"si vous comptez exploiter les données sur un autre site."
|
5934 |
|
5935 |
+
#: ../modules/mycred-module-settings.php:570
|
5936 |
msgid "Import Log Entry"
|
5937 |
msgstr "Import du journal d'entrées"
|
5938 |
|
5939 |
+
#: ../modules/mycred-module-settings.php:572
|
5940 |
#, php-format
|
5941 |
msgid ""
|
5942 |
"Optional log entry to use if you intend to import this file in a different "
|
5945 |
"Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
|
5946 |
"installation %s différente."
|
5947 |
|
5948 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5949 |
msgid "BadgeOS"
|
5950 |
msgstr "BadgeOS"
|
5951 |
|
5952 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5953 |
msgid ""
|
5954 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5955 |
"overridden for individual achievement type."
|
5957 |
"Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
|
5958 |
"paramètres peuvent être remplacés individuellement à partir de chaque type."
|
5959 |
|
5960 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5961 |
#, php-format
|
5962 |
msgid ""
|
5963 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5966 |
"Veuillez paramétrer votre <a href=\"%s\">configuration par dé"
|
5967 |
"faut</a> avant d'utiliser ce service."
|
5968 |
|
5969 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5970 |
msgid "%plural% to Award"
|
5971 |
msgstr "Attribution de %_plural%"
|
5972 |
|
5973 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5974 |
msgid "Use zero to disable"
|
5975 |
msgstr "Utilisez zéro pour désactiver"
|
5976 |
|
5977 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5978 |
msgid "Deduction Log Template"
|
5979 |
msgstr "Texte pour le retrait de points"
|
5980 |
|
5981 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5982 |
#, php-format
|
5983 |
msgid "Default %s for %s"
|
5984 |
msgstr "%s pour %s par défaut"
|
5985 |
|
5986 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5987 |
msgid "Use zero to disable users gaining %_plural%"
|
5988 |
msgstr "Utilisez zéro pour désactiver les utilisateurs obtenant des %_plural%"
|
5989 |
|
5990 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5991 |
msgid "Default Log template"
|
5992 |
msgstr "Vue d'ensemble par défaut"
|
5993 |
|
lang/mycred-pt_BR.mo
CHANGED
Binary file
|
lang/mycred-pt_BR.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -24,32 +24,32 @@ msgstr ""
|
|
24 |
"content/plugins/mycred\n"
|
25 |
"X-Poedit-SearchPath-1: ."
|
26 |
|
27 |
-
#: ../mycred.php:
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
-
#: ../mycred.php:
|
32 |
msgid "%label% History"
|
33 |
msgstr "Histórico %label%"
|
34 |
|
35 |
-
#: ../mycred.php:
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre %s"
|
39 |
|
40 |
-
#: ../mycred.php:
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Pessoas incríveis"
|
43 |
|
44 |
-
#: ../mycred.php:
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
-
#: includes/mycred-shortcodes.php:
|
49 |
msgid "Processing..."
|
50 |
msgstr "Processando..."
|
51 |
|
52 |
-
#: ../mycred.php:
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"Aviso! Todas as entradas em seu registro serão removidas permanentemente! "
|
58 |
"Isso não pode ser desfeito!"
|
59 |
|
60 |
-
#: ../mycred.php:
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
@@ -65,55 +65,55 @@ msgstr ""
|
|
65 |
"Todas as entradas de registro que pertencem a usuários excluídos serão "
|
66 |
"excluídos permanentemente! Isso não pode ser desfeito!"
|
67 |
|
68 |
-
#: ../mycred.php:
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"Aviso! Os saldos dos usuários serão definidos para zero! Isso não pode ser "
|
72 |
"desfeito!"
|
73 |
|
74 |
-
#: ../mycred.php:
|
75 |
msgid "Done!"
|
76 |
msgstr "Concluído!"
|
77 |
|
78 |
-
#: ../mycred.php:
|
79 |
msgid "Close"
|
80 |
msgstr "Fechar"
|
81 |
|
82 |
-
#: ../mycred.php:
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar %plural% dos usuários"
|
85 |
|
86 |
-
#: ../mycred.php:
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo do usuário"
|
89 |
|
90 |
-
#: ../mycred.php:
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Editar registro de entradas"
|
93 |
|
94 |
-
#: ../mycred.php:
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"Tem certeza que deseja excluir esta entrada de registros? Isso não pode ser "
|
98 |
"desfeito!"
|
99 |
|
100 |
-
#: ../mycred.php:
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Registro de entradas atualizado"
|
103 |
|
104 |
-
#: ../mycred.php:
|
105 |
-
#: notices.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Instalação"
|
109 |
|
110 |
-
#: ../mycred.php:
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configurações"
|
115 |
|
116 |
-
#: ../mycred.php:
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
@@ -153,10 +153,10 @@ msgstr "Uma vez por dia (reiniciar a meia-noite)"
|
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
157 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
160 |
msgid "Select"
|
161 |
msgstr "Selecionar"
|
162 |
|
@@ -256,7 +256,7 @@ msgid "Requirements"
|
|
256 |
msgstr ""
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
260 |
msgid "Users"
|
261 |
msgstr "Usuários"
|
262 |
|
@@ -339,22 +339,22 @@ msgstr ""
|
|
339 |
|
340 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
341 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
342 |
-
#: modules/mycred-module-buddypress.php:
|
343 |
msgid "Do not show"
|
344 |
msgstr "Não exibir"
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
347 |
-
#: buddypress.php:
|
348 |
msgid "Include in Profile Header"
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
352 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
353 |
msgid "Include under the \"Profile\" tab"
|
354 |
msgstr "Incluir abaixo da aba \"Profile\""
|
355 |
|
356 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
357 |
-
#: buddypress.php:
|
358 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
359 |
msgstr ""
|
360 |
|
@@ -423,7 +423,7 @@ msgstr ""
|
|
423 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
424 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
425 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
426 |
-
#: modules/mycred-module-settings.php:
|
427 |
msgid "Access Denied"
|
428 |
msgstr "Acesso negado"
|
429 |
|
@@ -574,8 +574,8 @@ msgstr "Pagamento"
|
|
574 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
575 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
576 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
577 |
-
#: modules/mycred-module-hooks.php:
|
578 |
-
#: plugins/mycred-hook-badgeOS.php:
|
579 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
580 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
581 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -672,15 +672,15 @@ msgstr "Usuários pagantes"
|
|
672 |
|
673 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
674 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
675 |
-
#: creds.php:
|
676 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
677 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
678 |
-
#: includes/mycred-shortcodes.php:
|
679 |
msgid "Amount"
|
680 |
msgstr "Quantia"
|
681 |
|
682 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
683 |
-
#: modules/mycred-module-hooks.php:
|
684 |
msgid "Interval"
|
685 |
msgstr "Intervalo"
|
686 |
|
@@ -731,7 +731,7 @@ msgid "Edit Pending Payment"
|
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
734 |
-
#: addon-buy-creds.php:
|
735 |
msgid "No pending payments found"
|
736 |
msgstr ""
|
737 |
|
@@ -740,23 +740,23 @@ msgid "Not found in Trash"
|
|
740 |
msgstr ""
|
741 |
|
742 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
743 |
-
#: addon-buy-creds.php:
|
744 |
msgid "Transaction ID"
|
745 |
msgstr "ID da transação"
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
748 |
-
#: addon-buy-creds.php:
|
749 |
msgid "Buyer"
|
750 |
msgstr ""
|
751 |
|
752 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
753 |
-
#: addon-buy-creds.php:
|
754 |
#: gateway.php:563
|
755 |
msgid "Cost"
|
756 |
msgstr "Preço"
|
757 |
|
758 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
759 |
-
#: addon-buy-creds.php:
|
760 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
761 |
msgid "Gateway"
|
762 |
msgstr "Métodos de pagamento"
|
@@ -805,7 +805,7 @@ msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão s
|
|
805 |
|
806 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
807 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
808 |
-
#: module-settings.php:
|
809 |
msgid "Point Types"
|
810 |
msgstr "Tipos de pontos"
|
811 |
|
@@ -858,7 +858,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
858 |
msgstr "Permitir que usuários comprem %_plural% para os autores."
|
859 |
|
860 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
861 |
-
#: hooks.php:
|
862 |
msgid "Available Shortcodes"
|
863 |
msgstr "Shortcodes disponíveis"
|
864 |
|
@@ -885,7 +885,7 @@ msgid "%s Payment Gateways"
|
|
885 |
msgstr "%s Métodos de pagamento"
|
886 |
|
887 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
888 |
-
#: addon-buy-creds.php:
|
889 |
msgid "buyCRED Settings"
|
890 |
msgstr "Configurações do buyCRED"
|
891 |
|
@@ -910,7 +910,7 @@ msgid "Enable for test purchases."
|
|
910 |
msgstr "Habilitar para compras de teste."
|
911 |
|
912 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
913 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
914 |
msgid "Update Settings"
|
915 |
msgstr "Atualizar configurações"
|
916 |
|
@@ -918,101 +918,101 @@ msgstr "Atualizar configurações"
|
|
918 |
msgid "More Gateways"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
922 |
#: 634
|
923 |
msgid "Date"
|
924 |
msgstr "Data"
|
925 |
|
926 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
927 |
msgid "Payed"
|
928 |
msgstr "Pago"
|
929 |
|
930 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
931 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
932 |
msgstr "Registro de compra do <strong>buy</strong>CRED"
|
933 |
|
934 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
935 |
#: booking/mycred-eventespresso3.php:367
|
936 |
msgid "Gateway Settings"
|
937 |
msgstr "Configurações do método"
|
938 |
|
939 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
940 |
-
#: content/myCRED-addon-sell-content.php:
|
941 |
msgid "No purchases found"
|
942 |
msgstr "Nenhuma compra encontrada"
|
943 |
|
944 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
945 |
-
#: addon-buy-creds.php:
|
946 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
947 |
msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
|
948 |
|
949 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
950 |
-
#: addon-buy-creds.php:
|
951 |
msgid "No gateways installed."
|
952 |
msgstr "Nenhum método instalado."
|
953 |
|
954 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
955 |
-
#: addon-buy-creds.php:
|
956 |
msgid "Gateway does not exist."
|
957 |
msgstr "Método não existe."
|
958 |
|
959 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
960 |
msgid "Yourself"
|
961 |
msgstr "Você mesmo"
|
962 |
|
963 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
964 |
msgid "No active gateways found."
|
965 |
msgstr "Nenhum método ativo foi encontrado."
|
966 |
|
967 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
968 |
msgid "The selected gateway is not active."
|
969 |
msgstr "O método selecionado não está ativo."
|
970 |
|
971 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
972 |
#, php-format
|
973 |
msgid "Buy with %gateway%"
|
974 |
msgstr "Compre com %gateway%"
|
975 |
|
976 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
977 |
#: content/myCRED-addon-sell-content.php:44
|
978 |
msgid "Buy Now"
|
979 |
msgstr "Comprar agora"
|
980 |
|
981 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
982 |
msgid "No users found"
|
983 |
msgstr "Nenhum usuário encontrado"
|
984 |
|
985 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
986 |
msgid "To"
|
987 |
msgstr "Para"
|
988 |
|
989 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
990 |
msgid "Select Amount"
|
991 |
msgstr "Selecionar a quantia"
|
992 |
|
993 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
994 |
msgid "min."
|
995 |
msgstr "min."
|
996 |
|
997 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
998 |
msgid "Select Gateway"
|
999 |
msgstr "Selecione o método"
|
1000 |
|
1001 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1002 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1003 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1004 |
#: php:35
|
1005 |
msgid "Pay Now"
|
1006 |
msgstr "Pagar agora"
|
1007 |
|
1008 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1009 |
-
#: php:
|
1010 |
msgid "Cancel"
|
1011 |
msgstr "Cancelar"
|
1012 |
|
1013 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1014 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1015 |
-
#: module-settings.php:
|
1016 |
msgid "Actions"
|
1017 |
msgstr "Ações"
|
1018 |
|
@@ -1156,55 +1156,55 @@ msgstr "Clique aqui se você não for redirecionado automaticamente"
|
|
1156 |
msgid "The following information will be sent to the gateway"
|
1157 |
msgstr "As informações a seguir serão enviadas para o método"
|
1158 |
|
1159 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1160 |
msgid "Outside US"
|
1161 |
msgstr "Fora dos Estados Unidos"
|
1162 |
|
1163 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1164 |
msgid "January"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1168 |
msgid "February"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1172 |
msgid "March"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1176 |
msgid "April"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1180 |
msgid "May"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1184 |
msgid "June"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1188 |
msgid "July"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1192 |
msgid "August"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1196 |
msgid "September"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1200 |
msgid "October"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1204 |
msgid "November"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1208 |
msgid "December"
|
1209 |
msgstr ""
|
1210 |
|
@@ -1457,7 +1457,7 @@ msgstr "Página de checkout"
|
|
1457 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1458 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1459 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1460 |
-
#: modules/mycred-module-hooks.php:
|
1461 |
msgid "Title"
|
1462 |
msgstr "Título"
|
1463 |
|
@@ -1661,7 +1661,7 @@ msgid "not yet used"
|
|
1661 |
msgstr "ainda não utilizado"
|
1662 |
|
1663 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1664 |
-
#: php:
|
1665 |
msgid "Total"
|
1666 |
msgstr "Total"
|
1667 |
|
@@ -1841,7 +1841,7 @@ msgid "Apply Coupon"
|
|
1841 |
msgstr "Aplicar cupom"
|
1842 |
|
1843 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1844 |
-
#: notices/myCRED-addon-email-notices.php:
|
1845 |
msgid "Email Notice"
|
1846 |
msgstr "E-mail de aviso"
|
1847 |
|
@@ -2038,17 +2038,17 @@ msgstr ""
|
|
2038 |
"individualmente ao editar os e-mails."
|
2039 |
|
2040 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2041 |
-
#: notices/myCRED-addon-email-notices.php:
|
2042 |
msgid "Email Settings"
|
2043 |
msgstr "Configurações de e-mail"
|
2044 |
|
2045 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2046 |
-
#: notices/myCRED-addon-email-notices.php:
|
2047 |
msgid "Senders Name:"
|
2048 |
msgstr "Nome do remetente:"
|
2049 |
|
2050 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2051 |
-
#: notices/myCRED-addon-email-notices.php:
|
2052 |
msgid "Senders Email:"
|
2053 |
msgstr "E-mail do remetente:"
|
2054 |
|
@@ -2072,140 +2072,140 @@ msgstr "Estilo padrão do e-mail"
|
|
2072 |
msgid "Ignored if HTML is not allowed in emails."
|
2073 |
msgstr "Ignorar se HTML não é permitido nos e-mails."
|
2074 |
|
2075 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2076 |
-
#: notices/myCRED-addon-email-notices.php:
|
2077 |
msgid "Email Subject"
|
2078 |
msgstr "Assunto do e-mail"
|
2079 |
|
2080 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2081 |
msgid "Status"
|
2082 |
msgstr "Status"
|
2083 |
|
2084 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2085 |
msgid "Not Active"
|
2086 |
msgstr "Desativado"
|
2087 |
|
2088 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2089 |
#, php-format
|
2090 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2091 |
msgstr "Agendado:<br /><strong>%1$s</strong>"
|
2092 |
|
2093 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2094 |
msgid "Active"
|
2095 |
msgstr "Ativado"
|
2096 |
|
2097 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2098 |
#, php-format
|
2099 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2100 |
msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
|
2101 |
|
2102 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2103 |
msgid "Email is sent when"
|
2104 |
msgstr "O e-mail é enviado quando"
|
2105 |
|
2106 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2107 |
msgid "Missing instance for this notice!"
|
2108 |
msgstr "Falta instância para este aviso!"
|
2109 |
|
2110 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2111 |
-
#: notices/myCRED-addon-email-notices.php:
|
2112 |
-
#: addon-email-notices.php:
|
2113 |
msgid "Sent To"
|
2114 |
msgstr "Enviar para"
|
2115 |
|
2116 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2117 |
-
#: notices/myCRED-addon-email-notices.php:
|
2118 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2119 |
msgid "User"
|
2120 |
msgstr "Usuário"
|
2121 |
|
2122 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2123 |
-
#: notices/myCRED-addon-email-notices.php:
|
2124 |
msgid "Administrator"
|
2125 |
msgstr "Administrador"
|
2126 |
|
2127 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2128 |
msgid "Both Administrator and User"
|
2129 |
msgstr "Ambos, administrador e usuário"
|
2130 |
|
2131 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2132 |
msgid "Available Template Tags"
|
2133 |
msgstr "Modelos de etiquetas disponíveis"
|
2134 |
|
2135 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2136 |
msgid "Email Header"
|
2137 |
msgstr "Cabeçalho do e-mail"
|
2138 |
|
2139 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2140 |
msgid "Send this email notice when..."
|
2141 |
msgstr "Enviar este e-mail de aviso quando..."
|
2142 |
|
2143 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2144 |
msgid "Recipient:"
|
2145 |
msgstr "Destinatário:"
|
2146 |
|
2147 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2148 |
msgid "Both"
|
2149 |
msgstr "Ambos"
|
2150 |
|
2151 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2152 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2153 |
-
#: settings.php:
|
2154 |
-
#: module-settings.php:
|
2155 |
msgid "Label"
|
2156 |
msgstr "Rótulo"
|
2157 |
|
2158 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2159 |
msgid "Reply-To Email:"
|
2160 |
msgstr "E-mail do Responder para:"
|
2161 |
|
2162 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2163 |
msgid "Save"
|
2164 |
msgstr "Salvar"
|
2165 |
|
2166 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2167 |
msgid "CSS Styling"
|
2168 |
msgstr "Estilo CSS"
|
2169 |
|
2170 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2171 |
msgid "Site Related"
|
2172 |
msgstr "Site relacionado"
|
2173 |
|
2174 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2175 |
msgid "Your websites title"
|
2176 |
msgstr "Título do seu site"
|
2177 |
|
2178 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2179 |
msgid "Your websites address"
|
2180 |
msgstr "Endereço do seu site"
|
2181 |
|
2182 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2183 |
msgid "Your websites tagline (description)"
|
2184 |
msgstr "Slogan do seu site (descrição)"
|
2185 |
|
2186 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2187 |
msgid "Your websites admin email"
|
2188 |
msgstr "E-mail de administração do seu site"
|
2189 |
|
2190 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2191 |
msgid "Total number of blog members"
|
2192 |
msgstr "Número total de usuários do blog"
|
2193 |
|
2194 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2195 |
-
#: notices/myCRED-addon-email-notices.php:
|
2196 |
-
#: addon-email-notices.php:
|
2197 |
msgid "Email Notice Updated."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2201 |
msgid "Email Notice Activated"
|
2202 |
msgstr "E-mail de aviso ativado"
|
2203 |
|
2204 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2205 |
msgid "Email Notice Saved"
|
2206 |
msgstr "E-mail de aviso salvo"
|
2207 |
|
2208 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2209 |
msgid ""
|
2210 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2211 |
"are not yet ready to use this email notice!"
|
@@ -2213,28 +2213,28 @@ msgstr ""
|
|
2213 |
"Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
|
2214 |
"Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
|
2215 |
|
2216 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2217 |
#, php-format
|
2218 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2219 |
msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
|
2220 |
|
2221 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2222 |
msgid "This email notice is active."
|
2223 |
msgstr "Este e-mail de aviso está ativo."
|
2224 |
|
2225 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2226 |
msgid "Settings saved."
|
2227 |
msgstr "Configurações salvas"
|
2228 |
|
2229 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2230 |
msgid "Unsubscribe"
|
2231 |
msgstr "Cancelar assinatura"
|
2232 |
|
2233 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2234 |
msgid "There are no email notifications yet."
|
2235 |
msgstr "Não há notificações de e-mail ainda."
|
2236 |
|
2237 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2238 |
msgid "Save Changes"
|
2239 |
msgstr "Salvar alterações"
|
2240 |
|
@@ -2284,7 +2284,7 @@ msgstr "Pago"
|
|
2284 |
|
2285 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2286 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2287 |
-
#: 52 ../includes/mycred-network.php:53
|
2288 |
msgid "myCRED"
|
2289 |
msgstr "Tipo de ponto"
|
2290 |
|
@@ -2365,7 +2365,7 @@ msgstr "Quanto é 1 %_singular% no valor em %currency%?"
|
|
2365 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2366 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2367 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2368 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2369 |
msgid "Exchange Rate"
|
2370 |
msgstr "Taxa de câmbio"
|
2371 |
|
@@ -2669,7 +2669,7 @@ msgstr "Título para exibir nos recibos e registros"
|
|
2669 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2670 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2671 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2672 |
-
#: sell-content.php:
|
2673 |
msgid "Button Label"
|
2674 |
msgstr "Rótulo do botão"
|
2675 |
|
@@ -2683,7 +2683,7 @@ msgstr "Botão pagar"
|
|
2683 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2684 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2685 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2686 |
-
#: sell-content.php:
|
2687 |
msgid "Price"
|
2688 |
msgstr "Preço"
|
2689 |
|
@@ -2790,8 +2790,8 @@ msgid "Reject"
|
|
2790 |
msgstr "Rjeitar"
|
2791 |
|
2792 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2793 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2794 |
-
#: modules/mycred-module-settings.php:
|
2795 |
msgid "Delete"
|
2796 |
msgstr "Deletar"
|
2797 |
|
@@ -2917,7 +2917,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2917 |
msgstr "Use o estilo CSS incluído para as notificações."
|
2918 |
|
2919 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2920 |
-
#: module-buddypress.php:
|
2921 |
msgid "Template"
|
2922 |
msgstr "Modelo"
|
2923 |
|
@@ -3199,7 +3199,7 @@ msgstr ""
|
|
3199 |
"e / ou pública se os ranks forem \"Public\""
|
3200 |
|
3201 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3202 |
-
#: php:
|
3203 |
msgid "Do not show."
|
3204 |
msgstr "Não exibir."
|
3205 |
|
@@ -3249,9 +3249,9 @@ msgid "No users found with this rank"
|
|
3249 |
msgstr "Nenhum usuário encontrado com este rank"
|
3250 |
|
3251 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3252 |
-
#: shortcodes.php:
|
3253 |
-
#: shortcodes.php:
|
3254 |
-
#: shortcodes.php:
|
3255 |
msgid "error"
|
3256 |
msgstr "erro"
|
3257 |
|
@@ -3378,38 +3378,38 @@ msgstr "Modelo de registro para vendas"
|
|
3378 |
msgid "%s Sell This"
|
3379 |
msgstr "%s vender isso"
|
3380 |
|
3381 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3382 |
#, php-format
|
3383 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3384 |
msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
|
3385 |
|
3386 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3387 |
msgid "Setup add-on"
|
3388 |
msgstr "Configurar add-on"
|
3389 |
|
3390 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3391 |
msgid "Lets do it"
|
3392 |
msgstr "Vamos fazer isso"
|
3393 |
|
3394 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3395 |
#, php-format
|
3396 |
msgid "Enable sale of this %s"
|
3397 |
msgstr "Habilitar venda do %s"
|
3398 |
|
3399 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3400 |
msgid "Purchase expires after"
|
3401 |
msgstr "Compras expiram depois"
|
3402 |
|
3403 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3404 |
msgid "Thank you for your purchase!"
|
3405 |
msgstr "Obrigado pela sua compra!"
|
3406 |
|
3407 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3408 |
-
#: content/myCRED-addon-sell-content.php:
|
3409 |
msgid "The following content is set for sale:"
|
3410 |
msgstr "O conteúdo a seguir está definido para a venda:"
|
3411 |
|
3412 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3413 |
msgid "Purchased"
|
3414 |
msgstr "Comprado"
|
3415 |
|
@@ -3422,7 +3422,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3422 |
msgstr "Você excedeu o %limite% limite de transferência."
|
3423 |
|
3424 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3425 |
-
#: php:
|
3426 |
msgid "Transfer"
|
3427 |
msgstr "Transferência"
|
3428 |
|
@@ -3461,7 +3461,7 @@ msgstr ""
|
|
3461 |
"permitida antes que a configuração seja concluída!"
|
3462 |
|
3463 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3464 |
-
#: php:
|
3465 |
msgid "Insufficient Funds. Please try a lower amount."
|
3466 |
msgstr ""
|
3467 |
|
@@ -3842,282 +3842,282 @@ msgstr "Resultados da busca"
|
|
3842 |
msgid "My Entire Log"
|
3843 |
msgstr "Meu registro de entrada"
|
3844 |
|
3845 |
-
#: ../includes/mycred-functions.php:
|
3846 |
msgid "ref empty"
|
3847 |
msgstr "Referência vazia"
|
3848 |
|
3849 |
-
#: ../includes/mycred-functions.php:
|
3850 |
msgid "incorrect user id format"
|
3851 |
msgstr "formato do id do usuário incorreto"
|
3852 |
|
3853 |
-
#: ../includes/mycred-functions.php:
|
3854 |
msgid "incorrect unix timestamp (from):"
|
3855 |
msgstr "registro do tempo do unix incorreto (a partir de):"
|
3856 |
|
3857 |
-
#: ../includes/mycred-functions.php:
|
3858 |
msgid "incorrect unix timestamp (to):"
|
3859 |
msgstr "registro do tempo do unix incorreto (para):"
|
3860 |
|
3861 |
-
#: ../includes/mycred-functions.php:
|
3862 |
msgid "Website Registration"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: ../includes/mycred-functions.php:
|
3866 |
msgid "Website Visit"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: ../includes/mycred-functions.php:
|
3870 |
msgid "Viewing Content (Member)"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: ../includes/mycred-functions.php:
|
3874 |
msgid "Viewing Content (Author)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: ../includes/mycred-functions.php:
|
3878 |
msgid "Logging in"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: ../includes/mycred-functions.php:
|
3882 |
msgid "Publishing Content"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: ../includes/mycred-functions.php:
|
3886 |
msgid "Approved Comment"
|
3887 |
msgstr "Comentário aprovado"
|
3888 |
|
3889 |
-
#: ../includes/mycred-functions.php:
|
3890 |
msgid "Unapproved Comment"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: ../includes/mycred-functions.php:
|
3894 |
msgid "SPAM Comment"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: ../includes/mycred-functions.php:
|
3898 |
msgid "Deleted Comment"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: ../includes/mycred-functions.php:
|
3902 |
msgid "Link Click"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: ../includes/mycred-functions.php:
|
3906 |
msgid "Watching Video"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: ../includes/mycred-functions.php:
|
3910 |
msgid "Visitor Referral"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: ../includes/mycred-functions.php:
|
3914 |
msgid "Signup Referral"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: ../includes/mycred-functions.php:
|
3918 |
msgid "New Profile Update"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: ../includes/mycred-functions.php:
|
3922 |
msgid "Avatar Upload"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: ../includes/mycred-functions.php:
|
3926 |
msgid "New Friendship"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: ../includes/mycred-functions.php:
|
3930 |
msgid "Ended Friendship"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: ../includes/mycred-functions.php:
|
3934 |
msgid "New Profile Comment"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: ../includes/mycred-functions.php:
|
3938 |
msgid "Profile Comment Deletion"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: ../includes/mycred-functions.php:
|
3942 |
msgid "New Message"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: ../includes/mycred-functions.php:
|
3946 |
msgid "Sending Gift"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: ../includes/mycred-functions.php:
|
3950 |
msgid "New Group"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: ../includes/mycred-functions.php:
|
3954 |
msgid "Deleted Group"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: ../includes/mycred-functions.php:
|
3958 |
msgid "New Group Forum Topic"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: ../includes/mycred-functions.php:
|
3962 |
msgid "Edit Group Forum Topic"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: ../includes/mycred-functions.php:
|
3966 |
msgid "New Group Forum Post"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: ../includes/mycred-functions.php:
|
3970 |
msgid "Edit Group Forum Post"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: ../includes/mycred-functions.php:
|
3974 |
msgid "Joining Group"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: ../includes/mycred-functions.php:
|
3978 |
msgid "Leaving Group"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: ../includes/mycred-functions.php:
|
3982 |
msgid "New Group Avatar"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: ../includes/mycred-functions.php:
|
3986 |
msgid "New Group Comment"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: ../includes/mycred-functions.php:
|
3990 |
#: php:166
|
3991 |
msgid "Photo Upload"
|
3992 |
msgstr "Upload de foto"
|
3993 |
|
3994 |
-
#: ../includes/mycred-functions.php:
|
3995 |
#: php:176
|
3996 |
msgid "Video Upload"
|
3997 |
msgstr "Upload de vídeo"
|
3998 |
|
3999 |
-
#: ../includes/mycred-functions.php:
|
4000 |
#: php:186
|
4001 |
msgid "Music Upload"
|
4002 |
msgstr "Upload de música"
|
4003 |
|
4004 |
-
#: ../includes/mycred-functions.php:
|
4005 |
msgid "New Link"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: ../includes/mycred-functions.php:
|
4009 |
msgid "Link Voting"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: ../includes/mycred-functions.php:
|
4013 |
msgid "Link Update"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: ../includes/mycred-functions.php:
|
4017 |
msgid "New Forum (bbPress)"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: ../includes/mycred-functions.php:
|
4021 |
msgid "New Forum Topic (bbPress)"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: ../includes/mycred-functions.php:
|
4025 |
msgid "Favorited Topic (bbPress)"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: ../includes/mycred-functions.php:
|
4029 |
msgid "New Topic Reply (bbPress)"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: ../includes/mycred-functions.php:
|
4033 |
msgid "Form Submission (Contact Form 7)"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: ../includes/mycred-functions.php:
|
4037 |
msgid "Form Submission (Gravity Form)"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: ../includes/mycred-functions.php:
|
4041 |
msgid "New Forum Topic (SimplePress)"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: ../includes/mycred-functions.php:
|
4045 |
msgid "New Forum Post (SimplePress)"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: ../includes/mycred-functions.php:
|
4049 |
msgid "Poll Voting"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: ../includes/mycred-functions.php:
|
4053 |
msgid "Sending an Invite"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: ../includes/mycred-functions.php:
|
4057 |
msgid "Accepting an Invite"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: ../includes/mycred-functions.php:
|
4061 |
msgid "Banking Payout"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: ../includes/mycred-functions.php:
|
4065 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: ../includes/mycred-functions.php:
|
4069 |
msgid "buyCRED Purchase (Skrill)"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: ../includes/mycred-functions.php:
|
4073 |
msgid "buyCRED Purchase (Zombaio)"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: ../includes/mycred-functions.php:
|
4077 |
msgid "buyCRED Purchase (NETBilling)"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: ../includes/mycred-functions.php:
|
4081 |
msgid "buyCRED Purchase (BitPay)"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: ../includes/mycred-functions.php:
|
4085 |
msgid "Coupon Purchase"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: ../includes/mycred-functions.php:
|
4089 |
msgid "Store Purchase (WooCommerce)"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: ../includes/mycred-functions.php:
|
4093 |
msgid "Store Purchase (MarketPress)"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: ../includes/mycred-functions.php:
|
4097 |
msgid "Store Purchase (WP E-Commerce)"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: ../includes/mycred-functions.php:
|
4101 |
msgid "Event Payment (Event Espresso)"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: ../includes/mycred-functions.php:
|
4105 |
msgid "Event Sale (Event Espresso)"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: ../includes/mycred-functions.php:
|
4109 |
msgid "Event Payment (Events Manager)"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: ../includes/mycred-functions.php:
|
4113 |
msgid "Event Sale (Events Manager)"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: ../includes/mycred-functions.php:
|
4117 |
msgid "Content Purchase / Sale"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: ../includes/mycred-functions.php:
|
4121 |
msgid "Manual Adjustment by Admin"
|
4122 |
msgstr ""
|
4123 |
|
@@ -4165,7 +4165,7 @@ msgstr "myCRED precisa do PHP 5.2.4 ou superior. Versão detectada:"
|
|
4165 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4166 |
msgstr "myCRED precisa de SQL 5.0 ou superior. Versão detectada:"
|
4167 |
|
4168 |
-
#: ../includes/mycred-install.php:
|
4169 |
msgid ""
|
4170 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4171 |
"check your PHP configuration or contact your host and ask them to enable it "
|
@@ -4175,7 +4175,7 @@ msgstr ""
|
|
4175 |
" verifique a configuração do PHP ou entre em contato com seu provedor de "
|
4176 |
"hospedagem e peça para habilitá-lo para você!"
|
4177 |
|
4178 |
-
#: ../includes/mycred-install.php:
|
4179 |
msgid ""
|
4180 |
"Sorry but your WordPress installation does not reach the minimum "
|
4181 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4183,28 +4183,28 @@ msgstr ""
|
|
4183 |
"Desculpe, mas sua instalação WordPress não atende os requisitos mínimos para "
|
4184 |
"execução do myCRED. Os seguintes erros foram identificados:"
|
4185 |
|
4186 |
-
#: ../includes/mycred-install.php:
|
4187 |
msgid "myCRED needs your attention."
|
4188 |
msgstr "myCRED precisa da sua atenção."
|
4189 |
|
4190 |
-
#: ../includes/mycred-install.php:
|
4191 |
msgid "Run Setup"
|
4192 |
msgstr "Executar instalação"
|
4193 |
|
4194 |
-
#: ../includes/mycred-install.php:
|
4195 |
msgid "myCRED Setup"
|
4196 |
msgstr "Instalação do myCRED"
|
4197 |
|
4198 |
-
#: ../includes/mycred-install.php:
|
4199 |
#, php-format
|
4200 |
msgid "%s Setup"
|
4201 |
msgstr "Instalação do %s"
|
4202 |
|
4203 |
-
#: ../includes/mycred-install.php:
|
4204 |
msgid "Step"
|
4205 |
msgstr "Passo"
|
4206 |
|
4207 |
-
#: ../includes/mycred-install.php:
|
4208 |
msgid ""
|
4209 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4210 |
"points format, layout and security settings."
|
@@ -4212,75 +4212,75 @@ msgstr ""
|
|
4212 |
"Clique em \"Begin Setup\" para instalar o myCRED. Você será capaz de "
|
4213 |
"selecionar o formato de seus pontos, modelo e configurações de segurança."
|
4214 |
|
4215 |
-
#: ../includes/mycred-install.php:
|
4216 |
msgid "Begin Setup"
|
4217 |
msgstr "Iniciar Instalação"
|
4218 |
|
4219 |
-
#: ../includes/mycred-install.php:
|
4220 |
msgid "Select the format you want to use for your points."
|
4221 |
msgstr "Selecione o formato que deseja usar para os seus pontos."
|
4222 |
|
4223 |
-
#: ../includes/mycred-install.php:
|
4224 |
msgid "Format"
|
4225 |
msgstr "Formato"
|
4226 |
|
4227 |
-
#: ../includes/mycred-install.php:
|
4228 |
msgid "Separators"
|
4229 |
msgstr "Separadores"
|
4230 |
|
4231 |
-
#: ../includes/mycred-install.php:
|
4232 |
msgid "Decimals"
|
4233 |
msgstr "Decimais"
|
4234 |
|
4235 |
-
#: ../includes/mycred-install.php:
|
4236 |
msgid "Use zero for no decimals."
|
4237 |
msgstr "Insira zero para não utilizar decimais."
|
4238 |
|
4239 |
-
#: ../includes/mycred-install.php:
|
4240 |
msgid "Presentation"
|
4241 |
msgstr "Apresentação"
|
4242 |
|
4243 |
-
#: ../includes/mycred-install.php:
|
4244 |
msgid "Name (Singular)"
|
4245 |
msgstr "Nome (Singular)"
|
4246 |
|
4247 |
-
#: ../includes/mycred-install.php:
|
4248 |
msgid "Name (Plural)"
|
4249 |
msgstr "Nome (Plural)"
|
4250 |
|
4251 |
-
#: ../includes/mycred-install.php:
|
4252 |
msgid "Prefix"
|
4253 |
msgstr "Prefixo"
|
4254 |
|
4255 |
-
#: ../includes/mycred-install.php:
|
4256 |
msgid "Suffix"
|
4257 |
msgstr "Sufixo"
|
4258 |
|
4259 |
-
#: ../includes/mycred-install.php:
|
4260 |
msgid "Cancel Setup"
|
4261 |
msgstr "Cancelar instalação"
|
4262 |
|
4263 |
-
#: ../includes/mycred-install.php:
|
4264 |
msgid "Next"
|
4265 |
msgstr "Próximo"
|
4266 |
|
4267 |
-
#: ../includes/mycred-install.php:
|
4268 |
msgid "Security"
|
4269 |
msgstr "Segurança"
|
4270 |
|
4271 |
-
#: ../includes/mycred-install.php:
|
4272 |
msgid "Edit Settings Capability"
|
4273 |
msgstr "Editar configurações de capacidade"
|
4274 |
|
4275 |
-
#: ../includes/mycred-install.php:
|
4276 |
msgid "Edit Users %plural% Capability"
|
4277 |
msgstr "Editar a capacidade de %plural% dos usuários"
|
4278 |
|
4279 |
-
#: ../includes/mycred-install.php:
|
4280 |
msgid "Maximum %plural% payouts"
|
4281 |
msgstr "Máximo de %plural% pagos"
|
4282 |
|
4283 |
-
#: ../includes/mycred-install.php:
|
4284 |
msgid ""
|
4285 |
"As an added security, you can set the maximum amount a user can gain or "
|
4286 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4292,39 +4292,39 @@ msgstr ""
|
|
4292 |
"certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
|
4293 |
"transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
|
4294 |
|
4295 |
-
#: ../includes/mycred-install.php:
|
4296 |
msgid "Excludes"
|
4297 |
msgstr "Excluir"
|
4298 |
|
4299 |
-
#: ../includes/mycred-install.php:
|
4300 |
msgid "Exclude those who can \"Edit Settings\"."
|
4301 |
msgstr "Excluir aqueles que podem \"Edit Settings\"."
|
4302 |
|
4303 |
-
#: ../includes/mycred-install.php:
|
4304 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4305 |
msgstr "Excluir aqueles que podem \"Edit Users %plural%\"."
|
4306 |
|
4307 |
-
#: ../includes/mycred-install.php:
|
4308 |
msgid "Exclude the following user IDs:"
|
4309 |
msgstr "Excluir os seguintes IDs de usuário:"
|
4310 |
|
4311 |
-
#: ../includes/mycred-install.php:
|
4312 |
msgid "User Deletions"
|
4313 |
msgstr "Usuário excluídos"
|
4314 |
|
4315 |
-
#: ../includes/mycred-install.php:
|
4316 |
msgid "Delete log entries when user is deleted."
|
4317 |
msgstr "Excluir registro de entradas quando o usuário for excluído."
|
4318 |
|
4319 |
-
#: ../includes/mycred-install.php:
|
4320 |
msgid "Ready"
|
4321 |
msgstr "Pronto"
|
4322 |
|
4323 |
-
#: ../includes/mycred-install.php:
|
4324 |
msgid "Almost done! Click the button below to finish this setup."
|
4325 |
msgstr "Quase pronto! Clique no botão abaixo para finalizar a instalação."
|
4326 |
|
4327 |
-
#: ../includes/mycred-install.php:
|
4328 |
msgid "Install & Run"
|
4329 |
msgstr "Instalar e Funcionar"
|
4330 |
|
@@ -4337,29 +4337,29 @@ msgstr "Mostrando %d %s"
|
|
4337 |
msgid "entry"
|
4338 |
msgstr "entrada"
|
4339 |
|
4340 |
-
#: ../includes/mycred-log.php:
|
4341 |
msgid "Go to the first page"
|
4342 |
msgstr "Ir para a primeira página"
|
4343 |
|
4344 |
-
#: ../includes/mycred-log.php:
|
4345 |
msgid "Go to the previous page"
|
4346 |
msgstr "Ir para a página anteiror"
|
4347 |
|
4348 |
-
#: ../includes/mycred-log.php:
|
4349 |
msgid "Current page"
|
4350 |
msgstr "Página atual"
|
4351 |
|
4352 |
-
#: ../includes/mycred-log.php:
|
4353 |
#, php-format
|
4354 |
msgctxt "paging"
|
4355 |
msgid "%1$s of %2$s"
|
4356 |
msgstr "%1$s de %2$s"
|
4357 |
|
4358 |
-
#: ../includes/mycred-log.php:
|
4359 |
msgid "Go to the next page"
|
4360 |
msgstr "Ir para a próxima página"
|
4361 |
|
4362 |
-
#: ../includes/mycred-log.php:
|
4363 |
msgid "Go to the last page"
|
4364 |
msgstr "Ir para a última página"
|
4365 |
|
@@ -4367,7 +4367,7 @@ msgstr "Ir para a última página"
|
|
4367 |
msgid "Show all references"
|
4368 |
msgstr "Mostrar todas as referências"
|
4369 |
|
4370 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4371 |
msgid "User ID"
|
4372 |
msgstr "ID do usuário"
|
4373 |
|
@@ -4597,92 +4597,92 @@ msgstr ""
|
|
4597 |
"Lembre-se de desativar quando não utilizado para evitar chamadas maliciosas "
|
4598 |
"de aprendizado sobre a configuração!"
|
4599 |
|
4600 |
-
#: ../includes/mycred-shortcodes.php:
|
4601 |
msgid "Leaderboard is empty."
|
4602 |
msgstr "O ranking está vazio."
|
4603 |
|
4604 |
-
#: ../includes/mycred-shortcodes.php:
|
4605 |
msgid "Amount missing!"
|
4606 |
msgstr "Quantia ausente!"
|
4607 |
|
4608 |
-
#: ../includes/mycred-shortcodes.php:
|
4609 |
msgid "Log Template Missing!"
|
4610 |
msgstr "Modelo de registro ausente!"
|
4611 |
|
4612 |
-
#: ../includes/mycred-shortcodes.php:
|
4613 |
msgid "Anchor missing URL!"
|
4614 |
msgstr "Ancoras de URL ausentes!"
|
4615 |
|
4616 |
-
#: ../includes/mycred-shortcodes.php:
|
4617 |
msgid "User ID missing for recipient."
|
4618 |
msgstr "ID do usuário ausente para o destinatário."
|
4619 |
|
4620 |
-
#: ../includes/mycred-shortcodes.php:
|
4621 |
msgid "Sent"
|
4622 |
msgstr "Enviar"
|
4623 |
|
4624 |
-
#: ../includes/mycred-shortcodes.php:
|
4625 |
msgid "Error - Try Again"
|
4626 |
msgstr "Erro - Tente novamente"
|
4627 |
|
4628 |
-
#: ../includes/mycred-shortcodes.php:
|
4629 |
msgid "A video ID is required for this shortcode"
|
4630 |
msgstr "O ID do vídeo é obrigatório para este shortcode"
|
4631 |
|
4632 |
-
#: ../includes/mycred-shortcodes.php:
|
4633 |
msgid "Point types not found."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: ../includes/mycred-shortcodes.php:
|
4637 |
-
#: includes/mycred-shortcodes.php:
|
4638 |
#, php-format
|
4639 |
msgid "You are excluded from using %s."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: ../includes/mycred-shortcodes.php:
|
4643 |
msgid "Your balance is too low to use this feature."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: ../includes/mycred-shortcodes.php:
|
4647 |
#, php-format
|
4648 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: ../includes/mycred-shortcodes.php:
|
4652 |
#, php-format
|
4653 |
msgid "Your current %s balance"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: ../includes/mycred-shortcodes.php:
|
4657 |
#, php-format
|
4658 |
msgid "Minimum %s"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: ../includes/mycred-shortcodes.php:
|
4662 |
#, php-format
|
4663 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: ../includes/mycred-shortcodes.php:
|
4667 |
msgid "Exchange"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: ../includes/mycred-shortcodes.php:
|
4671 |
#, php-format
|
4672 |
msgid "You must exchange at least %s!"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: ../includes/mycred-shortcodes.php:
|
4676 |
#, php-format
|
4677 |
msgid "Exchange from %s"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: ../includes/mycred-shortcodes.php:
|
4681 |
#, php-format
|
4682 |
msgid "Exchange to %s"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: ../includes/mycred-shortcodes.php:
|
4686 |
#, php-format
|
4687 |
msgid "You have successfully exchanged %s into %s."
|
4688 |
msgstr ""
|
@@ -4701,7 +4701,7 @@ msgstr "(%s) Meu saldo"
|
|
4701 |
msgid "My Balance"
|
4702 |
msgstr "Meu saldo"
|
4703 |
|
4704 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4705 |
msgid "%plural% History"
|
4706 |
msgstr "Histórico de %plural%"
|
4707 |
|
@@ -5132,64 +5132,64 @@ msgstr "Histórico do %s"
|
|
5132 |
msgid "Current balance"
|
5133 |
msgstr "Saldo atual"
|
5134 |
|
5135 |
-
#: ../modules/mycred-module-buddypress.php:
|
5136 |
msgid "Go"
|
5137 |
msgstr "Ir"
|
5138 |
|
5139 |
-
#: ../modules/mycred-module-buddypress.php:
|
5140 |
msgid "Show in Profile"
|
5141 |
msgstr "Mostrar no perfil"
|
5142 |
|
5143 |
-
#: ../modules/mycred-module-buddypress.php:
|
5144 |
#, php-format
|
5145 |
msgid "%singular% Balance"
|
5146 |
msgstr "Saldo de %singular%"
|
5147 |
|
5148 |
-
#: ../modules/mycred-module-buddypress.php:
|
5149 |
#, php-format
|
5150 |
msgid "Members and visitors can other members %_singular% balance."
|
5151 |
msgstr "Membros e visitantes podem visualizar o saldo de %_singular% dos membros."
|
5152 |
|
5153 |
-
#: ../modules/mycred-module-buddypress.php:
|
5154 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5155 |
msgstr ""
|
5156 |
"Note que você também pode usar %rank_logo% para mostrar uma imagem de "
|
5157 |
"Classificação."
|
5158 |
|
5159 |
-
#: ../modules/mycred-module-buddypress.php:
|
5160 |
msgid "Members can view each others %_plural% history."
|
5161 |
msgstr "Membros podem visualizar o histórico de %_plural% de outros membros."
|
5162 |
|
5163 |
-
#: ../modules/mycred-module-buddypress.php:
|
5164 |
msgid "Menu Title"
|
5165 |
msgstr "Título do menu"
|
5166 |
|
5167 |
-
#: ../modules/mycred-module-buddypress.php:
|
5168 |
msgid "Title shown to me"
|
5169 |
msgstr "Título exibido para mim"
|
5170 |
|
5171 |
-
#: ../modules/mycred-module-buddypress.php:
|
5172 |
#, php-format
|
5173 |
msgid "Title shown to others. Use %s to show the first name."
|
5174 |
msgstr "Título exibido para os outros. Use %s para mostrar o primeiro nome."
|
5175 |
|
5176 |
-
#: ../modules/mycred-module-buddypress.php:
|
5177 |
msgid "Menu Position"
|
5178 |
msgstr "Posição no menu"
|
5179 |
|
5180 |
-
#: ../modules/mycred-module-buddypress.php:
|
5181 |
msgid "Current menu positions:"
|
5182 |
msgstr "Posição atual no menu:"
|
5183 |
|
5184 |
-
#: ../modules/mycred-module-buddypress.php:
|
5185 |
msgid "History URL slug"
|
5186 |
msgstr "URL de caminho do histórico"
|
5187 |
|
5188 |
-
#: ../modules/mycred-module-buddypress.php:
|
5189 |
msgid "Do not use empty spaces!"
|
5190 |
msgstr "Não utilize espaços em branco!"
|
5191 |
|
5192 |
-
#: ../modules/mycred-module-buddypress.php:
|
5193 |
msgid "Number of history entries to show"
|
5194 |
msgstr "Número de entradas no histórico à exibir"
|
5195 |
|
@@ -5329,8 +5329,8 @@ msgstr ""
|
|
5329 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5330 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5331 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5332 |
-
#:
|
5333 |
-
#: php:
|
5334 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5335 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5336 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5391,8 +5391,8 @@ msgstr ""
|
|
5391 |
msgid "%plural% for viewing %s"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5395 |
-
#: ../modules/mycred-module-hooks.php:
|
5396 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5397 |
msgid "Limit"
|
5398 |
msgstr "Limite"
|
@@ -5484,7 +5484,7 @@ msgstr ""
|
|
5484 |
msgid "Custom tags: %url%, %title% or %id%."
|
5485 |
msgstr "Etiquetas personalizadas: %url%, %title% ou %id%."
|
5486 |
|
5487 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5488 |
msgid "Note!"
|
5489 |
msgstr "Nota!"
|
5490 |
|
@@ -5500,44 +5500,44 @@ msgstr ""
|
|
5500 |
"Se você estiver usando esse recurso para \"sharing\" conteúdo, é recomendável "
|
5501 |
"que você limite por ID."
|
5502 |
|
5503 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5504 |
msgid "Available Shortcode"
|
5505 |
msgstr "Shortcode disponível"
|
5506 |
|
5507 |
-
#: ../modules/mycred-module-hooks.php:
|
5508 |
msgid "Amount to award for viewing videos."
|
5509 |
msgstr "Quantia de recompensa por visualizar vídeos."
|
5510 |
|
5511 |
-
#: ../modules/mycred-module-hooks.php:
|
5512 |
msgid "Award Logic"
|
5513 |
msgstr "Lógica de recompensa"
|
5514 |
|
5515 |
-
#: ../modules/mycred-module-hooks.php:
|
5516 |
#, php-format
|
5517 |
msgid "Select when %_plural% should be awarded or deducted."
|
5518 |
msgstr "Selecione quando %_plural% devem ser recompensados ou descontados."
|
5519 |
|
5520 |
-
#: ../modules/mycred-module-hooks.php:
|
5521 |
msgid "Play - As soon as video starts playing."
|
5522 |
msgstr "Play - Assim que o vídeo começa a ser reproduzido."
|
5523 |
|
5524 |
-
#: ../modules/mycred-module-hooks.php:
|
5525 |
msgid "Full - First when the entire video has played."
|
5526 |
msgstr "Completo - Quando o vídeo inteiro foi reproduzido."
|
5527 |
|
5528 |
-
#: ../modules/mycred-module-hooks.php:
|
5529 |
msgid "Interval - For each x number of seconds watched."
|
5530 |
msgstr "Intervalo - Para cada número X de segundos assistidos."
|
5531 |
|
5532 |
-
#: ../modules/mycred-module-hooks.php:
|
5533 |
msgid "Number of seconds"
|
5534 |
msgstr "Número de segundos"
|
5535 |
|
5536 |
-
#: ../modules/mycred-module-hooks.php:
|
5537 |
msgid "Leniency"
|
5538 |
msgstr "Clemência"
|
5539 |
|
5540 |
-
#: ../modules/mycred-module-hooks.php:
|
5541 |
msgid ""
|
5542 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5543 |
"length."
|
@@ -5545,7 +5545,7 @@ msgstr ""
|
|
5545 |
"A porcentagem máxima de visualizações dos usuários de um filme pode ser "
|
5546 |
"diferente da duração real."
|
5547 |
|
5548 |
-
#: ../modules/mycred-module-hooks.php:
|
5549 |
msgid ""
|
5550 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5551 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5555,73 +5555,81 @@ msgstr ""
|
|
5555 |
"usuário assiste a um filme e, por vezes, alguns segundos podem cair do "
|
5556 |
"contador devido a buffer ou reprodução de erros."
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-hooks.php:
|
5559 |
msgid "Affiliate Program"
|
5560 |
msgstr "Programa de afiliado"
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-hooks.php:
|
5563 |
msgid "Per Day"
|
5564 |
msgstr "Por dia"
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-hooks.php:
|
5567 |
msgid "Link"
|
5568 |
msgstr "Link"
|
5569 |
|
5570 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5571 |
msgid "Referring Visitors"
|
5572 |
msgstr "Visitantes por referência"
|
5573 |
|
5574 |
-
#: ../modules/mycred-module-hooks.php:
|
5575 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5576 |
msgstr "O número de referências que cada membro pode fazer. Use zero para ilimitada."
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-hooks.php:
|
5579 |
msgid "Referring Signups"
|
5580 |
msgstr "Registros por referência"
|
5581 |
|
5582 |
-
#: ../modules/mycred-module-hooks.php:
|
5583 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5584 |
msgstr "Os visitantes que desativaram os cookies não serão premiados com %_plural%."
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-hooks.php:
|
5587 |
msgid "Registrations are disabled."
|
5588 |
msgstr "As inscrições estão desativadas."
|
5589 |
|
5590 |
-
#: ../modules/mycred-module-hooks.php:
|
5591 |
msgid "Referral Links"
|
5592 |
msgstr "Links de referência"
|
5593 |
|
5594 |
-
#: ../modules/mycred-module-hooks.php:
|
5595 |
msgid "Assign numeric referral IDs to each user."
|
5596 |
msgstr "Atribuir IDs numéricos de referência para cada usuário."
|
5597 |
|
5598 |
-
#: ../modules/mycred-module-hooks.php:
|
5599 |
msgid "Example"
|
5600 |
msgstr "Exemplo"
|
5601 |
|
5602 |
-
#: ../modules/mycred-module-hooks.php:
|
5603 |
msgid "Assign usernames as IDs for each user."
|
5604 |
msgstr "Atribuir nome de usuário como IDs para cada usuário."
|
5605 |
|
5606 |
-
#: ../modules/mycred-module-hooks.php:
|
5607 |
msgid "IP Limit"
|
5608 |
msgstr "Limite de IP"
|
5609 |
|
5610 |
-
#: ../modules/mycred-module-hooks.php:
|
5611 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5612 |
msgstr ""
|
5613 |
"O número de vezes que cada endereço IP dá de %_plural%. Use zero para "
|
5614 |
"ilimitado."
|
5615 |
|
5616 |
-
#: ../modules/mycred-module-hooks.php:
|
5617 |
msgid "BuddyPress Profile"
|
5618 |
msgstr "Perfil do BuddyPress"
|
5619 |
|
5620 |
-
#: ../modules/mycred-module-hooks.php:
|
5621 |
msgid "Insert Link in users Profile"
|
5622 |
msgstr "Inserir link no perfil do usuário"
|
5623 |
|
5624 |
-
#: ../modules/mycred-module-hooks.php:
|
5625 |
msgid ""
|
5626 |
"Option to inser the referral link in users profiles. Links will only be "
|
5627 |
"visible to users viewing their own profiles or administrators."
|
@@ -5630,23 +5638,23 @@ msgstr ""
|
|
5630 |
"somente serão visíveis para usuários que visualizam o seu próprio perfil ou "
|
5631 |
"administradores."
|
5632 |
|
5633 |
-
#: ../modules/mycred-module-hooks.php:
|
5634 |
msgid "Leave empty to hide."
|
5635 |
msgstr "Deixe em brando para esconder."
|
5636 |
|
5637 |
-
#: ../modules/mycred-module-hooks.php:
|
5638 |
msgid "Description"
|
5639 |
msgstr "Descrição"
|
5640 |
|
5641 |
-
#: ../modules/mycred-module-hooks.php:
|
5642 |
msgid "Optional description to insert under the link."
|
5643 |
msgstr "Descrição opcional para inserir abaixo do link."
|
5644 |
|
5645 |
-
#: ../modules/mycred-module-hooks.php:
|
5646 |
msgid "Profile Positioning"
|
5647 |
msgstr "Posicionamento de perfil "
|
5648 |
|
5649 |
-
#: ../modules/mycred-module-hooks.php:
|
5650 |
msgid ""
|
5651 |
"You can move around the referral link on your users profile by changing the "
|
5652 |
"position. Increase to move up, decrease to move down."
|
@@ -5654,18 +5662,18 @@ msgstr ""
|
|
5654 |
"Você pode mover o link de referência no seu perfil de usuário, alterando a "
|
5655 |
"posição. Aumente para subir, diminua para mover para baixo."
|
5656 |
|
5657 |
-
#: ../modules/mycred-module-hooks.php:
|
5658 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5659 |
msgstr ""
|
5660 |
"Você não pode mover o link de referência acima da \"Base\" de detalhes de "
|
5661 |
"perfil do usuário!"
|
5662 |
|
5663 |
-
#: ../modules/mycred-module-hooks.php:
|
5664 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5665 |
msgstr "Requer perfis extendidos do BuddyPress para ser habilitado."
|
5666 |
|
5667 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5668 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5669 |
msgid "Access denied for this action"
|
5670 |
msgstr "Acesso negado para esta ação"
|
5671 |
|
@@ -5681,12 +5689,12 @@ msgstr "Registro de entrada não encontrado"
|
|
5681 |
msgid "Entry Updated"
|
5682 |
msgstr "Entrada atualizada"
|
5683 |
|
5684 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5685 |
msgid "Entries"
|
5686 |
msgstr "Entradas"
|
5687 |
|
5688 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5689 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5690 |
msgid "Export"
|
5691 |
msgstr "Exportar"
|
5692 |
|
@@ -5733,49 +5741,49 @@ msgid "My %s History"
|
|
5733 |
msgstr "Meu %s histórico"
|
5734 |
|
5735 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5736 |
-
#:
|
5737 |
msgid "Missing point type"
|
5738 |
msgstr "Tipo de ponto em falta"
|
5739 |
|
5740 |
-
#: ../modules/mycred-module-settings.php:
|
5741 |
msgid "Accounts successfully reset"
|
5742 |
msgstr "Contas redefinidas com sucesso"
|
5743 |
|
5744 |
-
#: ../modules/mycred-module-settings.php:
|
5745 |
msgid "No users found to export"
|
5746 |
msgstr "Nenhum usuário encontrado para exportar"
|
5747 |
|
5748 |
-
#: ../modules/mycred-module-settings.php:
|
5749 |
#, php-format
|
5750 |
msgid "%s Settings"
|
5751 |
msgstr "%s Configurações"
|
5752 |
|
5753 |
-
#: ../modules/mycred-module-settings.php:
|
5754 |
msgid "Adjust your core or add-on settings."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
-
#: ../modules/mycred-module-settings.php:
|
5758 |
msgid "Core Settings"
|
5759 |
msgstr "Configurações do Core"
|
5760 |
|
5761 |
-
#: ../modules/mycred-module-settings.php:
|
5762 |
msgid "Name"
|
5763 |
msgstr "Nome"
|
5764 |
|
5765 |
-
#: ../modules/mycred-module-settings.php:
|
5766 |
#, php-format
|
5767 |
msgid "Accessible though the %singular% template tag."
|
5768 |
msgstr "Acessível se o modelo de etiqueta de %singular%."
|
5769 |
|
5770 |
-
#: ../modules/mycred-module-settings.php:
|
5771 |
msgid "Accessible though the %plural% template tag."
|
5772 |
msgstr "Acessível se o modelo de etiqueta de %plural%."
|
5773 |
|
5774 |
-
#: ../modules/mycred-module-settings.php:
|
5775 |
msgid "Tip"
|
5776 |
msgstr "Dica"
|
5777 |
|
5778 |
-
#: ../modules/mycred-module-settings.php:
|
5779 |
msgid ""
|
5780 |
"Adding an underscore at the beginning of template tag for names will return "
|
5781 |
"them in lowercase. i.e. %_singular%"
|
@@ -5783,95 +5791,95 @@ msgstr ""
|
|
5783 |
"Adicione um sublinhado no início da etiqueta modelo para nomes que irão "
|
5784 |
"devolvê-los em minúsculas. i.e. %_singular%"
|
5785 |
|
5786 |
-
#: ../modules/mycred-module-settings.php:
|
5787 |
msgid "Separator"
|
5788 |
msgstr "Separador"
|
5789 |
|
5790 |
-
#: ../modules/mycred-module-settings.php:
|
5791 |
msgid "Edit Settings"
|
5792 |
msgstr "Editar configurações"
|
5793 |
|
5794 |
-
#: ../modules/mycred-module-settings.php:
|
5795 |
-
#: php:
|
5796 |
msgid "Capability to check for."
|
5797 |
msgstr "Capacidade para verificar."
|
5798 |
|
5799 |
-
#: ../modules/mycred-module-settings.php:
|
5800 |
msgid "Edit Users %plural%"
|
5801 |
msgstr "Editar %plural% dos usuários"
|
5802 |
|
5803 |
-
#: ../modules/mycred-module-settings.php:
|
5804 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5805 |
msgstr ""
|
5806 |
"Lista separada por vírgulas de IDs de usuário para excluir. Espaço não é "
|
5807 |
"permitido!"
|
5808 |
|
5809 |
-
#: ../modules/mycred-module-settings.php:
|
5810 |
msgid "Management"
|
5811 |
msgstr "Administração"
|
5812 |
|
5813 |
-
#: ../modules/mycred-module-settings.php:
|
5814 |
msgid "The Log"
|
5815 |
msgstr "O registro"
|
5816 |
|
5817 |
-
#: ../modules/mycred-module-settings.php:
|
5818 |
msgid "Table Name"
|
5819 |
msgstr "Nome da tabela"
|
5820 |
|
5821 |
-
#: ../modules/mycred-module-settings.php:
|
5822 |
msgid "Empty Log"
|
5823 |
msgstr "Registro em branco"
|
5824 |
|
5825 |
-
#: ../modules/mycred-module-settings.php:
|
5826 |
msgid "User Meta Key"
|
5827 |
msgstr "Utilizar Meta Key"
|
5828 |
|
5829 |
-
#: ../modules/mycred-module-settings.php:
|
5830 |
msgid "Set all to zero"
|
5831 |
msgstr "Deifinir zero para todos"
|
5832 |
|
5833 |
-
#: ../modules/mycred-module-settings.php:
|
5834 |
msgid "CSV Export"
|
5835 |
msgstr "Exportar em CSV"
|
5836 |
|
5837 |
-
#: ../modules/mycred-module-settings.php:
|
5838 |
msgid "Default"
|
5839 |
msgstr "Padrão"
|
5840 |
|
5841 |
-
#: ../modules/mycred-module-settings.php:
|
5842 |
-
#: php:
|
5843 |
msgid "Meta Key"
|
5844 |
msgstr "Meta Key"
|
5845 |
|
5846 |
-
#: ../modules/mycred-module-settings.php:
|
5847 |
msgid "Add New Type"
|
5848 |
msgstr "Adicionar novo tipo"
|
5849 |
|
5850 |
-
#: ../modules/mycred-module-settings.php:
|
5851 |
msgid "A unique ID for this type."
|
5852 |
msgstr "ID único para este tipo."
|
5853 |
|
5854 |
-
#: ../modules/mycred-module-settings.php:
|
5855 |
msgid "Menu and page title."
|
5856 |
msgstr "Menu e título da página."
|
5857 |
|
5858 |
-
#: ../modules/mycred-module-settings.php:
|
5859 |
msgid "The meta key will define where your users balances are saved."
|
5860 |
msgstr "A meta key definirá onde o saldo dos usuários será salvo no banco de dados."
|
5861 |
|
5862 |
-
#: ../modules/mycred-module-settings.php:
|
5863 |
msgid "Identify users by"
|
5864 |
msgstr "Identificar usuários por"
|
5865 |
|
5866 |
-
#: ../modules/mycred-module-settings.php:
|
5867 |
msgid "User Email"
|
5868 |
msgstr "E-mail do usuário"
|
5869 |
|
5870 |
-
#: ../modules/mycred-module-settings.php:
|
5871 |
msgid "User Login"
|
5872 |
msgstr "Login do usuário"
|
5873 |
|
5874 |
-
#: ../modules/mycred-module-settings.php:
|
5875 |
msgid ""
|
5876 |
"Use ID if you intend to use this export as a backup of your current site "
|
5877 |
"while Email is recommended if you want to export to a different site."
|
@@ -5880,11 +5888,11 @@ msgstr ""
|
|
5880 |
"atual, enquanto o e-mail é recomendado se você deseja exportar para um site "
|
5881 |
"diferente."
|
5882 |
|
5883 |
-
#: ../modules/mycred-module-settings.php:
|
5884 |
msgid "Import Log Entry"
|
5885 |
msgstr "Importar registro de entrada"
|
5886 |
|
5887 |
-
#: ../modules/mycred-module-settings.php:
|
5888 |
#, php-format
|
5889 |
msgid ""
|
5890 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5893,11 +5901,11 @@ msgstr ""
|
|
5893 |
"Entrada de registro opcional se você pretende importar este arquivo em uma "
|
5894 |
"instalação %s diferente."
|
5895 |
|
5896 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5897 |
msgid "BadgeOS"
|
5898 |
msgstr "BadgeOS"
|
5899 |
|
5900 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5901 |
msgid ""
|
5902 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5903 |
"overridden for individual achievement type."
|
@@ -5905,7 +5913,7 @@ msgstr ""
|
|
5905 |
"Configurações padrões para cada tipo de BadgeOS Achievement. Essas "
|
5906 |
"configurações podem ser substituídas para o tipo de realização individual."
|
5907 |
|
5908 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5909 |
#, php-format
|
5910 |
msgid ""
|
5911 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5914,28 +5922,28 @@ msgstr ""
|
|
5914 |
"Por favor, insira suas <a href=\"%s\">configurações padrões</a> antes de usar "
|
5915 |
"esta função."
|
5916 |
|
5917 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5918 |
msgid "%plural% to Award"
|
5919 |
msgstr "%plural% ao Prêmio"
|
5920 |
|
5921 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5922 |
msgid "Use zero to disable"
|
5923 |
msgstr "Utilize zero para desabilitar"
|
5924 |
|
5925 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5926 |
msgid "Deduction Log Template"
|
5927 |
msgstr "Modelo de registro de desconto"
|
5928 |
|
5929 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5930 |
#, php-format
|
5931 |
msgid "Default %s for %s"
|
5932 |
msgstr "Padrão %s para %s"
|
5933 |
|
5934 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5935 |
msgid "Use zero to disable users gaining %_plural%"
|
5936 |
msgstr "Utilize zero para desabilitar que usuários ganhem %_plural%"
|
5937 |
|
5938 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5939 |
msgid "Default Log template"
|
5940 |
msgstr "Modelo de registro padrão"
|
5941 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:54:56 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
"content/plugins/mycred\n"
|
25 |
"X-Poedit-SearchPath-1: ."
|
26 |
|
27 |
+
#: ../mycred.php:425
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
+
#: ../mycred.php:450
|
32 |
msgid "%label% History"
|
33 |
msgstr "Histórico %label%"
|
34 |
|
35 |
+
#: ../mycred.php:543
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Sobre %s"
|
39 |
|
40 |
+
#: ../mycred.php:552
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Pessoas incríveis"
|
43 |
|
44 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
+
#: includes/mycred-shortcodes.php:631
|
49 |
msgid "Processing..."
|
50 |
msgstr "Processando..."
|
51 |
|
52 |
+
#: ../mycred.php:638
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
57 |
"Aviso! Todas as entradas em seu registro serão removidas permanentemente! "
|
58 |
"Isso não pode ser desfeito!"
|
59 |
|
60 |
+
#: ../mycred.php:639
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
65 |
"Todas as entradas de registro que pertencem a usuários excluídos serão "
|
66 |
"excluídos permanentemente! Isso não pode ser desfeito!"
|
67 |
|
68 |
+
#: ../mycred.php:640
|
69 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
70 |
msgstr ""
|
71 |
"Aviso! Os saldos dos usuários serão definidos para zero! Isso não pode ser "
|
72 |
"desfeito!"
|
73 |
|
74 |
+
#: ../mycred.php:641
|
75 |
msgid "Done!"
|
76 |
msgstr "Concluído!"
|
77 |
|
78 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
79 |
msgid "Close"
|
80 |
msgstr "Fechar"
|
81 |
|
82 |
+
#: ../mycred.php:643
|
83 |
msgid "Export users %plural%"
|
84 |
msgstr "Exportar %plural% dos usuários"
|
85 |
|
86 |
+
#: ../mycred.php:659
|
87 |
msgid "Edit Users Balance"
|
88 |
msgstr "Editar saldo do usuário"
|
89 |
|
90 |
+
#: ../mycred.php:677
|
91 |
msgid "Edit Log Entry"
|
92 |
msgstr "Editar registro de entradas"
|
93 |
|
94 |
+
#: ../mycred.php:681
|
95 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
96 |
msgstr ""
|
97 |
"Tem certeza que deseja excluir esta entrada de registros? Isso não pode ser "
|
98 |
"desfeito!"
|
99 |
|
100 |
+
#: ../mycred.php:682
|
101 |
msgid "Log entry updated"
|
102 |
msgstr "Registro de entradas atualizado"
|
103 |
|
104 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
105 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
106 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
107 |
msgid "Setup"
|
108 |
msgstr "Instalação"
|
109 |
|
110 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
111 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
112 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
113 |
msgid "Settings"
|
114 |
msgstr "Configurações"
|
115 |
|
116 |
+
#: ../mycred.php:776
|
117 |
msgid ""
|
118 |
"Make sure to backup your database and files before updating, in case "
|
119 |
"anything goes wrong!"
|
153 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
154 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
155 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
156 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
157 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
158 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
159 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
160 |
msgid "Select"
|
161 |
msgstr "Selecionar"
|
162 |
|
256 |
msgstr ""
|
257 |
|
258 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
259 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
260 |
msgid "Users"
|
261 |
msgstr "Usuários"
|
262 |
|
339 |
|
340 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
341 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
342 |
+
#: modules/mycred-module-buddypress.php:395
|
343 |
msgid "Do not show"
|
344 |
msgstr "Não exibir"
|
345 |
|
346 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
347 |
+
#: buddypress.php:396
|
348 |
msgid "Include in Profile Header"
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
352 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
353 |
msgid "Include under the \"Profile\" tab"
|
354 |
msgstr "Incluir abaixo da aba \"Profile\""
|
355 |
|
356 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
357 |
+
#: buddypress.php:398
|
358 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
359 |
msgstr ""
|
360 |
|
423 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
424 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
425 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
426 |
+
#: modules/mycred-module-settings.php:313
|
427 |
msgid "Access Denied"
|
428 |
msgstr "Acesso negado"
|
429 |
|
574 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
575 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
576 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
577 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
578 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
579 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
580 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
581 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
672 |
|
673 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
674 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
675 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
676 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
677 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
678 |
+
#: includes/mycred-shortcodes.php:939
|
679 |
msgid "Amount"
|
680 |
msgstr "Quantia"
|
681 |
|
682 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
683 |
+
#: modules/mycred-module-hooks.php:2112
|
684 |
msgid "Interval"
|
685 |
msgstr "Intervalo"
|
686 |
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
734 |
+
#: addon-buy-creds.php:1635
|
735 |
msgid "No pending payments found"
|
736 |
msgstr ""
|
737 |
|
740 |
msgstr ""
|
741 |
|
742 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
743 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
744 |
msgid "Transaction ID"
|
745 |
msgstr "ID da transação"
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
748 |
+
#: addon-buy-creds.php:985
|
749 |
msgid "Buyer"
|
750 |
msgstr ""
|
751 |
|
752 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
753 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
754 |
#: gateway.php:563
|
755 |
msgid "Cost"
|
756 |
msgstr "Preço"
|
757 |
|
758 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
759 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
760 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
761 |
msgid "Gateway"
|
762 |
msgstr "Métodos de pagamento"
|
805 |
|
806 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
807 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
808 |
+
#: module-settings.php:470
|
809 |
msgid "Point Types"
|
810 |
msgstr "Tipos de pontos"
|
811 |
|
858 |
msgstr "Permitir que usuários comprem %_plural% para os autores."
|
859 |
|
860 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
861 |
+
#: hooks.php:2792
|
862 |
msgid "Available Shortcodes"
|
863 |
msgstr "Shortcodes disponíveis"
|
864 |
|
885 |
msgstr "%s Métodos de pagamento"
|
886 |
|
887 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
888 |
+
#: addon-buy-creds.php:993
|
889 |
msgid "buyCRED Settings"
|
890 |
msgstr "Configurações do buyCRED"
|
891 |
|
910 |
msgstr "Habilitar para compras de teste."
|
911 |
|
912 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
913 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
914 |
msgid "Update Settings"
|
915 |
msgstr "Atualizar configurações"
|
916 |
|
918 |
msgid "More Gateways"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
922 |
#: 634
|
923 |
msgid "Date"
|
924 |
msgstr "Data"
|
925 |
|
926 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
927 |
msgid "Payed"
|
928 |
msgstr "Pago"
|
929 |
|
930 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
931 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
932 |
msgstr "Registro de compra do <strong>buy</strong>CRED"
|
933 |
|
934 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
935 |
#: booking/mycred-eventespresso3.php:367
|
936 |
msgid "Gateway Settings"
|
937 |
msgstr "Configurações do método"
|
938 |
|
939 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
940 |
+
#: content/myCRED-addon-sell-content.php:1191
|
941 |
msgid "No purchases found"
|
942 |
msgstr "Nenhuma compra encontrada"
|
943 |
|
944 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
945 |
+
#: addon-buy-creds.php:1355
|
946 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
947 |
msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
|
948 |
|
949 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
950 |
+
#: addon-buy-creds.php:1374
|
951 |
msgid "No gateways installed."
|
952 |
msgstr "Nenhum método instalado."
|
953 |
|
954 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
955 |
+
#: addon-buy-creds.php:1375
|
956 |
msgid "Gateway does not exist."
|
957 |
msgstr "Método não existe."
|
958 |
|
959 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
960 |
msgid "Yourself"
|
961 |
msgstr "Você mesmo"
|
962 |
|
963 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
964 |
msgid "No active gateways found."
|
965 |
msgstr "Nenhum método ativo foi encontrado."
|
966 |
|
967 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
968 |
msgid "The selected gateway is not active."
|
969 |
msgstr "O método selecionado não está ativo."
|
970 |
|
971 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
972 |
#, php-format
|
973 |
msgid "Buy with %gateway%"
|
974 |
msgstr "Compre com %gateway%"
|
975 |
|
976 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
977 |
#: content/myCRED-addon-sell-content.php:44
|
978 |
msgid "Buy Now"
|
979 |
msgstr "Comprar agora"
|
980 |
|
981 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
982 |
msgid "No users found"
|
983 |
msgstr "Nenhum usuário encontrado"
|
984 |
|
985 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
986 |
msgid "To"
|
987 |
msgstr "Para"
|
988 |
|
989 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
990 |
msgid "Select Amount"
|
991 |
msgstr "Selecionar a quantia"
|
992 |
|
993 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
994 |
msgid "min."
|
995 |
msgstr "min."
|
996 |
|
997 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
998 |
msgid "Select Gateway"
|
999 |
msgstr "Selecione o método"
|
1000 |
|
1001 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1002 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1003 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1004 |
#: php:35
|
1005 |
msgid "Pay Now"
|
1006 |
msgstr "Pagar agora"
|
1007 |
|
1008 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1009 |
+
#: php:516
|
1010 |
msgid "Cancel"
|
1011 |
msgstr "Cancelar"
|
1012 |
|
1013 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1014 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1015 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1016 |
msgid "Actions"
|
1017 |
msgstr "Ações"
|
1018 |
|
1156 |
msgid "The following information will be sent to the gateway"
|
1157 |
msgstr "As informações a seguir serão enviadas para o método"
|
1158 |
|
1159 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1160 |
msgid "Outside US"
|
1161 |
msgstr "Fora dos Estados Unidos"
|
1162 |
|
1163 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1164 |
msgid "January"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1168 |
msgid "February"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1172 |
msgid "March"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1176 |
msgid "April"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1180 |
msgid "May"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1184 |
msgid "June"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1188 |
msgid "July"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1192 |
msgid "August"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1196 |
msgid "September"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1200 |
msgid "October"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1204 |
msgid "November"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1208 |
msgid "December"
|
1209 |
msgstr ""
|
1210 |
|
1457 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1458 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1459 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1460 |
+
#: modules/mycred-module-hooks.php:2757
|
1461 |
msgid "Title"
|
1462 |
msgstr "Título"
|
1463 |
|
1661 |
msgstr "ainda não utilizado"
|
1662 |
|
1663 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1664 |
+
#: php:2202
|
1665 |
msgid "Total"
|
1666 |
msgstr "Total"
|
1667 |
|
1841 |
msgstr "Aplicar cupom"
|
1842 |
|
1843 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1844 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1845 |
msgid "Email Notice"
|
1846 |
msgstr "E-mail de aviso"
|
1847 |
|
2038 |
"individualmente ao editar os e-mails."
|
2039 |
|
2040 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2041 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2042 |
msgid "Email Settings"
|
2043 |
msgstr "Configurações de e-mail"
|
2044 |
|
2045 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2046 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2047 |
msgid "Senders Name:"
|
2048 |
msgstr "Nome do remetente:"
|
2049 |
|
2050 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2051 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2052 |
msgid "Senders Email:"
|
2053 |
msgstr "E-mail do remetente:"
|
2054 |
|
2072 |
msgid "Ignored if HTML is not allowed in emails."
|
2073 |
msgstr "Ignorar se HTML não é permitido nos e-mails."
|
2074 |
|
2075 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2076 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2077 |
msgid "Email Subject"
|
2078 |
msgstr "Assunto do e-mail"
|
2079 |
|
2080 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2081 |
msgid "Status"
|
2082 |
msgstr "Status"
|
2083 |
|
2084 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2085 |
msgid "Not Active"
|
2086 |
msgstr "Desativado"
|
2087 |
|
2088 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2089 |
#, php-format
|
2090 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2091 |
msgstr "Agendado:<br /><strong>%1$s</strong>"
|
2092 |
|
2093 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2094 |
msgid "Active"
|
2095 |
msgstr "Ativado"
|
2096 |
|
2097 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2098 |
#, php-format
|
2099 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2100 |
msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
|
2101 |
|
2102 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2103 |
msgid "Email is sent when"
|
2104 |
msgstr "O e-mail é enviado quando"
|
2105 |
|
2106 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2107 |
msgid "Missing instance for this notice!"
|
2108 |
msgstr "Falta instância para este aviso!"
|
2109 |
|
2110 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2111 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2112 |
+
#: addon-email-notices.php:775
|
2113 |
msgid "Sent To"
|
2114 |
msgstr "Enviar para"
|
2115 |
|
2116 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2117 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2118 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2119 |
msgid "User"
|
2120 |
msgstr "Usuário"
|
2121 |
|
2122 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2123 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2124 |
msgid "Administrator"
|
2125 |
msgstr "Administrador"
|
2126 |
|
2127 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2128 |
msgid "Both Administrator and User"
|
2129 |
msgstr "Ambos, administrador e usuário"
|
2130 |
|
2131 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2132 |
msgid "Available Template Tags"
|
2133 |
msgstr "Modelos de etiquetas disponíveis"
|
2134 |
|
2135 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2136 |
msgid "Email Header"
|
2137 |
msgstr "Cabeçalho do e-mail"
|
2138 |
|
2139 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2140 |
msgid "Send this email notice when..."
|
2141 |
msgstr "Enviar este e-mail de aviso quando..."
|
2142 |
|
2143 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2144 |
msgid "Recipient:"
|
2145 |
msgstr "Destinatário:"
|
2146 |
|
2147 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2148 |
msgid "Both"
|
2149 |
msgstr "Ambos"
|
2150 |
|
2151 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2152 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2153 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2154 |
+
#: module-settings.php:527
|
2155 |
msgid "Label"
|
2156 |
msgstr "Rótulo"
|
2157 |
|
2158 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2159 |
msgid "Reply-To Email:"
|
2160 |
msgstr "E-mail do Responder para:"
|
2161 |
|
2162 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2163 |
msgid "Save"
|
2164 |
msgstr "Salvar"
|
2165 |
|
2166 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2167 |
msgid "CSS Styling"
|
2168 |
msgstr "Estilo CSS"
|
2169 |
|
2170 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2171 |
msgid "Site Related"
|
2172 |
msgstr "Site relacionado"
|
2173 |
|
2174 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2175 |
msgid "Your websites title"
|
2176 |
msgstr "Título do seu site"
|
2177 |
|
2178 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2179 |
msgid "Your websites address"
|
2180 |
msgstr "Endereço do seu site"
|
2181 |
|
2182 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2183 |
msgid "Your websites tagline (description)"
|
2184 |
msgstr "Slogan do seu site (descrição)"
|
2185 |
|
2186 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2187 |
msgid "Your websites admin email"
|
2188 |
msgstr "E-mail de administração do seu site"
|
2189 |
|
2190 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2191 |
msgid "Total number of blog members"
|
2192 |
msgstr "Número total de usuários do blog"
|
2193 |
|
2194 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2195 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2196 |
+
#: addon-email-notices.php:1040
|
2197 |
msgid "Email Notice Updated."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2201 |
msgid "Email Notice Activated"
|
2202 |
msgstr "E-mail de aviso ativado"
|
2203 |
|
2204 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2205 |
msgid "Email Notice Saved"
|
2206 |
msgstr "E-mail de aviso salvo"
|
2207 |
|
2208 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2209 |
msgid ""
|
2210 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2211 |
"are not yet ready to use this email notice!"
|
2213 |
"Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
|
2214 |
"Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
|
2215 |
|
2216 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2217 |
#, php-format
|
2218 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2219 |
msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
|
2220 |
|
2221 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2222 |
msgid "This email notice is active."
|
2223 |
msgstr "Este e-mail de aviso está ativo."
|
2224 |
|
2225 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2226 |
msgid "Settings saved."
|
2227 |
msgstr "Configurações salvas"
|
2228 |
|
2229 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2230 |
msgid "Unsubscribe"
|
2231 |
msgstr "Cancelar assinatura"
|
2232 |
|
2233 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2234 |
msgid "There are no email notifications yet."
|
2235 |
msgstr "Não há notificações de e-mail ainda."
|
2236 |
|
2237 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2238 |
msgid "Save Changes"
|
2239 |
msgstr "Salvar alterações"
|
2240 |
|
2284 |
|
2285 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2286 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2287 |
+
#: 52 ../includes/mycred-network.php:53
|
2288 |
msgid "myCRED"
|
2289 |
msgstr "Tipo de ponto"
|
2290 |
|
2365 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2366 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2367 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2368 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2369 |
msgid "Exchange Rate"
|
2370 |
msgstr "Taxa de câmbio"
|
2371 |
|
2669 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2670 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2671 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2672 |
+
#: sell-content.php:669
|
2673 |
msgid "Button Label"
|
2674 |
msgstr "Rótulo do botão"
|
2675 |
|
2683 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2684 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2685 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2686 |
+
#: sell-content.php:665
|
2687 |
msgid "Price"
|
2688 |
msgstr "Preço"
|
2689 |
|
2790 |
msgstr "Rjeitar"
|
2791 |
|
2792 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2793 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2794 |
+
#: modules/mycred-module-settings.php:508
|
2795 |
msgid "Delete"
|
2796 |
msgstr "Deletar"
|
2797 |
|
2917 |
msgstr "Use o estilo CSS incluído para as notificações."
|
2918 |
|
2919 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2920 |
+
#: module-buddypress.php:439
|
2921 |
msgid "Template"
|
2922 |
msgstr "Modelo"
|
2923 |
|
3199 |
"e / ou pública se os ranks forem \"Public\""
|
3200 |
|
3201 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3202 |
+
#: php:402
|
3203 |
msgid "Do not show."
|
3204 |
msgstr "Não exibir."
|
3205 |
|
3249 |
msgstr "Nenhum usuário encontrado com este rank"
|
3250 |
|
3251 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3252 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3253 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3254 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3255 |
msgid "error"
|
3256 |
msgstr "erro"
|
3257 |
|
3378 |
msgid "%s Sell This"
|
3379 |
msgstr "%s vender isso"
|
3380 |
|
3381 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3382 |
#, php-format
|
3383 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3384 |
msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
|
3385 |
|
3386 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3387 |
msgid "Setup add-on"
|
3388 |
msgstr "Configurar add-on"
|
3389 |
|
3390 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3391 |
msgid "Lets do it"
|
3392 |
msgstr "Vamos fazer isso"
|
3393 |
|
3394 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3395 |
#, php-format
|
3396 |
msgid "Enable sale of this %s"
|
3397 |
msgstr "Habilitar venda do %s"
|
3398 |
|
3399 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3400 |
msgid "Purchase expires after"
|
3401 |
msgstr "Compras expiram depois"
|
3402 |
|
3403 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3404 |
msgid "Thank you for your purchase!"
|
3405 |
msgstr "Obrigado pela sua compra!"
|
3406 |
|
3407 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3408 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3409 |
msgid "The following content is set for sale:"
|
3410 |
msgstr "O conteúdo a seguir está definido para a venda:"
|
3411 |
|
3412 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3413 |
msgid "Purchased"
|
3414 |
msgstr "Comprado"
|
3415 |
|
3422 |
msgstr "Você excedeu o %limite% limite de transferência."
|
3423 |
|
3424 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3425 |
+
#: php:2367
|
3426 |
msgid "Transfer"
|
3427 |
msgstr "Transferência"
|
3428 |
|
3461 |
"permitida antes que a configuração seja concluída!"
|
3462 |
|
3463 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3464 |
+
#: php:1041
|
3465 |
msgid "Insufficient Funds. Please try a lower amount."
|
3466 |
msgstr ""
|
3467 |
|
3842 |
msgid "My Entire Log"
|
3843 |
msgstr "Meu registro de entrada"
|
3844 |
|
3845 |
+
#: ../includes/mycred-functions.php:1854
|
3846 |
msgid "ref empty"
|
3847 |
msgstr "Referência vazia"
|
3848 |
|
3849 |
+
#: ../includes/mycred-functions.php:1862
|
3850 |
msgid "incorrect user id format"
|
3851 |
msgstr "formato do id do usuário incorreto"
|
3852 |
|
3853 |
+
#: ../includes/mycred-functions.php:1875
|
3854 |
msgid "incorrect unix timestamp (from):"
|
3855 |
msgstr "registro do tempo do unix incorreto (a partir de):"
|
3856 |
|
3857 |
+
#: ../includes/mycred-functions.php:1884
|
3858 |
msgid "incorrect unix timestamp (to):"
|
3859 |
msgstr "registro do tempo do unix incorreto (para):"
|
3860 |
|
3861 |
+
#: ../includes/mycred-functions.php:2254
|
3862 |
msgid "Website Registration"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: ../includes/mycred-functions.php:2255
|
3866 |
msgid "Website Visit"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: ../includes/mycred-functions.php:2256
|
3870 |
msgid "Viewing Content (Member)"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: ../includes/mycred-functions.php:2257
|
3874 |
msgid "Viewing Content (Author)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: ../includes/mycred-functions.php:2258
|
3878 |
msgid "Logging in"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: ../includes/mycred-functions.php:2259
|
3882 |
msgid "Publishing Content"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3886 |
msgid "Approved Comment"
|
3887 |
msgstr "Comentário aprovado"
|
3888 |
|
3889 |
+
#: ../includes/mycred-functions.php:2261
|
3890 |
msgid "Unapproved Comment"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: ../includes/mycred-functions.php:2262
|
3894 |
msgid "SPAM Comment"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: ../includes/mycred-functions.php:2263
|
3898 |
msgid "Deleted Comment"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: ../includes/mycred-functions.php:2264
|
3902 |
msgid "Link Click"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: ../includes/mycred-functions.php:2265
|
3906 |
msgid "Watching Video"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: ../includes/mycred-functions.php:2266
|
3910 |
msgid "Visitor Referral"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: ../includes/mycred-functions.php:2267
|
3914 |
msgid "Signup Referral"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: ../includes/mycred-functions.php:2271
|
3918 |
msgid "New Profile Update"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: ../includes/mycred-functions.php:2272
|
3922 |
msgid "Avatar Upload"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: ../includes/mycred-functions.php:2273
|
3926 |
msgid "New Friendship"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: ../includes/mycred-functions.php:2274
|
3930 |
msgid "Ended Friendship"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: ../includes/mycred-functions.php:2275
|
3934 |
msgid "New Profile Comment"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: ../includes/mycred-functions.php:2276
|
3938 |
msgid "Profile Comment Deletion"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: ../includes/mycred-functions.php:2277
|
3942 |
msgid "New Message"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: ../includes/mycred-functions.php:2278
|
3946 |
msgid "Sending Gift"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: ../includes/mycred-functions.php:2279
|
3950 |
msgid "New Group"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: ../includes/mycred-functions.php:2280
|
3954 |
msgid "Deleted Group"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: ../includes/mycred-functions.php:2281
|
3958 |
msgid "New Group Forum Topic"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: ../includes/mycred-functions.php:2282
|
3962 |
msgid "Edit Group Forum Topic"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: ../includes/mycred-functions.php:2283
|
3966 |
msgid "New Group Forum Post"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: ../includes/mycred-functions.php:2284
|
3970 |
msgid "Edit Group Forum Post"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: ../includes/mycred-functions.php:2285
|
3974 |
msgid "Joining Group"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: ../includes/mycred-functions.php:2286
|
3978 |
msgid "Leaving Group"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: ../includes/mycred-functions.php:2287
|
3982 |
msgid "New Group Avatar"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: ../includes/mycred-functions.php:2288
|
3986 |
msgid "New Group Comment"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3990 |
#: php:166
|
3991 |
msgid "Photo Upload"
|
3992 |
msgstr "Upload de foto"
|
3993 |
|
3994 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3995 |
#: php:176
|
3996 |
msgid "Video Upload"
|
3997 |
msgstr "Upload de vídeo"
|
3998 |
|
3999 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
4000 |
#: php:186
|
4001 |
msgid "Music Upload"
|
4002 |
msgstr "Upload de música"
|
4003 |
|
4004 |
+
#: ../includes/mycred-functions.php:2298
|
4005 |
msgid "New Link"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: ../includes/mycred-functions.php:2299
|
4009 |
msgid "Link Voting"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: ../includes/mycred-functions.php:2300
|
4013 |
msgid "Link Update"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: ../includes/mycred-functions.php:2304
|
4017 |
msgid "New Forum (bbPress)"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: ../includes/mycred-functions.php:2305
|
4021 |
msgid "New Forum Topic (bbPress)"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: ../includes/mycred-functions.php:2306
|
4025 |
msgid "Favorited Topic (bbPress)"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: ../includes/mycred-functions.php:2307
|
4029 |
msgid "New Topic Reply (bbPress)"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: ../includes/mycred-functions.php:2311
|
4033 |
msgid "Form Submission (Contact Form 7)"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: ../includes/mycred-functions.php:2314
|
4037 |
msgid "Form Submission (Gravity Form)"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: ../includes/mycred-functions.php:2317
|
4041 |
msgid "New Forum Topic (SimplePress)"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: ../includes/mycred-functions.php:2318
|
4045 |
msgid "New Forum Post (SimplePress)"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: ../includes/mycred-functions.php:2322
|
4049 |
msgid "Poll Voting"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: ../includes/mycred-functions.php:2325
|
4053 |
msgid "Sending an Invite"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: ../includes/mycred-functions.php:2326
|
4057 |
msgid "Accepting an Invite"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: ../includes/mycred-functions.php:2332
|
4061 |
msgid "Banking Payout"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: ../includes/mycred-functions.php:2335
|
4065 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: ../includes/mycred-functions.php:2336
|
4069 |
msgid "buyCRED Purchase (Skrill)"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: ../includes/mycred-functions.php:2337
|
4073 |
msgid "buyCRED Purchase (Zombaio)"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: ../includes/mycred-functions.php:2338
|
4077 |
msgid "buyCRED Purchase (NETBilling)"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: ../includes/mycred-functions.php:2339
|
4081 |
msgid "buyCRED Purchase (BitPay)"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: ../includes/mycred-functions.php:2344
|
4085 |
msgid "Coupon Purchase"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: ../includes/mycred-functions.php:2347
|
4089 |
msgid "Store Purchase (WooCommerce)"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: ../includes/mycred-functions.php:2348
|
4093 |
msgid "Store Purchase (MarketPress)"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: ../includes/mycred-functions.php:2349
|
4097 |
msgid "Store Purchase (WP E-Commerce)"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: ../includes/mycred-functions.php:2354
|
4101 |
msgid "Event Payment (Event Espresso)"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: ../includes/mycred-functions.php:2355
|
4105 |
msgid "Event Sale (Event Espresso)"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: ../includes/mycred-functions.php:2359
|
4109 |
msgid "Event Payment (Events Manager)"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: ../includes/mycred-functions.php:2360
|
4113 |
msgid "Event Sale (Events Manager)"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: ../includes/mycred-functions.php:2364
|
4117 |
msgid "Content Purchase / Sale"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: ../includes/mycred-functions.php:2371
|
4121 |
msgid "Manual Adjustment by Admin"
|
4122 |
msgstr ""
|
4123 |
|
4165 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4166 |
msgstr "myCRED precisa de SQL 5.0 ou superior. Versão detectada:"
|
4167 |
|
4168 |
+
#: ../includes/mycred-install.php:54
|
4169 |
msgid ""
|
4170 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4171 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4175 |
" verifique a configuração do PHP ou entre em contato com seu provedor de "
|
4176 |
"hospedagem e peça para habilitá-lo para você!"
|
4177 |
|
4178 |
+
#: ../includes/mycred-install.php:59
|
4179 |
msgid ""
|
4180 |
"Sorry but your WordPress installation does not reach the minimum "
|
4181 |
"requirements for running myCRED. The following errors were given:"
|
4183 |
"Desculpe, mas sua instalação WordPress não atende os requisitos mínimos para "
|
4184 |
"execução do myCRED. Os seguintes erros foram identificados:"
|
4185 |
|
4186 |
+
#: ../includes/mycred-install.php:248
|
4187 |
msgid "myCRED needs your attention."
|
4188 |
msgstr "myCRED precisa da sua atenção."
|
4189 |
|
4190 |
+
#: ../includes/mycred-install.php:248
|
4191 |
msgid "Run Setup"
|
4192 |
msgstr "Executar instalação"
|
4193 |
|
4194 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4195 |
msgid "myCRED Setup"
|
4196 |
msgstr "Instalação do myCRED"
|
4197 |
|
4198 |
+
#: ../includes/mycred-install.php:390
|
4199 |
#, php-format
|
4200 |
msgid "%s Setup"
|
4201 |
msgstr "Instalação do %s"
|
4202 |
|
4203 |
+
#: ../includes/mycred-install.php:392
|
4204 |
msgid "Step"
|
4205 |
msgstr "Passo"
|
4206 |
|
4207 |
+
#: ../includes/mycred-install.php:416
|
4208 |
msgid ""
|
4209 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4210 |
"points format, layout and security settings."
|
4212 |
"Clique em \"Begin Setup\" para instalar o myCRED. Você será capaz de "
|
4213 |
"selecionar o formato de seus pontos, modelo e configurações de segurança."
|
4214 |
|
4215 |
+
#: ../includes/mycred-install.php:417
|
4216 |
msgid "Begin Setup"
|
4217 |
msgstr "Iniciar Instalação"
|
4218 |
|
4219 |
+
#: ../includes/mycred-install.php:472
|
4220 |
msgid "Select the format you want to use for your points."
|
4221 |
msgstr "Selecione o formato que deseja usar para os seus pontos."
|
4222 |
|
4223 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4224 |
msgid "Format"
|
4225 |
msgstr "Formato"
|
4226 |
|
4227 |
+
#: ../includes/mycred-install.php:476
|
4228 |
msgid "Separators"
|
4229 |
msgstr "Separadores"
|
4230 |
|
4231 |
+
#: ../includes/mycred-install.php:486
|
4232 |
msgid "Decimals"
|
4233 |
msgstr "Decimais"
|
4234 |
|
4235 |
+
#: ../includes/mycred-install.php:488
|
4236 |
msgid "Use zero for no decimals."
|
4237 |
msgstr "Insira zero para não utilizar decimais."
|
4238 |
|
4239 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4240 |
msgid "Presentation"
|
4241 |
msgstr "Apresentação"
|
4242 |
|
4243 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4244 |
msgid "Name (Singular)"
|
4245 |
msgstr "Nome (Singular)"
|
4246 |
|
4247 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4248 |
msgid "Name (Plural)"
|
4249 |
msgstr "Nome (Plural)"
|
4250 |
|
4251 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4252 |
msgid "Prefix"
|
4253 |
msgstr "Prefixo"
|
4254 |
|
4255 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4256 |
msgid "Suffix"
|
4257 |
msgstr "Sufixo"
|
4258 |
|
4259 |
+
#: ../includes/mycred-install.php:516
|
4260 |
msgid "Cancel Setup"
|
4261 |
msgstr "Cancelar instalação"
|
4262 |
|
4263 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4264 |
msgid "Next"
|
4265 |
msgstr "Próximo"
|
4266 |
|
4267 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4268 |
msgid "Security"
|
4269 |
msgstr "Segurança"
|
4270 |
|
4271 |
+
#: ../includes/mycred-install.php:551
|
4272 |
msgid "Edit Settings Capability"
|
4273 |
msgstr "Editar configurações de capacidade"
|
4274 |
|
4275 |
+
#: ../includes/mycred-install.php:555
|
4276 |
msgid "Edit Users %plural% Capability"
|
4277 |
msgstr "Editar a capacidade de %plural% dos usuários"
|
4278 |
|
4279 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4280 |
msgid "Maximum %plural% payouts"
|
4281 |
msgstr "Máximo de %plural% pagos"
|
4282 |
|
4283 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4284 |
msgid ""
|
4285 |
"As an added security, you can set the maximum amount a user can gain or "
|
4286 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4292 |
"certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
|
4293 |
"transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
|
4294 |
|
4295 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4296 |
msgid "Excludes"
|
4297 |
msgstr "Excluir"
|
4298 |
|
4299 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4300 |
msgid "Exclude those who can \"Edit Settings\"."
|
4301 |
msgstr "Excluir aqueles que podem \"Edit Settings\"."
|
4302 |
|
4303 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4304 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4305 |
msgstr "Excluir aqueles que podem \"Edit Users %plural%\"."
|
4306 |
|
4307 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4308 |
msgid "Exclude the following user IDs:"
|
4309 |
msgstr "Excluir os seguintes IDs de usuário:"
|
4310 |
|
4311 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4312 |
msgid "User Deletions"
|
4313 |
msgstr "Usuário excluídos"
|
4314 |
|
4315 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4316 |
msgid "Delete log entries when user is deleted."
|
4317 |
msgstr "Excluir registro de entradas quando o usuário for excluído."
|
4318 |
|
4319 |
+
#: ../includes/mycred-install.php:604
|
4320 |
msgid "Ready"
|
4321 |
msgstr "Pronto"
|
4322 |
|
4323 |
+
#: ../includes/mycred-install.php:605
|
4324 |
msgid "Almost done! Click the button below to finish this setup."
|
4325 |
msgstr "Quase pronto! Clique no botão abaixo para finalizar a instalação."
|
4326 |
|
4327 |
+
#: ../includes/mycred-install.php:606
|
4328 |
msgid "Install & Run"
|
4329 |
msgstr "Instalar e Funcionar"
|
4330 |
|
4337 |
msgid "entry"
|
4338 |
msgstr "entrada"
|
4339 |
|
4340 |
+
#: ../includes/mycred-log.php:412
|
4341 |
msgid "Go to the first page"
|
4342 |
msgstr "Ir para a primeira página"
|
4343 |
|
4344 |
+
#: ../includes/mycred-log.php:419
|
4345 |
msgid "Go to the previous page"
|
4346 |
msgstr "Ir para a página anteiror"
|
4347 |
|
4348 |
+
#: ../includes/mycred-log.php:428
|
4349 |
msgid "Current page"
|
4350 |
msgstr "Página atual"
|
4351 |
|
4352 |
+
#: ../includes/mycred-log.php:434
|
4353 |
#, php-format
|
4354 |
msgctxt "paging"
|
4355 |
msgid "%1$s of %2$s"
|
4356 |
msgstr "%1$s de %2$s"
|
4357 |
|
4358 |
+
#: ../includes/mycred-log.php:438
|
4359 |
msgid "Go to the next page"
|
4360 |
msgstr "Ir para a próxima página"
|
4361 |
|
4362 |
+
#: ../includes/mycred-log.php:445
|
4363 |
msgid "Go to the last page"
|
4364 |
msgstr "Ir para a última página"
|
4365 |
|
4367 |
msgid "Show all references"
|
4368 |
msgstr "Mostrar todas as referências"
|
4369 |
|
4370 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4371 |
msgid "User ID"
|
4372 |
msgstr "ID do usuário"
|
4373 |
|
4597 |
"Lembre-se de desativar quando não utilizado para evitar chamadas maliciosas "
|
4598 |
"de aprendizado sobre a configuração!"
|
4599 |
|
4600 |
+
#: ../includes/mycred-shortcodes.php:178
|
4601 |
msgid "Leaderboard is empty."
|
4602 |
msgstr "O ranking está vazio."
|
4603 |
|
4604 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4605 |
msgid "Amount missing!"
|
4606 |
msgstr "Quantia ausente!"
|
4607 |
|
4608 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4609 |
msgid "Log Template Missing!"
|
4610 |
msgstr "Modelo de registro ausente!"
|
4611 |
|
4612 |
+
#: ../includes/mycred-shortcodes.php:515
|
4613 |
msgid "Anchor missing URL!"
|
4614 |
msgstr "Ancoras de URL ausentes!"
|
4615 |
|
4616 |
+
#: ../includes/mycred-shortcodes.php:577
|
4617 |
msgid "User ID missing for recipient."
|
4618 |
msgstr "ID do usuário ausente para o destinatário."
|
4619 |
|
4620 |
+
#: ../includes/mycred-shortcodes.php:632
|
4621 |
msgid "Sent"
|
4622 |
msgstr "Enviar"
|
4623 |
|
4624 |
+
#: ../includes/mycred-shortcodes.php:633
|
4625 |
msgid "Error - Try Again"
|
4626 |
msgstr "Erro - Tente novamente"
|
4627 |
|
4628 |
+
#: ../includes/mycred-shortcodes.php:742
|
4629 |
msgid "A video ID is required for this shortcode"
|
4630 |
msgstr "O ID do vídeo é obrigatório para este shortcode"
|
4631 |
|
4632 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4633 |
msgid "Point types not found."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4637 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4638 |
#, php-format
|
4639 |
msgid "You are excluded from using %s."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4643 |
msgid "Your balance is too low to use this feature."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: ../includes/mycred-shortcodes.php:924
|
4647 |
#, php-format
|
4648 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
+
#: ../includes/mycred-shortcodes.php:933
|
4652 |
#, php-format
|
4653 |
msgid "Your current %s balance"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: ../includes/mycred-shortcodes.php:941
|
4657 |
#, php-format
|
4658 |
msgid "Minimum %s"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: ../includes/mycred-shortcodes.php:945
|
4662 |
#, php-format
|
4663 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: ../includes/mycred-shortcodes.php:951
|
4667 |
msgid "Exchange"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4671 |
#, php-format
|
4672 |
msgid "You must exchange at least %s!"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4676 |
#, php-format
|
4677 |
msgid "Exchange from %s"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4681 |
#, php-format
|
4682 |
msgid "Exchange to %s"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4686 |
#, php-format
|
4687 |
msgid "You have successfully exchanged %s into %s."
|
4688 |
msgstr ""
|
4701 |
msgid "My Balance"
|
4702 |
msgstr "Meu saldo"
|
4703 |
|
4704 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4705 |
msgid "%plural% History"
|
4706 |
msgstr "Histórico de %plural%"
|
4707 |
|
5132 |
msgid "Current balance"
|
5133 |
msgstr "Saldo atual"
|
5134 |
|
5135 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5136 |
msgid "Go"
|
5137 |
msgstr "Ir"
|
5138 |
|
5139 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5140 |
msgid "Show in Profile"
|
5141 |
msgstr "Mostrar no perfil"
|
5142 |
|
5143 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5144 |
#, php-format
|
5145 |
msgid "%singular% Balance"
|
5146 |
msgstr "Saldo de %singular%"
|
5147 |
|
5148 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5149 |
#, php-format
|
5150 |
msgid "Members and visitors can other members %_singular% balance."
|
5151 |
msgstr "Membros e visitantes podem visualizar o saldo de %_singular% dos membros."
|
5152 |
|
5153 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5154 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5155 |
msgstr ""
|
5156 |
"Note que você também pode usar %rank_logo% para mostrar uma imagem de "
|
5157 |
"Classificação."
|
5158 |
|
5159 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5160 |
msgid "Members can view each others %_plural% history."
|
5161 |
msgstr "Membros podem visualizar o histórico de %_plural% de outros membros."
|
5162 |
|
5163 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5164 |
msgid "Menu Title"
|
5165 |
msgstr "Título do menu"
|
5166 |
|
5167 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5168 |
msgid "Title shown to me"
|
5169 |
msgstr "Título exibido para mim"
|
5170 |
|
5171 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5172 |
#, php-format
|
5173 |
msgid "Title shown to others. Use %s to show the first name."
|
5174 |
msgstr "Título exibido para os outros. Use %s para mostrar o primeiro nome."
|
5175 |
|
5176 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5177 |
msgid "Menu Position"
|
5178 |
msgstr "Posição no menu"
|
5179 |
|
5180 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5181 |
msgid "Current menu positions:"
|
5182 |
msgstr "Posição atual no menu:"
|
5183 |
|
5184 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5185 |
msgid "History URL slug"
|
5186 |
msgstr "URL de caminho do histórico"
|
5187 |
|
5188 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5189 |
msgid "Do not use empty spaces!"
|
5190 |
msgstr "Não utilize espaços em branco!"
|
5191 |
|
5192 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5193 |
msgid "Number of history entries to show"
|
5194 |
msgstr "Número de entradas no histórico à exibir"
|
5195 |
|
5329 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5330 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5331 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5332 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5333 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5334 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5335 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5336 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5391 |
msgid "%plural% for viewing %s"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5395 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5396 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5397 |
msgid "Limit"
|
5398 |
msgstr "Limite"
|
5484 |
msgid "Custom tags: %url%, %title% or %id%."
|
5485 |
msgstr "Etiquetas personalizadas: %url%, %title% ou %id%."
|
5486 |
|
5487 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5488 |
msgid "Note!"
|
5489 |
msgstr "Nota!"
|
5490 |
|
5500 |
"Se você estiver usando esse recurso para \"sharing\" conteúdo, é recomendável "
|
5501 |
"que você limite por ID."
|
5502 |
|
5503 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5504 |
msgid "Available Shortcode"
|
5505 |
msgstr "Shortcode disponível"
|
5506 |
|
5507 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5508 |
msgid "Amount to award for viewing videos."
|
5509 |
msgstr "Quantia de recompensa por visualizar vídeos."
|
5510 |
|
5511 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5512 |
msgid "Award Logic"
|
5513 |
msgstr "Lógica de recompensa"
|
5514 |
|
5515 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5516 |
#, php-format
|
5517 |
msgid "Select when %_plural% should be awarded or deducted."
|
5518 |
msgstr "Selecione quando %_plural% devem ser recompensados ou descontados."
|
5519 |
|
5520 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5521 |
msgid "Play - As soon as video starts playing."
|
5522 |
msgstr "Play - Assim que o vídeo começa a ser reproduzido."
|
5523 |
|
5524 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5525 |
msgid "Full - First when the entire video has played."
|
5526 |
msgstr "Completo - Quando o vídeo inteiro foi reproduzido."
|
5527 |
|
5528 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5529 |
msgid "Interval - For each x number of seconds watched."
|
5530 |
msgstr "Intervalo - Para cada número X de segundos assistidos."
|
5531 |
|
5532 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5533 |
msgid "Number of seconds"
|
5534 |
msgstr "Número de segundos"
|
5535 |
|
5536 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5537 |
msgid "Leniency"
|
5538 |
msgstr "Clemência"
|
5539 |
|
5540 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5541 |
msgid ""
|
5542 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5543 |
"length."
|
5545 |
"A porcentagem máxima de visualizações dos usuários de um filme pode ser "
|
5546 |
"diferente da duração real."
|
5547 |
|
5548 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5549 |
msgid ""
|
5550 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5551 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5555 |
"usuário assiste a um filme e, por vezes, alguns segundos podem cair do "
|
5556 |
"contador devido a buffer ou reprodução de erros."
|
5557 |
|
5558 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5559 |
msgid "Affiliate Program"
|
5560 |
msgstr "Programa de afiliado"
|
5561 |
|
5562 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5563 |
msgid "Per Day"
|
5564 |
msgstr "Por dia"
|
5565 |
|
5566 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5567 |
msgid "Link"
|
5568 |
msgstr "Link"
|
5569 |
|
5570 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5571 |
+
msgid "Visitors Referred"
|
5572 |
+
msgstr ""
|
5573 |
+
|
5574 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5575 |
+
msgid "Signups Referred"
|
5576 |
+
msgstr ""
|
5577 |
+
|
5578 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5579 |
msgid "Referring Visitors"
|
5580 |
msgstr "Visitantes por referência"
|
5581 |
|
5582 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5583 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5584 |
msgstr "O número de referências que cada membro pode fazer. Use zero para ilimitada."
|
5585 |
|
5586 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5587 |
msgid "Referring Signups"
|
5588 |
msgstr "Registros por referência"
|
5589 |
|
5590 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5591 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5592 |
msgstr "Os visitantes que desativaram os cookies não serão premiados com %_plural%."
|
5593 |
|
5594 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5595 |
msgid "Registrations are disabled."
|
5596 |
msgstr "As inscrições estão desativadas."
|
5597 |
|
5598 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5599 |
msgid "Referral Links"
|
5600 |
msgstr "Links de referência"
|
5601 |
|
5602 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5603 |
msgid "Assign numeric referral IDs to each user."
|
5604 |
msgstr "Atribuir IDs numéricos de referência para cada usuário."
|
5605 |
|
5606 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5607 |
msgid "Example"
|
5608 |
msgstr "Exemplo"
|
5609 |
|
5610 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5611 |
msgid "Assign usernames as IDs for each user."
|
5612 |
msgstr "Atribuir nome de usuário como IDs para cada usuário."
|
5613 |
|
5614 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5615 |
msgid "IP Limit"
|
5616 |
msgstr "Limite de IP"
|
5617 |
|
5618 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5619 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5620 |
msgstr ""
|
5621 |
"O número de vezes que cada endereço IP dá de %_plural%. Use zero para "
|
5622 |
"ilimitado."
|
5623 |
|
5624 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5625 |
msgid "BuddyPress Profile"
|
5626 |
msgstr "Perfil do BuddyPress"
|
5627 |
|
5628 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5629 |
msgid "Insert Link in users Profile"
|
5630 |
msgstr "Inserir link no perfil do usuário"
|
5631 |
|
5632 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5633 |
msgid ""
|
5634 |
"Option to inser the referral link in users profiles. Links will only be "
|
5635 |
"visible to users viewing their own profiles or administrators."
|
5638 |
"somente serão visíveis para usuários que visualizam o seu próprio perfil ou "
|
5639 |
"administradores."
|
5640 |
|
5641 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5642 |
msgid "Leave empty to hide."
|
5643 |
msgstr "Deixe em brando para esconder."
|
5644 |
|
5645 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5646 |
msgid "Description"
|
5647 |
msgstr "Descrição"
|
5648 |
|
5649 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5650 |
msgid "Optional description to insert under the link."
|
5651 |
msgstr "Descrição opcional para inserir abaixo do link."
|
5652 |
|
5653 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5654 |
msgid "Profile Positioning"
|
5655 |
msgstr "Posicionamento de perfil "
|
5656 |
|
5657 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5658 |
msgid ""
|
5659 |
"You can move around the referral link on your users profile by changing the "
|
5660 |
"position. Increase to move up, decrease to move down."
|
5662 |
"Você pode mover o link de referência no seu perfil de usuário, alterando a "
|
5663 |
"posição. Aumente para subir, diminua para mover para baixo."
|
5664 |
|
5665 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5666 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5667 |
msgstr ""
|
5668 |
"Você não pode mover o link de referência acima da \"Base\" de detalhes de "
|
5669 |
"perfil do usuário!"
|
5670 |
|
5671 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5672 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5673 |
msgstr "Requer perfis extendidos do BuddyPress para ser habilitado."
|
5674 |
|
5675 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5676 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5677 |
msgid "Access denied for this action"
|
5678 |
msgstr "Acesso negado para esta ação"
|
5679 |
|
5689 |
msgid "Entry Updated"
|
5690 |
msgstr "Entrada atualizada"
|
5691 |
|
5692 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5693 |
msgid "Entries"
|
5694 |
msgstr "Entradas"
|
5695 |
|
5696 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5697 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5698 |
msgid "Export"
|
5699 |
msgstr "Exportar"
|
5700 |
|
5741 |
msgstr "Meu %s histórico"
|
5742 |
|
5743 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5744 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5745 |
msgid "Missing point type"
|
5746 |
msgstr "Tipo de ponto em falta"
|
5747 |
|
5748 |
+
#: ../modules/mycred-module-settings.php:129
|
5749 |
msgid "Accounts successfully reset"
|
5750 |
msgstr "Contas redefinidas com sucesso"
|
5751 |
|
5752 |
+
#: ../modules/mycred-module-settings.php:175
|
5753 |
msgid "No users found to export"
|
5754 |
msgstr "Nenhum usuário encontrado para exportar"
|
5755 |
|
5756 |
+
#: ../modules/mycred-module-settings.php:331
|
5757 |
#, php-format
|
5758 |
msgid "%s Settings"
|
5759 |
msgstr "%s Configurações"
|
5760 |
|
5761 |
+
#: ../modules/mycred-module-settings.php:334
|
5762 |
msgid "Adjust your core or add-on settings."
|
5763 |
msgstr ""
|
5764 |
|
5765 |
+
#: ../modules/mycred-module-settings.php:339
|
5766 |
msgid "Core Settings"
|
5767 |
msgstr "Configurações do Core"
|
5768 |
|
5769 |
+
#: ../modules/mycred-module-settings.php:341
|
5770 |
msgid "Name"
|
5771 |
msgstr "Nome"
|
5772 |
|
5773 |
+
#: ../modules/mycred-module-settings.php:346
|
5774 |
#, php-format
|
5775 |
msgid "Accessible though the %singular% template tag."
|
5776 |
msgstr "Acessível se o modelo de etiqueta de %singular%."
|
5777 |
|
5778 |
+
#: ../modules/mycred-module-settings.php:351
|
5779 |
msgid "Accessible though the %plural% template tag."
|
5780 |
msgstr "Acessível se o modelo de etiqueta de %plural%."
|
5781 |
|
5782 |
+
#: ../modules/mycred-module-settings.php:354
|
5783 |
msgid "Tip"
|
5784 |
msgstr "Dica"
|
5785 |
|
5786 |
+
#: ../modules/mycred-module-settings.php:354
|
5787 |
msgid ""
|
5788 |
"Adding an underscore at the beginning of template tag for names will return "
|
5789 |
"them in lowercase. i.e. %_singular%"
|
5791 |
"Adicione um sublinhado no início da etiqueta modelo para nomes que irão "
|
5792 |
"devolvê-los em minúsculas. i.e. %_singular%"
|
5793 |
|
5794 |
+
#: ../modules/mycred-module-settings.php:372
|
5795 |
msgid "Separator"
|
5796 |
msgstr "Separador"
|
5797 |
|
5798 |
+
#: ../modules/mycred-module-settings.php:379
|
5799 |
msgid "Edit Settings"
|
5800 |
msgstr "Editar configurações"
|
5801 |
|
5802 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5803 |
+
#: php:386
|
5804 |
msgid "Capability to check for."
|
5805 |
msgstr "Capacidade para verificar."
|
5806 |
|
5807 |
+
#: ../modules/mycred-module-settings.php:384
|
5808 |
msgid "Edit Users %plural%"
|
5809 |
msgstr "Editar %plural% dos usuários"
|
5810 |
|
5811 |
+
#: ../modules/mycred-module-settings.php:408
|
5812 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5813 |
msgstr ""
|
5814 |
"Lista separada por vírgulas de IDs de usuário para excluir. Espaço não é "
|
5815 |
"permitido!"
|
5816 |
|
5817 |
+
#: ../modules/mycred-module-settings.php:428
|
5818 |
msgid "Management"
|
5819 |
msgstr "Administração"
|
5820 |
|
5821 |
+
#: ../modules/mycred-module-settings.php:430
|
5822 |
msgid "The Log"
|
5823 |
msgstr "O registro"
|
5824 |
|
5825 |
+
#: ../modules/mycred-module-settings.php:433
|
5826 |
msgid "Table Name"
|
5827 |
msgstr "Nome da tabela"
|
5828 |
|
5829 |
+
#: ../modules/mycred-module-settings.php:442
|
5830 |
msgid "Empty Log"
|
5831 |
msgstr "Registro em branco"
|
5832 |
|
5833 |
+
#: ../modules/mycred-module-settings.php:448
|
5834 |
msgid "User Meta Key"
|
5835 |
msgstr "Utilizar Meta Key"
|
5836 |
|
5837 |
+
#: ../modules/mycred-module-settings.php:457
|
5838 |
msgid "Set all to zero"
|
5839 |
msgstr "Deifinir zero para todos"
|
5840 |
|
5841 |
+
#: ../modules/mycred-module-settings.php:457
|
5842 |
msgid "CSV Export"
|
5843 |
msgstr "Exportar em CSV"
|
5844 |
|
5845 |
+
#: ../modules/mycred-module-settings.php:478
|
5846 |
msgid "Default"
|
5847 |
msgstr "Padrão"
|
5848 |
|
5849 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5850 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5851 |
msgid "Meta Key"
|
5852 |
msgstr "Meta Key"
|
5853 |
|
5854 |
+
#: ../modules/mycred-module-settings.php:519
|
5855 |
msgid "Add New Type"
|
5856 |
msgstr "Adicionar novo tipo"
|
5857 |
|
5858 |
+
#: ../modules/mycred-module-settings.php:524
|
5859 |
msgid "A unique ID for this type."
|
5860 |
msgstr "ID único para este tipo."
|
5861 |
|
5862 |
+
#: ../modules/mycred-module-settings.php:529
|
5863 |
msgid "Menu and page title."
|
5864 |
msgstr "Menu e título da página."
|
5865 |
|
5866 |
+
#: ../modules/mycred-module-settings.php:532
|
5867 |
msgid "The meta key will define where your users balances are saved."
|
5868 |
msgstr "A meta key definirá onde o saldo dos usuários será salvo no banco de dados."
|
5869 |
|
5870 |
+
#: ../modules/mycred-module-settings.php:553
|
5871 |
msgid "Identify users by"
|
5872 |
msgstr "Identificar usuários por"
|
5873 |
|
5874 |
+
#: ../modules/mycred-module-settings.php:559
|
5875 |
msgid "User Email"
|
5876 |
msgstr "E-mail do usuário"
|
5877 |
|
5878 |
+
#: ../modules/mycred-module-settings.php:560
|
5879 |
msgid "User Login"
|
5880 |
msgstr "Login do usuário"
|
5881 |
|
5882 |
+
#: ../modules/mycred-module-settings.php:567
|
5883 |
msgid ""
|
5884 |
"Use ID if you intend to use this export as a backup of your current site "
|
5885 |
"while Email is recommended if you want to export to a different site."
|
5888 |
"atual, enquanto o e-mail é recomendado se você deseja exportar para um site "
|
5889 |
"diferente."
|
5890 |
|
5891 |
+
#: ../modules/mycred-module-settings.php:570
|
5892 |
msgid "Import Log Entry"
|
5893 |
msgstr "Importar registro de entrada"
|
5894 |
|
5895 |
+
#: ../modules/mycred-module-settings.php:572
|
5896 |
#, php-format
|
5897 |
msgid ""
|
5898 |
"Optional log entry to use if you intend to import this file in a different "
|
5901 |
"Entrada de registro opcional se você pretende importar este arquivo em uma "
|
5902 |
"instalação %s diferente."
|
5903 |
|
5904 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5905 |
msgid "BadgeOS"
|
5906 |
msgstr "BadgeOS"
|
5907 |
|
5908 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5909 |
msgid ""
|
5910 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5911 |
"overridden for individual achievement type."
|
5913 |
"Configurações padrões para cada tipo de BadgeOS Achievement. Essas "
|
5914 |
"configurações podem ser substituídas para o tipo de realização individual."
|
5915 |
|
5916 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5917 |
#, php-format
|
5918 |
msgid ""
|
5919 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5922 |
"Por favor, insira suas <a href=\"%s\">configurações padrões</a> antes de usar "
|
5923 |
"esta função."
|
5924 |
|
5925 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5926 |
msgid "%plural% to Award"
|
5927 |
msgstr "%plural% ao Prêmio"
|
5928 |
|
5929 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5930 |
msgid "Use zero to disable"
|
5931 |
msgstr "Utilize zero para desabilitar"
|
5932 |
|
5933 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5934 |
msgid "Deduction Log Template"
|
5935 |
msgstr "Modelo de registro de desconto"
|
5936 |
|
5937 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5938 |
#, php-format
|
5939 |
msgid "Default %s for %s"
|
5940 |
msgstr "Padrão %s para %s"
|
5941 |
|
5942 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5943 |
msgid "Use zero to disable users gaining %_plural%"
|
5944 |
msgstr "Utilize zero para desabilitar que usuários ganhem %_plural%"
|
5945 |
|
5946 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5947 |
msgid "Default Log template"
|
5948 |
msgstr "Modelo de registro padrão"
|
5949 |
|
lang/mycred-ru_RU.mo
CHANGED
Binary file
|
lang/mycred-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Russian\n"
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
@@ -25,33 +25,33 @@ msgstr ""
|
|
25 |
"content/plugins/mycred\n"
|
26 |
"X-Poedit-SearchPath-1: ."
|
27 |
|
28 |
-
#: ../mycred.php:
|
29 |
msgid "Balance"
|
30 |
msgstr "Баланс/Счет"
|
31 |
|
32 |
-
#: ../mycred.php:
|
33 |
msgid "%label% History"
|
34 |
msgstr "%label% История"
|
35 |
|
36 |
-
#: ../mycred.php:
|
37 |
#, php-format
|
38 |
msgid "About %s"
|
39 |
msgstr "Около %s"
|
40 |
|
41 |
-
#: ../mycred.php:
|
42 |
msgid "Awesome People"
|
43 |
msgstr "Потрясающие люди"
|
44 |
|
45 |
-
#: ../mycred.php:
|
46 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
47 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
48 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
49 |
-
#: includes/mycred-shortcodes.php:
|
50 |
msgid "Processing..."
|
51 |
msgstr "Обработка..."
|
52 |
|
53 |
#. log entries???
|
54 |
-
#: ../mycred.php:
|
55 |
msgid ""
|
56 |
"Warning! All entries in your log will be permanently removed! This can not "
|
57 |
"be undone!"
|
@@ -59,7 +59,7 @@ msgstr ""
|
|
59 |
"Внимание! Все записи в журнале будут удалены без возможности восстановления. "
|
60 |
"Это нельзя отменить! "
|
61 |
|
62 |
-
#: ../mycred.php:
|
63 |
msgid ""
|
64 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
65 |
"can not be undone!"
|
@@ -67,55 +67,55 @@ msgstr ""
|
|
67 |
"Все регистрации в журнале, принадлежащие удаленным пользователям, будут "
|
68 |
"навсегда удалены! Действие нельзя отменить!"
|
69 |
|
70 |
-
#: ../mycred.php:
|
71 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
72 |
msgstr ""
|
73 |
"Предупреждение! Все счета пользователя будут аннулированы! Невозможно "
|
74 |
"выполнить действие! "
|
75 |
|
76 |
-
#: ../mycred.php:
|
77 |
msgid "Done!"
|
78 |
msgstr "Готово! "
|
79 |
|
80 |
-
#: ../mycred.php:
|
81 |
msgid "Close"
|
82 |
msgstr "Закрыть"
|
83 |
|
84 |
-
#: ../mycred.php:
|
85 |
msgid "Export users %plural%"
|
86 |
msgstr "Перемещение пользователей %plural%"
|
87 |
|
88 |
-
#: ../mycred.php:
|
89 |
msgid "Edit Users Balance"
|
90 |
msgstr "Редактировать счет пользователя"
|
91 |
|
92 |
-
#: ../mycred.php:
|
93 |
msgid "Edit Log Entry"
|
94 |
msgstr "Редактировать запись журнала"
|
95 |
|
96 |
-
#: ../mycred.php:
|
97 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
98 |
msgstr ""
|
99 |
"Вы уверены, что желаете удалить эту запись из журнала? Это невозможно "
|
100 |
"отменить!"
|
101 |
|
102 |
-
#: ../mycred.php:
|
103 |
msgid "Log entry updated"
|
104 |
msgstr "Запись в журнале обновлена"
|
105 |
|
106 |
-
#: ../mycred.php:
|
107 |
-
#: notices.php:
|
108 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
109 |
msgid "Setup"
|
110 |
msgstr "Установка"
|
111 |
|
112 |
-
#: ../mycred.php:
|
113 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
114 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
115 |
msgid "Settings"
|
116 |
msgstr "Настройки"
|
117 |
|
118 |
-
#: ../mycred.php:
|
119 |
msgid ""
|
120 |
"Make sure to backup your database and files before updating, in case "
|
121 |
"anything goes wrong!"
|
@@ -155,10 +155,10 @@ msgstr "Один раз в день (перезагрузка в полночь)
|
|
155 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
156 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
157 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
158 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
159 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
160 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
161 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
162 |
msgid "Select"
|
163 |
msgstr "Выбрать"
|
164 |
|
@@ -258,7 +258,7 @@ msgid "Requirements"
|
|
258 |
msgstr ""
|
259 |
|
260 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
261 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
262 |
msgid "Users"
|
263 |
msgstr "Пользователи"
|
264 |
|
@@ -341,22 +341,22 @@ msgstr ""
|
|
341 |
|
342 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
343 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
344 |
-
#: modules/mycred-module-buddypress.php:
|
345 |
msgid "Do not show"
|
346 |
msgstr "Не показывать"
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
349 |
-
#: buddypress.php:
|
350 |
msgid "Include in Profile Header"
|
351 |
msgstr ""
|
352 |
|
353 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
354 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
355 |
msgid "Include under the \"Profile\" tab"
|
356 |
msgstr "Включить под закладкой \"Профиль\""
|
357 |
|
358 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
359 |
-
#: buddypress.php:
|
360 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
361 |
msgstr ""
|
362 |
|
@@ -425,7 +425,7 @@ msgstr ""
|
|
425 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
426 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
427 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
428 |
-
#: modules/mycred-module-settings.php:
|
429 |
msgid "Access Denied"
|
430 |
msgstr "Ошибка Доступа"
|
431 |
|
@@ -577,8 +577,8 @@ msgstr "Расход средств"
|
|
577 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
578 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
579 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
580 |
-
#: modules/mycred-module-hooks.php:
|
581 |
-
#: plugins/mycred-hook-badgeOS.php:
|
582 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
583 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
584 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -675,15 +675,15 @@ msgstr "Заплатить пользователям"
|
|
675 |
|
676 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
677 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
678 |
-
#: creds.php:
|
679 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
680 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
681 |
-
#: includes/mycred-shortcodes.php:
|
682 |
msgid "Amount"
|
683 |
msgstr "Количество"
|
684 |
|
685 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
686 |
-
#: modules/mycred-module-hooks.php:
|
687 |
msgid "Interval"
|
688 |
msgstr "Промежуток"
|
689 |
|
@@ -735,7 +735,7 @@ msgid "Edit Pending Payment"
|
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
738 |
-
#: addon-buy-creds.php:
|
739 |
msgid "No pending payments found"
|
740 |
msgstr ""
|
741 |
|
@@ -744,23 +744,23 @@ msgid "Not found in Trash"
|
|
744 |
msgstr ""
|
745 |
|
746 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
747 |
-
#: addon-buy-creds.php:
|
748 |
msgid "Transaction ID"
|
749 |
msgstr "Код трансакции "
|
750 |
|
751 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
752 |
-
#: addon-buy-creds.php:
|
753 |
msgid "Buyer"
|
754 |
msgstr ""
|
755 |
|
756 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
757 |
-
#: addon-buy-creds.php:
|
758 |
#: gateway.php:563
|
759 |
msgid "Cost"
|
760 |
msgstr "Цена"
|
761 |
|
762 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
763 |
-
#: addon-buy-creds.php:
|
764 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
765 |
msgid "Gateway"
|
766 |
msgstr "Шлюз"
|
@@ -809,7 +809,7 @@ msgstr "Минимальное количество %plural% , которое к
|
|
809 |
|
810 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
811 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
812 |
-
#: module-settings.php:
|
813 |
msgid "Point Types"
|
814 |
msgstr "Виды очков"
|
815 |
|
@@ -862,7 +862,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
862 |
msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
|
863 |
|
864 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
865 |
-
#: hooks.php:
|
866 |
msgid "Available Shortcodes"
|
867 |
msgstr "Доступные короткие коды"
|
868 |
|
@@ -889,7 +889,7 @@ msgid "%s Payment Gateways"
|
|
889 |
msgstr "%s Способы оплаты"
|
890 |
|
891 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
892 |
-
#: addon-buy-creds.php:
|
893 |
msgid "buyCRED Settings"
|
894 |
msgstr "настройки buyCRED"
|
895 |
|
@@ -914,7 +914,7 @@ msgid "Enable for test purchases."
|
|
914 |
msgstr "Разрешить тестовые покупки."
|
915 |
|
916 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
917 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
918 |
msgid "Update Settings"
|
919 |
msgstr "Настройки обновлений"
|
920 |
|
@@ -922,103 +922,103 @@ msgstr "Настройки обновлений"
|
|
922 |
msgid "More Gateways"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
926 |
#: 634
|
927 |
msgid "Date"
|
928 |
msgstr "Дата "
|
929 |
|
930 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
931 |
msgid "Payed"
|
932 |
msgstr "Оплачено"
|
933 |
|
934 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
935 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
936 |
msgstr "<strong>купить</strong>CRED журнал покупки"
|
937 |
|
938 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
939 |
#: booking/mycred-eventespresso3.php:367
|
940 |
msgid "Gateway Settings"
|
941 |
msgstr "Настройки шлюза"
|
942 |
|
943 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
944 |
-
#: content/myCRED-addon-sell-content.php:
|
945 |
msgid "No purchases found"
|
946 |
msgstr "Покупок не обнаружено"
|
947 |
|
948 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
949 |
-
#: addon-buy-creds.php:
|
950 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
951 |
msgstr ""
|
952 |
"Это расширение необходимо установить перед началом использования этого "
|
953 |
"короткого номера."
|
954 |
|
955 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
956 |
-
#: addon-buy-creds.php:
|
957 |
msgid "No gateways installed."
|
958 |
msgstr "Нет установленных шлюзов."
|
959 |
|
960 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
961 |
-
#: addon-buy-creds.php:
|
962 |
msgid "Gateway does not exist."
|
963 |
msgstr "Шлюз не существует."
|
964 |
|
965 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
966 |
msgid "Yourself"
|
967 |
msgstr "Самостоятельно"
|
968 |
|
969 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
970 |
msgid "No active gateways found."
|
971 |
msgstr "Активных шлюзов не обнаружено."
|
972 |
|
973 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
974 |
msgid "The selected gateway is not active."
|
975 |
msgstr "Выбранный шлюз не активен."
|
976 |
|
977 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
978 |
#, php-format
|
979 |
msgid "Buy with %gateway%"
|
980 |
msgstr "Приобрести с %gateway%"
|
981 |
|
982 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
983 |
#: content/myCRED-addon-sell-content.php:44
|
984 |
msgid "Buy Now"
|
985 |
msgstr "Купить сейчас"
|
986 |
|
987 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
988 |
msgid "No users found"
|
989 |
msgstr "Пользователи не найдены"
|
990 |
|
991 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
992 |
msgid "To"
|
993 |
msgstr "До"
|
994 |
|
995 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
996 |
msgid "Select Amount"
|
997 |
msgstr "Выбать количество "
|
998 |
|
999 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1000 |
msgid "min."
|
1001 |
msgstr "мин."
|
1002 |
|
1003 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1004 |
msgid "Select Gateway"
|
1005 |
msgstr "Выбрать шлюз"
|
1006 |
|
1007 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1008 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1009 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1010 |
#: php:35
|
1011 |
msgid "Pay Now"
|
1012 |
msgstr "Оплатить сейчас"
|
1013 |
|
1014 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1015 |
-
#: php:
|
1016 |
msgid "Cancel"
|
1017 |
msgstr "Отменить"
|
1018 |
|
1019 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1020 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1021 |
-
#: module-settings.php:
|
1022 |
msgid "Actions"
|
1023 |
msgstr "Действия"
|
1024 |
|
@@ -1162,55 +1162,55 @@ msgstr "Нажмите тут, если вы не были перенаправ
|
|
1162 |
msgid "The following information will be sent to the gateway"
|
1163 |
msgstr "Следующая информация будет отправлена в шлюз"
|
1164 |
|
1165 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1166 |
msgid "Outside US"
|
1167 |
msgstr "За пределами США "
|
1168 |
|
1169 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1170 |
msgid "January"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1174 |
msgid "February"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1178 |
msgid "March"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1182 |
msgid "April"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1186 |
msgid "May"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1190 |
msgid "June"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1194 |
msgid "July"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1198 |
msgid "August"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1202 |
msgid "September"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1206 |
msgid "October"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1210 |
msgid "November"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1214 |
msgid "December"
|
1215 |
msgstr ""
|
1216 |
|
@@ -1463,7 +1463,7 @@ msgstr "Страница оформления заказа"
|
|
1463 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1464 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1465 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1466 |
-
#: modules/mycred-module-hooks.php:
|
1467 |
msgid "Title"
|
1468 |
msgstr "Название"
|
1469 |
|
@@ -1668,7 +1668,7 @@ msgid "not yet used"
|
|
1668 |
msgstr "еще не использовано"
|
1669 |
|
1670 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1671 |
-
#: php:
|
1672 |
msgid "Total"
|
1673 |
msgstr "Общее "
|
1674 |
|
@@ -1848,7 +1848,7 @@ msgid "Apply Coupon"
|
|
1848 |
msgstr "Подать запрос на купон"
|
1849 |
|
1850 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1851 |
-
#: notices/myCRED-addon-email-notices.php:
|
1852 |
msgid "Email Notice"
|
1853 |
msgstr "Уведомление по электронной почте"
|
1854 |
|
@@ -2041,17 +2041,17 @@ msgstr ""
|
|
2041 |
"переопределены при редактировании электронных писем."
|
2042 |
|
2043 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2044 |
-
#: notices/myCRED-addon-email-notices.php:
|
2045 |
msgid "Email Settings"
|
2046 |
msgstr "Настройки электронного письма"
|
2047 |
|
2048 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2049 |
-
#: notices/myCRED-addon-email-notices.php:
|
2050 |
msgid "Senders Name:"
|
2051 |
msgstr "Имя отправителя:"
|
2052 |
|
2053 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2054 |
-
#: notices/myCRED-addon-email-notices.php:
|
2055 |
msgid "Senders Email:"
|
2056 |
msgstr "Письмо отправителя:"
|
2057 |
|
@@ -2075,140 +2075,140 @@ msgstr "Настройка оформления письма"
|
|
2075 |
msgid "Ignored if HTML is not allowed in emails."
|
2076 |
msgstr "Игнорируется, если HTML в письмах не разрешается."
|
2077 |
|
2078 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2079 |
-
#: notices/myCRED-addon-email-notices.php:
|
2080 |
msgid "Email Subject"
|
2081 |
msgstr "Тема письма"
|
2082 |
|
2083 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2084 |
msgid "Status"
|
2085 |
msgstr "Статус"
|
2086 |
|
2087 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2088 |
msgid "Not Active"
|
2089 |
msgstr "Не активно"
|
2090 |
|
2091 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2092 |
#, php-format
|
2093 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2094 |
msgstr "Запланированный: <br /><strong>%1$s</strong>"
|
2095 |
|
2096 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2097 |
msgid "Active"
|
2098 |
msgstr "Активен"
|
2099 |
|
2100 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2101 |
#, php-format
|
2102 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2103 |
msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
|
2104 |
|
2105 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2106 |
msgid "Email is sent when"
|
2107 |
msgstr "Электронное письмо отправляется, когда"
|
2108 |
|
2109 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2110 |
msgid "Missing instance for this notice!"
|
2111 |
msgstr "Отсутствует пример для этого уведомления!"
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
-
#: notices/myCRED-addon-email-notices.php:
|
2115 |
-
#: addon-email-notices.php:
|
2116 |
msgid "Sent To"
|
2117 |
msgstr "Отправить"
|
2118 |
|
2119 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2120 |
-
#: notices/myCRED-addon-email-notices.php:
|
2121 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2122 |
msgid "User"
|
2123 |
msgstr "Пользователь"
|
2124 |
|
2125 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2126 |
-
#: notices/myCRED-addon-email-notices.php:
|
2127 |
msgid "Administrator"
|
2128 |
msgstr "Администратору"
|
2129 |
|
2130 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2131 |
msgid "Both Administrator and User"
|
2132 |
msgstr "Администратору и Пользователю"
|
2133 |
|
2134 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2135 |
msgid "Available Template Tags"
|
2136 |
msgstr "Доступные теги шаблона"
|
2137 |
|
2138 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2139 |
msgid "Email Header"
|
2140 |
msgstr "Заголовок и-мейла"
|
2141 |
|
2142 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2143 |
msgid "Send this email notice when..."
|
2144 |
msgstr "Отправить это и-мейл оповещение когда..."
|
2145 |
|
2146 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2147 |
msgid "Recipient:"
|
2148 |
msgstr "Получатель:"
|
2149 |
|
2150 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2151 |
msgid "Both"
|
2152 |
msgstr "Оба"
|
2153 |
|
2154 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2155 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2156 |
-
#: settings.php:
|
2157 |
-
#: module-settings.php:
|
2158 |
msgid "Label"
|
2159 |
msgstr "Ярлык"
|
2160 |
|
2161 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2162 |
msgid "Reply-To Email:"
|
2163 |
msgstr "Ответить на и-мейл:"
|
2164 |
|
2165 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2166 |
msgid "Save"
|
2167 |
msgstr "Сохранить"
|
2168 |
|
2169 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2170 |
msgid "CSS Styling"
|
2171 |
msgstr "Оформление CSS"
|
2172 |
|
2173 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2174 |
msgid "Site Related"
|
2175 |
msgstr "Сопутствующий сайт"
|
2176 |
|
2177 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2178 |
msgid "Your websites title"
|
2179 |
msgstr "Заголовок ваших веб-сайтов"
|
2180 |
|
2181 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2182 |
msgid "Your websites address"
|
2183 |
msgstr "Адрес ваших веб-сайтов"
|
2184 |
|
2185 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2186 |
msgid "Your websites tagline (description)"
|
2187 |
msgstr "Подзаголовок вашего веб-сайта (описание)"
|
2188 |
|
2189 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2190 |
msgid "Your websites admin email"
|
2191 |
msgstr "Электронный адрес администратора вашего веб-сайта"
|
2192 |
|
2193 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2194 |
msgid "Total number of blog members"
|
2195 |
msgstr "Общее количество участников блога"
|
2196 |
|
2197 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2198 |
-
#: notices/myCRED-addon-email-notices.php:
|
2199 |
-
#: addon-email-notices.php:
|
2200 |
msgid "Email Notice Updated."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2204 |
msgid "Email Notice Activated"
|
2205 |
msgstr "И-мейл оповещение активировано"
|
2206 |
|
2207 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2208 |
msgid "Email Notice Saved"
|
2209 |
msgstr "И-мейл оповещение сохранено"
|
2210 |
|
2211 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2212 |
msgid ""
|
2213 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2214 |
"are not yet ready to use this email notice!"
|
@@ -2216,28 +2216,28 @@ msgstr ""
|
|
2216 |
"После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
|
2217 |
"Черновик\", если вы не готовы использовать это и-мейл оповещение!"
|
2218 |
|
2219 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2220 |
#, php-format
|
2221 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2222 |
msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
|
2223 |
|
2224 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2225 |
msgid "This email notice is active."
|
2226 |
msgstr "И-мейл извещение активно."
|
2227 |
|
2228 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2229 |
msgid "Settings saved."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2233 |
msgid "Unsubscribe"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2237 |
msgid "There are no email notifications yet."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2241 |
msgid "Save Changes"
|
2242 |
msgstr ""
|
2243 |
|
@@ -2286,7 +2286,7 @@ msgstr "Оплачено"
|
|
2286 |
|
2287 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2288 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2289 |
-
#: 52 ../includes/mycred-network.php:53
|
2290 |
msgid "myCRED"
|
2291 |
msgstr "myCRED"
|
2292 |
|
@@ -2369,7 +2369,7 @@ msgstr "Сколько стоит 1%_singular% в %currency%?"
|
|
2369 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2370 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2371 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2372 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2373 |
msgid "Exchange Rate"
|
2374 |
msgstr "Курс валют"
|
2375 |
|
@@ -2670,7 +2670,7 @@ msgstr "Заголовок, который отображается на кви
|
|
2670 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2671 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2672 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2673 |
-
#: sell-content.php:
|
2674 |
msgid "Button Label"
|
2675 |
msgstr "Кнопка ярлыка"
|
2676 |
|
@@ -2684,7 +2684,7 @@ msgstr "Кнопка оплаты"
|
|
2684 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2685 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2686 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2687 |
-
#: sell-content.php:
|
2688 |
msgid "Price"
|
2689 |
msgstr "Цена"
|
2690 |
|
@@ -2793,8 +2793,8 @@ msgid "Reject"
|
|
2793 |
msgstr "Отклонить"
|
2794 |
|
2795 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2796 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2797 |
-
#: modules/mycred-module-settings.php:
|
2798 |
msgid "Delete"
|
2799 |
msgstr "Удалить"
|
2800 |
|
@@ -2921,7 +2921,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2921 |
msgstr "Используйте включенное CSS Styling для оповещений."
|
2922 |
|
2923 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2924 |
-
#: module-buddypress.php:
|
2925 |
msgid "Template"
|
2926 |
msgstr "Шаблон"
|
2927 |
|
@@ -3203,7 +3203,7 @@ msgstr ""
|
|
3203 |
"администратора и/или напротив, если ранги \"Публичные\""
|
3204 |
|
3205 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3206 |
-
#: php:
|
3207 |
msgid "Do not show."
|
3208 |
msgstr "Не показывать."
|
3209 |
|
@@ -3253,9 +3253,9 @@ msgid "No users found with this rank"
|
|
3253 |
msgstr "В этом ранге пользователи не обнаружены"
|
3254 |
|
3255 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3256 |
-
#: shortcodes.php:
|
3257 |
-
#: shortcodes.php:
|
3258 |
-
#: shortcodes.php:
|
3259 |
msgid "error"
|
3260 |
msgstr "ошибка"
|
3261 |
|
@@ -3382,40 +3382,40 @@ msgstr "Журнал шаблона для распродаж"
|
|
3382 |
msgid "%s Sell This"
|
3383 |
msgstr "%s продать это"
|
3384 |
|
3385 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3386 |
#, php-format
|
3387 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3388 |
msgstr ""
|
3389 |
"%s Необходимо установить продажу контента перед началом использования этого "
|
3390 |
"свойства."
|
3391 |
|
3392 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3393 |
msgid "Setup add-on"
|
3394 |
msgstr "Расширение настройки"
|
3395 |
|
3396 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3397 |
msgid "Lets do it"
|
3398 |
msgstr "Выполнить это"
|
3399 |
|
3400 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3401 |
#, php-format
|
3402 |
msgid "Enable sale of this %s"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3406 |
msgid "Purchase expires after"
|
3407 |
msgstr "Срок действия покупки истекает после "
|
3408 |
|
3409 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3410 |
msgid "Thank you for your purchase!"
|
3411 |
msgstr "Благодарим вас за вашу покупку!"
|
3412 |
|
3413 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3414 |
-
#: content/myCRED-addon-sell-content.php:
|
3415 |
msgid "The following content is set for sale:"
|
3416 |
msgstr "Следующий контент установлен на продажу:"
|
3417 |
|
3418 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3419 |
msgid "Purchased"
|
3420 |
msgstr "Купленный"
|
3421 |
|
@@ -3428,7 +3428,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3428 |
msgstr "Вы превысили ваш %limit% лимит передачи."
|
3429 |
|
3430 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3431 |
-
#: php:
|
3432 |
msgid "Transfer"
|
3433 |
msgstr "Передать"
|
3434 |
|
@@ -3467,7 +3467,7 @@ msgstr ""
|
|
3467 |
"это не будет выполнено!"
|
3468 |
|
3469 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3470 |
-
#: php:
|
3471 |
msgid "Insufficient Funds. Please try a lower amount."
|
3472 |
msgstr ""
|
3473 |
|
@@ -3848,282 +3848,282 @@ msgstr "Искать результаты"
|
|
3848 |
msgid "My Entire Log"
|
3849 |
msgstr "Мой полный журнал"
|
3850 |
|
3851 |
-
#: ../includes/mycred-functions.php:
|
3852 |
msgid "ref empty"
|
3853 |
msgstr "образец пустой"
|
3854 |
|
3855 |
-
#: ../includes/mycred-functions.php:
|
3856 |
msgid "incorrect user id format"
|
3857 |
msgstr "неверный формат id пользователя"
|
3858 |
|
3859 |
-
#: ../includes/mycred-functions.php:
|
3860 |
msgid "incorrect unix timestamp (from):"
|
3861 |
msgstr "неправильная временная отметка операционной системы (от):"
|
3862 |
|
3863 |
-
#: ../includes/mycred-functions.php:
|
3864 |
msgid "incorrect unix timestamp (to):"
|
3865 |
msgstr "неправильная временная отметка операционной системы (до):"
|
3866 |
|
3867 |
-
#: ../includes/mycred-functions.php:
|
3868 |
msgid "Website Registration"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: ../includes/mycred-functions.php:
|
3872 |
msgid "Website Visit"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: ../includes/mycred-functions.php:
|
3876 |
msgid "Viewing Content (Member)"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: ../includes/mycred-functions.php:
|
3880 |
msgid "Viewing Content (Author)"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: ../includes/mycred-functions.php:
|
3884 |
msgid "Logging in"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: ../includes/mycred-functions.php:
|
3888 |
msgid "Publishing Content"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: ../includes/mycred-functions.php:
|
3892 |
msgid "Approved Comment"
|
3893 |
msgstr "Комментарий одобрен"
|
3894 |
|
3895 |
-
#: ../includes/mycred-functions.php:
|
3896 |
msgid "Unapproved Comment"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: ../includes/mycred-functions.php:
|
3900 |
msgid "SPAM Comment"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: ../includes/mycred-functions.php:
|
3904 |
msgid "Deleted Comment"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: ../includes/mycred-functions.php:
|
3908 |
msgid "Link Click"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: ../includes/mycred-functions.php:
|
3912 |
msgid "Watching Video"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: ../includes/mycred-functions.php:
|
3916 |
msgid "Visitor Referral"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: ../includes/mycred-functions.php:
|
3920 |
msgid "Signup Referral"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: ../includes/mycred-functions.php:
|
3924 |
msgid "New Profile Update"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: ../includes/mycred-functions.php:
|
3928 |
msgid "Avatar Upload"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: ../includes/mycred-functions.php:
|
3932 |
msgid "New Friendship"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: ../includes/mycred-functions.php:
|
3936 |
msgid "Ended Friendship"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: ../includes/mycred-functions.php:
|
3940 |
msgid "New Profile Comment"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: ../includes/mycred-functions.php:
|
3944 |
msgid "Profile Comment Deletion"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: ../includes/mycred-functions.php:
|
3948 |
msgid "New Message"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: ../includes/mycred-functions.php:
|
3952 |
msgid "Sending Gift"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: ../includes/mycred-functions.php:
|
3956 |
msgid "New Group"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: ../includes/mycred-functions.php:
|
3960 |
msgid "Deleted Group"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: ../includes/mycred-functions.php:
|
3964 |
msgid "New Group Forum Topic"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: ../includes/mycred-functions.php:
|
3968 |
msgid "Edit Group Forum Topic"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: ../includes/mycred-functions.php:
|
3972 |
msgid "New Group Forum Post"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: ../includes/mycred-functions.php:
|
3976 |
msgid "Edit Group Forum Post"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: ../includes/mycred-functions.php:
|
3980 |
msgid "Joining Group"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: ../includes/mycred-functions.php:
|
3984 |
msgid "Leaving Group"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: ../includes/mycred-functions.php:
|
3988 |
msgid "New Group Avatar"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: ../includes/mycred-functions.php:
|
3992 |
msgid "New Group Comment"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: ../includes/mycred-functions.php:
|
3996 |
#: php:166
|
3997 |
msgid "Photo Upload"
|
3998 |
msgstr "Загрузка фото"
|
3999 |
|
4000 |
-
#: ../includes/mycred-functions.php:
|
4001 |
#: php:176
|
4002 |
msgid "Video Upload"
|
4003 |
msgstr "Загрузка фидео"
|
4004 |
|
4005 |
-
#: ../includes/mycred-functions.php:
|
4006 |
#: php:186
|
4007 |
msgid "Music Upload"
|
4008 |
msgstr "Загрузка музыки"
|
4009 |
|
4010 |
-
#: ../includes/mycred-functions.php:
|
4011 |
msgid "New Link"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: ../includes/mycred-functions.php:
|
4015 |
msgid "Link Voting"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: ../includes/mycred-functions.php:
|
4019 |
msgid "Link Update"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: ../includes/mycred-functions.php:
|
4023 |
msgid "New Forum (bbPress)"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: ../includes/mycred-functions.php:
|
4027 |
msgid "New Forum Topic (bbPress)"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: ../includes/mycred-functions.php:
|
4031 |
msgid "Favorited Topic (bbPress)"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: ../includes/mycred-functions.php:
|
4035 |
msgid "New Topic Reply (bbPress)"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: ../includes/mycred-functions.php:
|
4039 |
msgid "Form Submission (Contact Form 7)"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: ../includes/mycred-functions.php:
|
4043 |
msgid "Form Submission (Gravity Form)"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: ../includes/mycred-functions.php:
|
4047 |
msgid "New Forum Topic (SimplePress)"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: ../includes/mycred-functions.php:
|
4051 |
msgid "New Forum Post (SimplePress)"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: ../includes/mycred-functions.php:
|
4055 |
msgid "Poll Voting"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: ../includes/mycred-functions.php:
|
4059 |
msgid "Sending an Invite"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: ../includes/mycred-functions.php:
|
4063 |
msgid "Accepting an Invite"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: ../includes/mycred-functions.php:
|
4067 |
msgid "Banking Payout"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: ../includes/mycred-functions.php:
|
4071 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: ../includes/mycred-functions.php:
|
4075 |
msgid "buyCRED Purchase (Skrill)"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: ../includes/mycred-functions.php:
|
4079 |
msgid "buyCRED Purchase (Zombaio)"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: ../includes/mycred-functions.php:
|
4083 |
msgid "buyCRED Purchase (NETBilling)"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: ../includes/mycred-functions.php:
|
4087 |
msgid "buyCRED Purchase (BitPay)"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: ../includes/mycred-functions.php:
|
4091 |
msgid "Coupon Purchase"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: ../includes/mycred-functions.php:
|
4095 |
msgid "Store Purchase (WooCommerce)"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: ../includes/mycred-functions.php:
|
4099 |
msgid "Store Purchase (MarketPress)"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: ../includes/mycred-functions.php:
|
4103 |
msgid "Store Purchase (WP E-Commerce)"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: ../includes/mycred-functions.php:
|
4107 |
msgid "Event Payment (Event Espresso)"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: ../includes/mycred-functions.php:
|
4111 |
msgid "Event Sale (Event Espresso)"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: ../includes/mycred-functions.php:
|
4115 |
msgid "Event Payment (Events Manager)"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: ../includes/mycred-functions.php:
|
4119 |
msgid "Event Sale (Events Manager)"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: ../includes/mycred-functions.php:
|
4123 |
msgid "Content Purchase / Sale"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: ../includes/mycred-functions.php:
|
4127 |
msgid "Manual Adjustment by Admin"
|
4128 |
msgstr ""
|
4129 |
|
@@ -4171,14 +4171,14 @@ msgstr "myCRED требует версию РНР 5.2.4 или выше. Най
|
|
4171 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4172 |
msgstr "myCRED требует версию SQL 5.0 или выше. Найдены версии:"
|
4173 |
|
4174 |
-
#: ../includes/mycred-install.php:
|
4175 |
msgid ""
|
4176 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4177 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4178 |
"for you!"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: ../includes/mycred-install.php:
|
4182 |
msgid ""
|
4183 |
"Sorry but your WordPress installation does not reach the minimum "
|
4184 |
"requirements for running myCRED. The following errors were given:"
|
@@ -4186,28 +4186,28 @@ msgstr ""
|
|
4186 |
"К сожалению, ваша установка WordPress не соответствует минимальным "
|
4187 |
"требованиям для запуска myCRED. Были обнаружены следующие ошибки:"
|
4188 |
|
4189 |
-
#: ../includes/mycred-install.php:
|
4190 |
msgid "myCRED needs your attention."
|
4191 |
msgstr "myCRED нуждается в вашем обслуживании."
|
4192 |
|
4193 |
-
#: ../includes/mycred-install.php:
|
4194 |
msgid "Run Setup"
|
4195 |
msgstr "Запустить установку"
|
4196 |
|
4197 |
-
#: ../includes/mycred-install.php:
|
4198 |
msgid "myCRED Setup"
|
4199 |
msgstr "Установка myCRED"
|
4200 |
|
4201 |
-
#: ../includes/mycred-install.php:
|
4202 |
#, php-format
|
4203 |
msgid "%s Setup"
|
4204 |
msgstr "%s Установка"
|
4205 |
|
4206 |
-
#: ../includes/mycred-install.php:
|
4207 |
msgid "Step"
|
4208 |
msgstr "Шаг"
|
4209 |
|
4210 |
-
#: ../includes/mycred-install.php:
|
4211 |
msgid ""
|
4212 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4213 |
"points format, layout and security settings."
|
@@ -4215,75 +4215,75 @@ msgstr ""
|
|
4215 |
"Нажмите \"Начать установку\", чтобы установить myCRED. Вы сможете выбирать "
|
4216 |
"формат ваших баллов, настройки макета страницы и безопасности. "
|
4217 |
|
4218 |
-
#: ../includes/mycred-install.php:
|
4219 |
msgid "Begin Setup"
|
4220 |
msgstr "Начать установку"
|
4221 |
|
4222 |
-
#: ../includes/mycred-install.php:
|
4223 |
msgid "Select the format you want to use for your points."
|
4224 |
msgstr "Выбрать формат, который вы хотите использовать для ваших единиц."
|
4225 |
|
4226 |
-
#: ../includes/mycred-install.php:
|
4227 |
msgid "Format"
|
4228 |
msgstr "Формат"
|
4229 |
|
4230 |
-
#: ../includes/mycred-install.php:
|
4231 |
msgid "Separators"
|
4232 |
msgstr "Сепараторы"
|
4233 |
|
4234 |
-
#: ../includes/mycred-install.php:
|
4235 |
msgid "Decimals"
|
4236 |
msgstr "Дроби"
|
4237 |
|
4238 |
-
#: ../includes/mycred-install.php:
|
4239 |
msgid "Use zero for no decimals."
|
4240 |
msgstr "Используйте ноль для не десятичных чисел"
|
4241 |
|
4242 |
-
#: ../includes/mycred-install.php:
|
4243 |
msgid "Presentation"
|
4244 |
msgstr "Отображение"
|
4245 |
|
4246 |
-
#: ../includes/mycred-install.php:
|
4247 |
msgid "Name (Singular)"
|
4248 |
msgstr "Имя (единственное число)"
|
4249 |
|
4250 |
-
#: ../includes/mycred-install.php:
|
4251 |
msgid "Name (Plural)"
|
4252 |
msgstr "Имя (множественное число)"
|
4253 |
|
4254 |
-
#: ../includes/mycred-install.php:
|
4255 |
msgid "Prefix"
|
4256 |
msgstr "Префикс"
|
4257 |
|
4258 |
-
#: ../includes/mycred-install.php:
|
4259 |
msgid "Suffix"
|
4260 |
msgstr "Суффикс"
|
4261 |
|
4262 |
-
#: ../includes/mycred-install.php:
|
4263 |
msgid "Cancel Setup"
|
4264 |
msgstr "Установка отмены"
|
4265 |
|
4266 |
-
#: ../includes/mycred-install.php:
|
4267 |
msgid "Next"
|
4268 |
msgstr "Следующее"
|
4269 |
|
4270 |
-
#: ../includes/mycred-install.php:
|
4271 |
msgid "Security"
|
4272 |
msgstr "Безопасность"
|
4273 |
|
4274 |
-
#: ../includes/mycred-install.php:
|
4275 |
msgid "Edit Settings Capability"
|
4276 |
msgstr "Редактировать возможности настроек"
|
4277 |
|
4278 |
-
#: ../includes/mycred-install.php:
|
4279 |
msgid "Edit Users %plural% Capability"
|
4280 |
msgstr "Редактировать возможности %plural% пользователей"
|
4281 |
|
4282 |
-
#: ../includes/mycred-install.php:
|
4283 |
msgid "Maximum %plural% payouts"
|
4284 |
msgstr "Максимальные выплаты %plural%"
|
4285 |
|
4286 |
-
#: ../includes/mycred-install.php:
|
4287 |
msgid ""
|
4288 |
"As an added security, you can set the maximum amount a user can gain or "
|
4289 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4296,39 +4296,39 @@ msgstr ""
|
|
4296 |
"пользователь сможет перевести, купить или потратить в магазине. Используйте "
|
4297 |
"ноль для отключения."
|
4298 |
|
4299 |
-
#: ../includes/mycred-install.php:
|
4300 |
msgid "Excludes"
|
4301 |
msgstr "Исключает"
|
4302 |
|
4303 |
-
#: ../includes/mycred-install.php:
|
4304 |
msgid "Exclude those who can \"Edit Settings\"."
|
4305 |
msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
|
4306 |
|
4307 |
-
#: ../includes/mycred-install.php:
|
4308 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4309 |
msgstr "Исключить тех, кто может \"Редактировать Настройки %plural%\"."
|
4310 |
|
4311 |
-
#: ../includes/mycred-install.php:
|
4312 |
msgid "Exclude the following user IDs:"
|
4313 |
msgstr "Исключить ID следующих пользователей: "
|
4314 |
|
4315 |
-
#: ../includes/mycred-install.php:
|
4316 |
msgid "User Deletions"
|
4317 |
msgstr "Удаление пользователя"
|
4318 |
|
4319 |
-
#: ../includes/mycred-install.php:
|
4320 |
msgid "Delete log entries when user is deleted."
|
4321 |
msgstr "Удалять записи в журнале после удаления пользователя."
|
4322 |
|
4323 |
-
#: ../includes/mycred-install.php:
|
4324 |
msgid "Ready"
|
4325 |
msgstr "Готово"
|
4326 |
|
4327 |
-
#: ../includes/mycred-install.php:
|
4328 |
msgid "Almost done! Click the button below to finish this setup."
|
4329 |
msgstr "Почти готово! Нажмите кнопку ниже для завершения этой установки."
|
4330 |
|
4331 |
-
#: ../includes/mycred-install.php:
|
4332 |
msgid "Install & Run"
|
4333 |
msgstr "Установка и запуск"
|
4334 |
|
@@ -4344,29 +4344,29 @@ msgstr[0] "запись"
|
|
4344 |
msgstr[1] "записи"
|
4345 |
msgstr[2] "записи"
|
4346 |
|
4347 |
-
#: ../includes/mycred-log.php:
|
4348 |
msgid "Go to the first page"
|
4349 |
msgstr "Перейти на первую страницу"
|
4350 |
|
4351 |
-
#: ../includes/mycred-log.php:
|
4352 |
msgid "Go to the previous page"
|
4353 |
msgstr "Перейти на предыдущую страницу"
|
4354 |
|
4355 |
-
#: ../includes/mycred-log.php:
|
4356 |
msgid "Current page"
|
4357 |
msgstr "Текущая страница"
|
4358 |
|
4359 |
-
#: ../includes/mycred-log.php:
|
4360 |
#, php-format
|
4361 |
msgctxt "paging"
|
4362 |
msgid "%1$s of %2$s"
|
4363 |
msgstr "%1$s из %2$s"
|
4364 |
|
4365 |
-
#: ../includes/mycred-log.php:
|
4366 |
msgid "Go to the next page"
|
4367 |
msgstr "Перейти на следующую страницу"
|
4368 |
|
4369 |
-
#: ../includes/mycred-log.php:
|
4370 |
msgid "Go to the last page"
|
4371 |
msgstr "Перейти на последнюю страницу"
|
4372 |
|
@@ -4374,7 +4374,7 @@ msgstr "Перейти на последнюю страницу"
|
|
4374 |
msgid "Show all references"
|
4375 |
msgstr "Показать все ссылки"
|
4376 |
|
4377 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4378 |
msgid "User ID"
|
4379 |
msgstr "ID пользователя"
|
4380 |
|
@@ -4600,92 +4600,92 @@ msgstr ""
|
|
4600 |
"Не забывайте отключать, если приложение не используется, для предотвращения "
|
4601 |
"злонамеренных звонков "
|
4602 |
|
4603 |
-
#: ../includes/mycred-shortcodes.php:
|
4604 |
msgid "Leaderboard is empty."
|
4605 |
msgstr "Таблица лидеров пуста."
|
4606 |
|
4607 |
-
#: ../includes/mycred-shortcodes.php:
|
4608 |
msgid "Amount missing!"
|
4609 |
msgstr "Сумма отсутствует!"
|
4610 |
|
4611 |
-
#: ../includes/mycred-shortcodes.php:
|
4612 |
msgid "Log Template Missing!"
|
4613 |
msgstr "Шаблон журнала отсутствует!"
|
4614 |
|
4615 |
-
#: ../includes/mycred-shortcodes.php:
|
4616 |
msgid "Anchor missing URL!"
|
4617 |
msgstr "Отсутствует привязка URL!"
|
4618 |
|
4619 |
-
#: ../includes/mycred-shortcodes.php:
|
4620 |
msgid "User ID missing for recipient."
|
4621 |
msgstr "Отсутствует ID пользователя для получателя."
|
4622 |
|
4623 |
-
#: ../includes/mycred-shortcodes.php:
|
4624 |
msgid "Sent"
|
4625 |
msgstr "Отправлено"
|
4626 |
|
4627 |
-
#: ../includes/mycred-shortcodes.php:
|
4628 |
msgid "Error - Try Again"
|
4629 |
msgstr "Ошибка - Повторите попытку"
|
4630 |
|
4631 |
-
#: ../includes/mycred-shortcodes.php:
|
4632 |
msgid "A video ID is required for this shortcode"
|
4633 |
msgstr "Для этого короткого номера требуется ID видео"
|
4634 |
|
4635 |
-
#: ../includes/mycred-shortcodes.php:
|
4636 |
msgid "Point types not found."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
-
#: ../includes/mycred-shortcodes.php:
|
4640 |
-
#: includes/mycred-shortcodes.php:
|
4641 |
#, php-format
|
4642 |
msgid "You are excluded from using %s."
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: ../includes/mycred-shortcodes.php:
|
4646 |
msgid "Your balance is too low to use this feature."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: ../includes/mycred-shortcodes.php:
|
4650 |
#, php-format
|
4651 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: ../includes/mycred-shortcodes.php:
|
4655 |
#, php-format
|
4656 |
msgid "Your current %s balance"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#: ../includes/mycred-shortcodes.php:
|
4660 |
#, php-format
|
4661 |
msgid "Minimum %s"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: ../includes/mycred-shortcodes.php:
|
4665 |
#, php-format
|
4666 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: ../includes/mycred-shortcodes.php:
|
4670 |
msgid "Exchange"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: ../includes/mycred-shortcodes.php:
|
4674 |
#, php-format
|
4675 |
msgid "You must exchange at least %s!"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: ../includes/mycred-shortcodes.php:
|
4679 |
#, php-format
|
4680 |
msgid "Exchange from %s"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: ../includes/mycred-shortcodes.php:
|
4684 |
#, php-format
|
4685 |
msgid "Exchange to %s"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: ../includes/mycred-shortcodes.php:
|
4689 |
#, php-format
|
4690 |
msgid "You have successfully exchanged %s into %s."
|
4691 |
msgstr ""
|
@@ -4704,7 +4704,7 @@ msgstr "(%s) Мой баланс"
|
|
4704 |
msgid "My Balance"
|
4705 |
msgstr "Мой баланс"
|
4706 |
|
4707 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4708 |
msgid "%plural% History"
|
4709 |
msgstr "%plural% История"
|
4710 |
|
@@ -5139,64 +5139,64 @@ msgstr "%s's История"
|
|
5139 |
msgid "Current balance"
|
5140 |
msgstr "Текущий баланс"
|
5141 |
|
5142 |
-
#: ../modules/mycred-module-buddypress.php:
|
5143 |
msgid "Go"
|
5144 |
msgstr "Перейти"
|
5145 |
|
5146 |
-
#: ../modules/mycred-module-buddypress.php:
|
5147 |
msgid "Show in Profile"
|
5148 |
msgstr "Показать в профиле"
|
5149 |
|
5150 |
-
#: ../modules/mycred-module-buddypress.php:
|
5151 |
#, php-format
|
5152 |
msgid "%singular% Balance"
|
5153 |
msgstr "%singular% Баланс"
|
5154 |
|
5155 |
-
#: ../modules/mycred-module-buddypress.php:
|
5156 |
#, php-format
|
5157 |
msgid "Members and visitors can other members %_singular% balance."
|
5158 |
msgstr "Участники и гости могут видеть %_singular% баланс других участников"
|
5159 |
|
5160 |
-
#: ../modules/mycred-module-buddypress.php:
|
5161 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5162 |
msgstr ""
|
5163 |
"Укажите, что вы также можете использовать %rank_logo% для демонстрации "
|
5164 |
"характерного изображения ранга. "
|
5165 |
|
5166 |
-
#: ../modules/mycred-module-buddypress.php:
|
5167 |
msgid "Members can view each others %_plural% history."
|
5168 |
msgstr "Участники могут просматривать историю друг %_plural% друга."
|
5169 |
|
5170 |
-
#: ../modules/mycred-module-buddypress.php:
|
5171 |
msgid "Menu Title"
|
5172 |
msgstr "Заголовок меню"
|
5173 |
|
5174 |
-
#: ../modules/mycred-module-buddypress.php:
|
5175 |
msgid "Title shown to me"
|
5176 |
msgstr "Заголовок, который будет показан мне"
|
5177 |
|
5178 |
-
#: ../modules/mycred-module-buddypress.php:
|
5179 |
#, php-format
|
5180 |
msgid "Title shown to others. Use %s to show the first name."
|
5181 |
msgstr "Заголовок, который был показан остальным. Используйте %, чтобы показать имя."
|
5182 |
|
5183 |
-
#: ../modules/mycred-module-buddypress.php:
|
5184 |
msgid "Menu Position"
|
5185 |
msgstr "Позиция меню"
|
5186 |
|
5187 |
-
#: ../modules/mycred-module-buddypress.php:
|
5188 |
msgid "Current menu positions:"
|
5189 |
msgstr "Текущие позиции меню:"
|
5190 |
|
5191 |
-
#: ../modules/mycred-module-buddypress.php:
|
5192 |
msgid "History URL slug"
|
5193 |
msgstr "Ярлык URL-а истории"
|
5194 |
|
5195 |
-
#: ../modules/mycred-module-buddypress.php:
|
5196 |
msgid "Do not use empty spaces!"
|
5197 |
msgstr "Не используйте пустые места!"
|
5198 |
|
5199 |
-
#: ../modules/mycred-module-buddypress.php:
|
5200 |
msgid "Number of history entries to show"
|
5201 |
msgstr "Количество записей истории, которое нужно показать"
|
5202 |
|
@@ -5335,8 +5335,8 @@ msgstr ""
|
|
5335 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5336 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5337 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5338 |
-
#:
|
5339 |
-
#: php:
|
5340 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5341 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5342 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5397,8 +5397,8 @@ msgstr ""
|
|
5397 |
msgid "%plural% for viewing %s"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5401 |
-
#: ../modules/mycred-module-hooks.php:
|
5402 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5403 |
msgid "Limit"
|
5404 |
msgstr "Ограничение"
|
@@ -5490,7 +5490,7 @@ msgstr ""
|
|
5490 |
msgid "Custom tags: %url%, %title% or %id%."
|
5491 |
msgstr "Пользовательские теги: %url%, %title% или %id%."
|
5492 |
|
5493 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5494 |
msgid "Note!"
|
5495 |
msgstr "Внимание!"
|
5496 |
|
@@ -5506,44 +5506,44 @@ msgstr ""
|
|
5506 |
"вы используйте эту функцию для того, чтобы \"поделиться\" контентом, "
|
5507 |
"рекомендуется ограничиться ID."
|
5508 |
|
5509 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5510 |
msgid "Available Shortcode"
|
5511 |
msgstr "Доступный короткий код"
|
5512 |
|
5513 |
-
#: ../modules/mycred-module-hooks.php:
|
5514 |
msgid "Amount to award for viewing videos."
|
5515 |
msgstr "Сумма вознаграждения за просмотр видео."
|
5516 |
|
5517 |
-
#: ../modules/mycred-module-hooks.php:
|
5518 |
msgid "Award Logic"
|
5519 |
msgstr "Логика вознаграждения"
|
5520 |
|
5521 |
-
#: ../modules/mycred-module-hooks.php:
|
5522 |
#, php-format
|
5523 |
msgid "Select when %_plural% should be awarded or deducted."
|
5524 |
msgstr "Выбрать, когда %_plural% должны быть начислены или удержаны."
|
5525 |
|
5526 |
-
#: ../modules/mycred-module-hooks.php:
|
5527 |
msgid "Play - As soon as video starts playing."
|
5528 |
msgstr "Play - как только видео начинает играть."
|
5529 |
|
5530 |
-
#: ../modules/mycred-module-hooks.php:
|
5531 |
msgid "Full - First when the entire video has played."
|
5532 |
msgstr "Full - Первый, когда видео воспроизводится полностью."
|
5533 |
|
5534 |
-
#: ../modules/mycred-module-hooks.php:
|
5535 |
msgid "Interval - For each x number of seconds watched."
|
5536 |
msgstr "Interval - Для каждой х секунды просмотра."
|
5537 |
|
5538 |
-
#: ../modules/mycred-module-hooks.php:
|
5539 |
msgid "Number of seconds"
|
5540 |
msgstr "Число секунд"
|
5541 |
|
5542 |
-
#: ../modules/mycred-module-hooks.php:
|
5543 |
msgid "Leniency"
|
5544 |
msgstr "Мягкость"
|
5545 |
|
5546 |
-
#: ../modules/mycred-module-hooks.php:
|
5547 |
msgid ""
|
5548 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5549 |
"length."
|
@@ -5551,7 +5551,7 @@ msgstr ""
|
|
5551 |
"Максимальный процент фильма, который просматривает пользователь, может "
|
5552 |
"отличаться от настоящей длины."
|
5553 |
|
5554 |
-
#: ../modules/mycred-module-hooks.php:
|
5555 |
msgid ""
|
5556 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5557 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
@@ -5561,75 +5561,83 @@ msgstr ""
|
|
5561 |
"может произойти много вещей, а иногда несколько секунд могут упасть со "
|
5562 |
"счетчика из-за ошибок воспроизведения или буферизации."
|
5563 |
|
5564 |
-
#: ../modules/mycred-module-hooks.php:
|
5565 |
msgid "Affiliate Program"
|
5566 |
msgstr "Партнерская программа"
|
5567 |
|
5568 |
-
#: ../modules/mycred-module-hooks.php:
|
5569 |
msgid "Per Day"
|
5570 |
msgstr "В день"
|
5571 |
|
5572 |
-
#: ../modules/mycred-module-hooks.php:
|
5573 |
msgid "Link"
|
5574 |
msgstr "Ссылка"
|
5575 |
|
5576 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5577 |
msgid "Referring Visitors"
|
5578 |
msgstr "Направление посетителей"
|
5579 |
|
5580 |
-
#: ../modules/mycred-module-hooks.php:
|
5581 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5582 |
msgstr ""
|
5583 |
"Количество направлений, которое может сделать каждый участник. Используйте "
|
5584 |
"ноль для неограниченных."
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-hooks.php:
|
5587 |
msgid "Referring Signups"
|
5588 |
msgstr "Отправка заявлений о регистрации"
|
5589 |
|
5590 |
-
#: ../modules/mycred-module-hooks.php:
|
5591 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5592 |
msgstr "Посетители с отключенными куками не будут вознаграждены %_plural%."
|
5593 |
|
5594 |
-
#: ../modules/mycred-module-hooks.php:
|
5595 |
msgid "Registrations are disabled."
|
5596 |
msgstr "Регистрации отключены."
|
5597 |
|
5598 |
-
#: ../modules/mycred-module-hooks.php:
|
5599 |
msgid "Referral Links"
|
5600 |
msgstr "Ссылки направления"
|
5601 |
|
5602 |
-
#: ../modules/mycred-module-hooks.php:
|
5603 |
msgid "Assign numeric referral IDs to each user."
|
5604 |
msgstr "Отправить ID цифровых направлений каждому пользователю."
|
5605 |
|
5606 |
-
#: ../modules/mycred-module-hooks.php:
|
5607 |
msgid "Example"
|
5608 |
msgstr "Пример"
|
5609 |
|
5610 |
-
#: ../modules/mycred-module-hooks.php:
|
5611 |
msgid "Assign usernames as IDs for each user."
|
5612 |
msgstr "Назначить имена пользователей как ID для каждого участника."
|
5613 |
|
5614 |
-
#: ../modules/mycred-module-hooks.php:
|
5615 |
msgid "IP Limit"
|
5616 |
msgstr "Лимит IP"
|
5617 |
|
5618 |
-
#: ../modules/mycred-module-hooks.php:
|
5619 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5620 |
msgstr ""
|
5621 |
"Количество случаев, каждый IP адрес вознаграждается %_plural%. Использовать "
|
5622 |
"ноль для неограниченных."
|
5623 |
|
5624 |
-
#: ../modules/mycred-module-hooks.php:
|
5625 |
msgid "BuddyPress Profile"
|
5626 |
msgstr "BuddyPress Профиль"
|
5627 |
|
5628 |
-
#: ../modules/mycred-module-hooks.php:
|
5629 |
msgid "Insert Link in users Profile"
|
5630 |
msgstr "Вставить ссылку в профайл пользователя"
|
5631 |
|
5632 |
-
#: ../modules/mycred-module-hooks.php:
|
5633 |
msgid ""
|
5634 |
"Option to inser the referral link in users profiles. Links will only be "
|
5635 |
"visible to users viewing their own profiles or administrators."
|
@@ -5638,23 +5646,23 @@ msgstr ""
|
|
5638 |
"видимы для пользователей, которые просматривают свои собственные профайлы "
|
5639 |
"или администраторам."
|
5640 |
|
5641 |
-
#: ../modules/mycred-module-hooks.php:
|
5642 |
msgid "Leave empty to hide."
|
5643 |
msgstr "Оставить пустым, чтобы спрятать."
|
5644 |
|
5645 |
-
#: ../modules/mycred-module-hooks.php:
|
5646 |
msgid "Description"
|
5647 |
msgstr "Описание"
|
5648 |
|
5649 |
-
#: ../modules/mycred-module-hooks.php:
|
5650 |
msgid "Optional description to insert under the link."
|
5651 |
msgstr "Описание по выбору для вставки под ссылкой."
|
5652 |
|
5653 |
-
#: ../modules/mycred-module-hooks.php:
|
5654 |
msgid "Profile Positioning"
|
5655 |
msgstr "Расположение профайла"
|
5656 |
|
5657 |
-
#: ../modules/mycred-module-hooks.php:
|
5658 |
msgid ""
|
5659 |
"You can move around the referral link on your users profile by changing the "
|
5660 |
"position. Increase to move up, decrease to move down."
|
@@ -5662,18 +5670,18 @@ msgstr ""
|
|
5662 |
"Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
|
5663 |
"расположение. Увеличить для движения вверх, снизить для движения вниз."
|
5664 |
|
5665 |
-
#: ../modules/mycred-module-hooks.php:
|
5666 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5667 |
msgstr ""
|
5668 |
"Вы не можете перемещать ссылку направления над \"Основными\" деталями профиля "
|
5669 |
"пользователя!"
|
5670 |
|
5671 |
-
#: ../modules/mycred-module-hooks.php:
|
5672 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5673 |
msgstr "Для разрешения требуются Расширенные профили BuddyPress."
|
5674 |
|
5675 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5676 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5677 |
msgid "Access denied for this action"
|
5678 |
msgstr "Для этого действия доступ запрещен"
|
5679 |
|
@@ -5689,12 +5697,12 @@ msgstr "Запись в журнале не найдена"
|
|
5689 |
msgid "Entry Updated"
|
5690 |
msgstr "Запись обновлена"
|
5691 |
|
5692 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5693 |
msgid "Entries"
|
5694 |
msgstr "Записи"
|
5695 |
|
5696 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5697 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5698 |
msgid "Export"
|
5699 |
msgstr "Экспорт"
|
5700 |
|
@@ -5741,49 +5749,49 @@ msgid "My %s History"
|
|
5741 |
msgstr "Моя %s история"
|
5742 |
|
5743 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5744 |
-
#:
|
5745 |
msgid "Missing point type"
|
5746 |
msgstr "Отсутствует вид балла."
|
5747 |
|
5748 |
-
#: ../modules/mycred-module-settings.php:
|
5749 |
msgid "Accounts successfully reset"
|
5750 |
msgstr "Аккаунт успешно восстановлен"
|
5751 |
|
5752 |
-
#: ../modules/mycred-module-settings.php:
|
5753 |
msgid "No users found to export"
|
5754 |
msgstr "Пользователей в экспорте не найдено"
|
5755 |
|
5756 |
-
#: ../modules/mycred-module-settings.php:
|
5757 |
#, php-format
|
5758 |
msgid "%s Settings"
|
5759 |
msgstr "%s Настройки"
|
5760 |
|
5761 |
-
#: ../modules/mycred-module-settings.php:
|
5762 |
msgid "Adjust your core or add-on settings."
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: ../modules/mycred-module-settings.php:
|
5766 |
msgid "Core Settings"
|
5767 |
msgstr "Основные настройки"
|
5768 |
|
5769 |
-
#: ../modules/mycred-module-settings.php:
|
5770 |
msgid "Name"
|
5771 |
msgstr "Имя"
|
5772 |
|
5773 |
-
#: ../modules/mycred-module-settings.php:
|
5774 |
#, php-format
|
5775 |
msgid "Accessible though the %singular% template tag."
|
5776 |
msgstr "Доступно через шаблон тега %singular%."
|
5777 |
|
5778 |
-
#: ../modules/mycred-module-settings.php:
|
5779 |
msgid "Accessible though the %plural% template tag."
|
5780 |
msgstr "Доступно через шаблон тега %plural%."
|
5781 |
|
5782 |
-
#: ../modules/mycred-module-settings.php:
|
5783 |
msgid "Tip"
|
5784 |
msgstr "Подсказка"
|
5785 |
|
5786 |
-
#: ../modules/mycred-module-settings.php:
|
5787 |
msgid ""
|
5788 |
"Adding an underscore at the beginning of template tag for names will return "
|
5789 |
"them in lowercase. i.e. %_singular%"
|
@@ -5791,100 +5799,100 @@ msgstr ""
|
|
5791 |
"Добавление нижнего подчеркивания в начале шаблона тега для имен вернет им "
|
5792 |
"мелкий шрифт. к примеру, %_singular%"
|
5793 |
|
5794 |
-
#: ../modules/mycred-module-settings.php:
|
5795 |
msgid "Separator"
|
5796 |
msgid_plural "Separators"
|
5797 |
msgstr[0] "Разделитель"
|
5798 |
msgstr[1] "Разделители"
|
5799 |
msgstr[2] "Разделители"
|
5800 |
|
5801 |
-
#: ../modules/mycred-module-settings.php:
|
5802 |
msgid "Edit Settings"
|
5803 |
msgstr "Редактировать настройки"
|
5804 |
|
5805 |
-
#: ../modules/mycred-module-settings.php:
|
5806 |
-
#: php:
|
5807 |
msgid "Capability to check for."
|
5808 |
msgstr "Возможность для проверки."
|
5809 |
|
5810 |
-
#: ../modules/mycred-module-settings.php:
|
5811 |
msgid "Edit Users %plural%"
|
5812 |
msgstr "Редактировать %plural% пользователей"
|
5813 |
|
5814 |
-
#: ../modules/mycred-module-settings.php:
|
5815 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5816 |
msgstr ""
|
5817 |
"Разделенный запятой список id пользователей для исключения. Пробелы не "
|
5818 |
"разрешаются!"
|
5819 |
|
5820 |
-
#: ../modules/mycred-module-settings.php:
|
5821 |
msgid "Management"
|
5822 |
msgstr "Управление"
|
5823 |
|
5824 |
-
#: ../modules/mycred-module-settings.php:
|
5825 |
msgid "The Log"
|
5826 |
msgstr "Журнал"
|
5827 |
|
5828 |
-
#: ../modules/mycred-module-settings.php:
|
5829 |
msgid "Table Name"
|
5830 |
msgstr "Имя таблицы"
|
5831 |
|
5832 |
-
#: ../modules/mycred-module-settings.php:
|
5833 |
msgid "Empty Log"
|
5834 |
msgstr "Пустой журнал"
|
5835 |
|
5836 |
-
#: ../modules/mycred-module-settings.php:
|
5837 |
msgid "User Meta Key"
|
5838 |
msgstr "Ключ Meta Пользователя"
|
5839 |
|
5840 |
-
#: ../modules/mycred-module-settings.php:
|
5841 |
msgid "Set all to zero"
|
5842 |
msgstr "Аннулировать все"
|
5843 |
|
5844 |
-
#: ../modules/mycred-module-settings.php:
|
5845 |
msgid "CSV Export"
|
5846 |
msgstr "CSV Экспорт"
|
5847 |
|
5848 |
-
#: ../modules/mycred-module-settings.php:
|
5849 |
msgid "Default"
|
5850 |
msgstr "По умолчанию"
|
5851 |
|
5852 |
-
#: ../modules/mycred-module-settings.php:
|
5853 |
-
#: php:
|
5854 |
msgid "Meta Key"
|
5855 |
msgstr "Ключ Meta"
|
5856 |
|
5857 |
-
#: ../modules/mycred-module-settings.php:
|
5858 |
msgid "Add New Type"
|
5859 |
msgstr "Добавить новый вид"
|
5860 |
|
5861 |
-
#: ../modules/mycred-module-settings.php:
|
5862 |
msgid "A unique ID for this type."
|
5863 |
msgstr "Уникальный ID для этого типа."
|
5864 |
|
5865 |
-
#: ../modules/mycred-module-settings.php:
|
5866 |
msgid "Menu and page title."
|
5867 |
msgstr "Меню и страница заголовка."
|
5868 |
|
5869 |
-
#: ../modules/mycred-module-settings.php:
|
5870 |
msgid "The meta key will define where your users balances are saved."
|
5871 |
msgstr ""
|
5872 |
"С помощью Meta ключа вы можете просмотреть, где сохраняются балансы ваших "
|
5873 |
"пользователей."
|
5874 |
|
5875 |
-
#: ../modules/mycred-module-settings.php:
|
5876 |
msgid "Identify users by"
|
5877 |
msgstr "Определять пользователей по"
|
5878 |
|
5879 |
-
#: ../modules/mycred-module-settings.php:
|
5880 |
msgid "User Email"
|
5881 |
msgstr "Email пользователя"
|
5882 |
|
5883 |
-
#: ../modules/mycred-module-settings.php:
|
5884 |
msgid "User Login"
|
5885 |
msgstr "Логин пользователя"
|
5886 |
|
5887 |
-
#: ../modules/mycred-module-settings.php:
|
5888 |
msgid ""
|
5889 |
"Use ID if you intend to use this export as a backup of your current site "
|
5890 |
"while Email is recommended if you want to export to a different site."
|
@@ -5893,11 +5901,11 @@ msgstr ""
|
|
5893 |
"нынешнего сайта. Если вы желаете выполнить перемещение на другой сайт, "
|
5894 |
"рекомендуется использовать email."
|
5895 |
|
5896 |
-
#: ../modules/mycred-module-settings.php:
|
5897 |
msgid "Import Log Entry"
|
5898 |
msgstr "Импорт записей журнала"
|
5899 |
|
5900 |
-
#: ../modules/mycred-module-settings.php:
|
5901 |
#, php-format
|
5902 |
msgid ""
|
5903 |
"Optional log entry to use if you intend to import this file in a different "
|
@@ -5906,11 +5914,11 @@ msgstr ""
|
|
5906 |
"Дополнительная запись в журнале для использования, если вы намерены "
|
5907 |
"выполнить импорт этого файла в разной %s установке."
|
5908 |
|
5909 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5910 |
msgid "BadgeOS"
|
5911 |
msgstr "BadgeOS"
|
5912 |
|
5913 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5914 |
msgid ""
|
5915 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5916 |
"overridden for individual achievement type."
|
@@ -5918,7 +5926,7 @@ msgstr ""
|
|
5918 |
"Настройки по умолчанию для каждого вида достижений BadgeOS. Эти настройки "
|
5919 |
"можно переопределить для индивидуального вида достижений."
|
5920 |
|
5921 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5922 |
#, php-format
|
5923 |
msgid ""
|
5924 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
@@ -5927,30 +5935,30 @@ msgstr ""
|
|
5927 |
"Пожалуйста установите ваши настройки <a href=\"%s\">по умолчанию </a> перед "
|
5928 |
"использованием этого параметра."
|
5929 |
|
5930 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5931 |
msgid "%plural% to Award"
|
5932 |
msgstr "%plural% наградить"
|
5933 |
|
5934 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5935 |
msgid "Use zero to disable"
|
5936 |
msgstr "Использовать ноль, чтобы отключить"
|
5937 |
|
5938 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5939 |
msgid "Deduction Log Template"
|
5940 |
msgstr "Выведение шаблона журнала"
|
5941 |
|
5942 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5943 |
#, php-format
|
5944 |
msgid "Default %s for %s"
|
5945 |
msgstr "По умолчанию %s для %s"
|
5946 |
|
5947 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5948 |
msgid "Use zero to disable users gaining %_plural%"
|
5949 |
msgstr ""
|
5950 |
"Использовать ноль для отключения пользователей, которые зарабатывают "
|
5951 |
"%_plural%"
|
5952 |
|
5953 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5954 |
msgid "Default Log template"
|
5955 |
msgstr "Шаблон журнала по умолчанию"
|
5956 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:55:12 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Russian\n"
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
25 |
"content/plugins/mycred\n"
|
26 |
"X-Poedit-SearchPath-1: ."
|
27 |
|
28 |
+
#: ../mycred.php:425
|
29 |
msgid "Balance"
|
30 |
msgstr "Баланс/Счет"
|
31 |
|
32 |
+
#: ../mycred.php:450
|
33 |
msgid "%label% History"
|
34 |
msgstr "%label% История"
|
35 |
|
36 |
+
#: ../mycred.php:543
|
37 |
#, php-format
|
38 |
msgid "About %s"
|
39 |
msgstr "Около %s"
|
40 |
|
41 |
+
#: ../mycred.php:552
|
42 |
msgid "Awesome People"
|
43 |
msgstr "Потрясающие люди"
|
44 |
|
45 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
46 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
47 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
48 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
49 |
+
#: includes/mycred-shortcodes.php:631
|
50 |
msgid "Processing..."
|
51 |
msgstr "Обработка..."
|
52 |
|
53 |
#. log entries???
|
54 |
+
#: ../mycred.php:638
|
55 |
msgid ""
|
56 |
"Warning! All entries in your log will be permanently removed! This can not "
|
57 |
"be undone!"
|
59 |
"Внимание! Все записи в журнале будут удалены без возможности восстановления. "
|
60 |
"Это нельзя отменить! "
|
61 |
|
62 |
+
#: ../mycred.php:639
|
63 |
msgid ""
|
64 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
65 |
"can not be undone!"
|
67 |
"Все регистрации в журнале, принадлежащие удаленным пользователям, будут "
|
68 |
"навсегда удалены! Действие нельзя отменить!"
|
69 |
|
70 |
+
#: ../mycred.php:640
|
71 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
72 |
msgstr ""
|
73 |
"Предупреждение! Все счета пользователя будут аннулированы! Невозможно "
|
74 |
"выполнить действие! "
|
75 |
|
76 |
+
#: ../mycred.php:641
|
77 |
msgid "Done!"
|
78 |
msgstr "Готово! "
|
79 |
|
80 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
81 |
msgid "Close"
|
82 |
msgstr "Закрыть"
|
83 |
|
84 |
+
#: ../mycred.php:643
|
85 |
msgid "Export users %plural%"
|
86 |
msgstr "Перемещение пользователей %plural%"
|
87 |
|
88 |
+
#: ../mycred.php:659
|
89 |
msgid "Edit Users Balance"
|
90 |
msgstr "Редактировать счет пользователя"
|
91 |
|
92 |
+
#: ../mycred.php:677
|
93 |
msgid "Edit Log Entry"
|
94 |
msgstr "Редактировать запись журнала"
|
95 |
|
96 |
+
#: ../mycred.php:681
|
97 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
98 |
msgstr ""
|
99 |
"Вы уверены, что желаете удалить эту запись из журнала? Это невозможно "
|
100 |
"отменить!"
|
101 |
|
102 |
+
#: ../mycred.php:682
|
103 |
msgid "Log entry updated"
|
104 |
msgstr "Запись в журнале обновлена"
|
105 |
|
106 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
107 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
108 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
109 |
msgid "Setup"
|
110 |
msgstr "Установка"
|
111 |
|
112 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
113 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
114 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
115 |
msgid "Settings"
|
116 |
msgstr "Настройки"
|
117 |
|
118 |
+
#: ../mycred.php:776
|
119 |
msgid ""
|
120 |
"Make sure to backup your database and files before updating, in case "
|
121 |
"anything goes wrong!"
|
155 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
156 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
157 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
158 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
159 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
160 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
161 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
162 |
msgid "Select"
|
163 |
msgstr "Выбрать"
|
164 |
|
258 |
msgstr ""
|
259 |
|
260 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
261 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
262 |
msgid "Users"
|
263 |
msgstr "Пользователи"
|
264 |
|
341 |
|
342 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
343 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
344 |
+
#: modules/mycred-module-buddypress.php:395
|
345 |
msgid "Do not show"
|
346 |
msgstr "Не показывать"
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
349 |
+
#: buddypress.php:396
|
350 |
msgid "Include in Profile Header"
|
351 |
msgstr ""
|
352 |
|
353 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
354 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
355 |
msgid "Include under the \"Profile\" tab"
|
356 |
msgstr "Включить под закладкой \"Профиль\""
|
357 |
|
358 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
359 |
+
#: buddypress.php:398
|
360 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
361 |
msgstr ""
|
362 |
|
425 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
426 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
427 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
428 |
+
#: modules/mycred-module-settings.php:313
|
429 |
msgid "Access Denied"
|
430 |
msgstr "Ошибка Доступа"
|
431 |
|
577 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
578 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
579 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
580 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
581 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
582 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
583 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
584 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
675 |
|
676 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
677 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
678 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
679 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
680 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
681 |
+
#: includes/mycred-shortcodes.php:939
|
682 |
msgid "Amount"
|
683 |
msgstr "Количество"
|
684 |
|
685 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
686 |
+
#: modules/mycred-module-hooks.php:2112
|
687 |
msgid "Interval"
|
688 |
msgstr "Промежуток"
|
689 |
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
738 |
+
#: addon-buy-creds.php:1635
|
739 |
msgid "No pending payments found"
|
740 |
msgstr ""
|
741 |
|
744 |
msgstr ""
|
745 |
|
746 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
747 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
748 |
msgid "Transaction ID"
|
749 |
msgstr "Код трансакции "
|
750 |
|
751 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
752 |
+
#: addon-buy-creds.php:985
|
753 |
msgid "Buyer"
|
754 |
msgstr ""
|
755 |
|
756 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
757 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
758 |
#: gateway.php:563
|
759 |
msgid "Cost"
|
760 |
msgstr "Цена"
|
761 |
|
762 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
763 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
764 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
765 |
msgid "Gateway"
|
766 |
msgstr "Шлюз"
|
809 |
|
810 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
811 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
812 |
+
#: module-settings.php:470
|
813 |
msgid "Point Types"
|
814 |
msgstr "Виды очков"
|
815 |
|
862 |
msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
|
863 |
|
864 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
865 |
+
#: hooks.php:2792
|
866 |
msgid "Available Shortcodes"
|
867 |
msgstr "Доступные короткие коды"
|
868 |
|
889 |
msgstr "%s Способы оплаты"
|
890 |
|
891 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
892 |
+
#: addon-buy-creds.php:993
|
893 |
msgid "buyCRED Settings"
|
894 |
msgstr "настройки buyCRED"
|
895 |
|
914 |
msgstr "Разрешить тестовые покупки."
|
915 |
|
916 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
917 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
918 |
msgid "Update Settings"
|
919 |
msgstr "Настройки обновлений"
|
920 |
|
922 |
msgid "More Gateways"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
926 |
#: 634
|
927 |
msgid "Date"
|
928 |
msgstr "Дата "
|
929 |
|
930 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
931 |
msgid "Payed"
|
932 |
msgstr "Оплачено"
|
933 |
|
934 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
935 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
936 |
msgstr "<strong>купить</strong>CRED журнал покупки"
|
937 |
|
938 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
939 |
#: booking/mycred-eventespresso3.php:367
|
940 |
msgid "Gateway Settings"
|
941 |
msgstr "Настройки шлюза"
|
942 |
|
943 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
944 |
+
#: content/myCRED-addon-sell-content.php:1191
|
945 |
msgid "No purchases found"
|
946 |
msgstr "Покупок не обнаружено"
|
947 |
|
948 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
949 |
+
#: addon-buy-creds.php:1355
|
950 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
951 |
msgstr ""
|
952 |
"Это расширение необходимо установить перед началом использования этого "
|
953 |
"короткого номера."
|
954 |
|
955 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
956 |
+
#: addon-buy-creds.php:1374
|
957 |
msgid "No gateways installed."
|
958 |
msgstr "Нет установленных шлюзов."
|
959 |
|
960 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
961 |
+
#: addon-buy-creds.php:1375
|
962 |
msgid "Gateway does not exist."
|
963 |
msgstr "Шлюз не существует."
|
964 |
|
965 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
966 |
msgid "Yourself"
|
967 |
msgstr "Самостоятельно"
|
968 |
|
969 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
970 |
msgid "No active gateways found."
|
971 |
msgstr "Активных шлюзов не обнаружено."
|
972 |
|
973 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
974 |
msgid "The selected gateway is not active."
|
975 |
msgstr "Выбранный шлюз не активен."
|
976 |
|
977 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
978 |
#, php-format
|
979 |
msgid "Buy with %gateway%"
|
980 |
msgstr "Приобрести с %gateway%"
|
981 |
|
982 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
983 |
#: content/myCRED-addon-sell-content.php:44
|
984 |
msgid "Buy Now"
|
985 |
msgstr "Купить сейчас"
|
986 |
|
987 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
988 |
msgid "No users found"
|
989 |
msgstr "Пользователи не найдены"
|
990 |
|
991 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
992 |
msgid "To"
|
993 |
msgstr "До"
|
994 |
|
995 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
996 |
msgid "Select Amount"
|
997 |
msgstr "Выбать количество "
|
998 |
|
999 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
1000 |
msgid "min."
|
1001 |
msgstr "мин."
|
1002 |
|
1003 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
1004 |
msgid "Select Gateway"
|
1005 |
msgstr "Выбрать шлюз"
|
1006 |
|
1007 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
1008 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
1009 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
1010 |
#: php:35
|
1011 |
msgid "Pay Now"
|
1012 |
msgstr "Оплатить сейчас"
|
1013 |
|
1014 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1015 |
+
#: php:516
|
1016 |
msgid "Cancel"
|
1017 |
msgstr "Отменить"
|
1018 |
|
1019 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1020 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1021 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1022 |
msgid "Actions"
|
1023 |
msgstr "Действия"
|
1024 |
|
1162 |
msgid "The following information will be sent to the gateway"
|
1163 |
msgstr "Следующая информация будет отправлена в шлюз"
|
1164 |
|
1165 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1166 |
msgid "Outside US"
|
1167 |
msgstr "За пределами США "
|
1168 |
|
1169 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1170 |
msgid "January"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1174 |
msgid "February"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1178 |
msgid "March"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1182 |
msgid "April"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1186 |
msgid "May"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1190 |
msgid "June"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1194 |
msgid "July"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1198 |
msgid "August"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1202 |
msgid "September"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1206 |
msgid "October"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1210 |
msgid "November"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1214 |
msgid "December"
|
1215 |
msgstr ""
|
1216 |
|
1463 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1464 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1465 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1466 |
+
#: modules/mycred-module-hooks.php:2757
|
1467 |
msgid "Title"
|
1468 |
msgstr "Название"
|
1469 |
|
1668 |
msgstr "еще не использовано"
|
1669 |
|
1670 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1671 |
+
#: php:2202
|
1672 |
msgid "Total"
|
1673 |
msgstr "Общее "
|
1674 |
|
1848 |
msgstr "Подать запрос на купон"
|
1849 |
|
1850 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1851 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1852 |
msgid "Email Notice"
|
1853 |
msgstr "Уведомление по электронной почте"
|
1854 |
|
2041 |
"переопределены при редактировании электронных писем."
|
2042 |
|
2043 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2044 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2045 |
msgid "Email Settings"
|
2046 |
msgstr "Настройки электронного письма"
|
2047 |
|
2048 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2049 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2050 |
msgid "Senders Name:"
|
2051 |
msgstr "Имя отправителя:"
|
2052 |
|
2053 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2054 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2055 |
msgid "Senders Email:"
|
2056 |
msgstr "Письмо отправителя:"
|
2057 |
|
2075 |
msgid "Ignored if HTML is not allowed in emails."
|
2076 |
msgstr "Игнорируется, если HTML в письмах не разрешается."
|
2077 |
|
2078 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2079 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2080 |
msgid "Email Subject"
|
2081 |
msgstr "Тема письма"
|
2082 |
|
2083 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2084 |
msgid "Status"
|
2085 |
msgstr "Статус"
|
2086 |
|
2087 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2088 |
msgid "Not Active"
|
2089 |
msgstr "Не активно"
|
2090 |
|
2091 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2092 |
#, php-format
|
2093 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2094 |
msgstr "Запланированный: <br /><strong>%1$s</strong>"
|
2095 |
|
2096 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2097 |
msgid "Active"
|
2098 |
msgstr "Активен"
|
2099 |
|
2100 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2101 |
#, php-format
|
2102 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2103 |
msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
|
2104 |
|
2105 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2106 |
msgid "Email is sent when"
|
2107 |
msgstr "Электронное письмо отправляется, когда"
|
2108 |
|
2109 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2110 |
msgid "Missing instance for this notice!"
|
2111 |
msgstr "Отсутствует пример для этого уведомления!"
|
2112 |
|
2113 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2114 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2115 |
+
#: addon-email-notices.php:775
|
2116 |
msgid "Sent To"
|
2117 |
msgstr "Отправить"
|
2118 |
|
2119 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2120 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2121 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2122 |
msgid "User"
|
2123 |
msgstr "Пользователь"
|
2124 |
|
2125 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2126 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2127 |
msgid "Administrator"
|
2128 |
msgstr "Администратору"
|
2129 |
|
2130 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2131 |
msgid "Both Administrator and User"
|
2132 |
msgstr "Администратору и Пользователю"
|
2133 |
|
2134 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2135 |
msgid "Available Template Tags"
|
2136 |
msgstr "Доступные теги шаблона"
|
2137 |
|
2138 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2139 |
msgid "Email Header"
|
2140 |
msgstr "Заголовок и-мейла"
|
2141 |
|
2142 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2143 |
msgid "Send this email notice when..."
|
2144 |
msgstr "Отправить это и-мейл оповещение когда..."
|
2145 |
|
2146 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2147 |
msgid "Recipient:"
|
2148 |
msgstr "Получатель:"
|
2149 |
|
2150 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2151 |
msgid "Both"
|
2152 |
msgstr "Оба"
|
2153 |
|
2154 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2155 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2156 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2157 |
+
#: module-settings.php:527
|
2158 |
msgid "Label"
|
2159 |
msgstr "Ярлык"
|
2160 |
|
2161 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2162 |
msgid "Reply-To Email:"
|
2163 |
msgstr "Ответить на и-мейл:"
|
2164 |
|
2165 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2166 |
msgid "Save"
|
2167 |
msgstr "Сохранить"
|
2168 |
|
2169 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2170 |
msgid "CSS Styling"
|
2171 |
msgstr "Оформление CSS"
|
2172 |
|
2173 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2174 |
msgid "Site Related"
|
2175 |
msgstr "Сопутствующий сайт"
|
2176 |
|
2177 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2178 |
msgid "Your websites title"
|
2179 |
msgstr "Заголовок ваших веб-сайтов"
|
2180 |
|
2181 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2182 |
msgid "Your websites address"
|
2183 |
msgstr "Адрес ваших веб-сайтов"
|
2184 |
|
2185 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2186 |
msgid "Your websites tagline (description)"
|
2187 |
msgstr "Подзаголовок вашего веб-сайта (описание)"
|
2188 |
|
2189 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2190 |
msgid "Your websites admin email"
|
2191 |
msgstr "Электронный адрес администратора вашего веб-сайта"
|
2192 |
|
2193 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2194 |
msgid "Total number of blog members"
|
2195 |
msgstr "Общее количество участников блога"
|
2196 |
|
2197 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2198 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2199 |
+
#: addon-email-notices.php:1040
|
2200 |
msgid "Email Notice Updated."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2204 |
msgid "Email Notice Activated"
|
2205 |
msgstr "И-мейл оповещение активировано"
|
2206 |
|
2207 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2208 |
msgid "Email Notice Saved"
|
2209 |
msgstr "И-мейл оповещение сохранено"
|
2210 |
|
2211 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2212 |
msgid ""
|
2213 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2214 |
"are not yet ready to use this email notice!"
|
2216 |
"После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
|
2217 |
"Черновик\", если вы не готовы использовать это и-мейл оповещение!"
|
2218 |
|
2219 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2220 |
#, php-format
|
2221 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2222 |
msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
|
2223 |
|
2224 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2225 |
msgid "This email notice is active."
|
2226 |
msgstr "И-мейл извещение активно."
|
2227 |
|
2228 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2229 |
msgid "Settings saved."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2233 |
msgid "Unsubscribe"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2237 |
msgid "There are no email notifications yet."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2241 |
msgid "Save Changes"
|
2242 |
msgstr ""
|
2243 |
|
2286 |
|
2287 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2288 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2289 |
+
#: 52 ../includes/mycred-network.php:53
|
2290 |
msgid "myCRED"
|
2291 |
msgstr "myCRED"
|
2292 |
|
2369 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2370 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2371 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2372 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2373 |
msgid "Exchange Rate"
|
2374 |
msgstr "Курс валют"
|
2375 |
|
2670 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2671 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2672 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2673 |
+
#: sell-content.php:669
|
2674 |
msgid "Button Label"
|
2675 |
msgstr "Кнопка ярлыка"
|
2676 |
|
2684 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2685 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2686 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2687 |
+
#: sell-content.php:665
|
2688 |
msgid "Price"
|
2689 |
msgstr "Цена"
|
2690 |
|
2793 |
msgstr "Отклонить"
|
2794 |
|
2795 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2796 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2797 |
+
#: modules/mycred-module-settings.php:508
|
2798 |
msgid "Delete"
|
2799 |
msgstr "Удалить"
|
2800 |
|
2921 |
msgstr "Используйте включенное CSS Styling для оповещений."
|
2922 |
|
2923 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2924 |
+
#: module-buddypress.php:439
|
2925 |
msgid "Template"
|
2926 |
msgstr "Шаблон"
|
2927 |
|
3203 |
"администратора и/или напротив, если ранги \"Публичные\""
|
3204 |
|
3205 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3206 |
+
#: php:402
|
3207 |
msgid "Do not show."
|
3208 |
msgstr "Не показывать."
|
3209 |
|
3253 |
msgstr "В этом ранге пользователи не обнаружены"
|
3254 |
|
3255 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3256 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3257 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3258 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3259 |
msgid "error"
|
3260 |
msgstr "ошибка"
|
3261 |
|
3382 |
msgid "%s Sell This"
|
3383 |
msgstr "%s продать это"
|
3384 |
|
3385 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3386 |
#, php-format
|
3387 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3388 |
msgstr ""
|
3389 |
"%s Необходимо установить продажу контента перед началом использования этого "
|
3390 |
"свойства."
|
3391 |
|
3392 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3393 |
msgid "Setup add-on"
|
3394 |
msgstr "Расширение настройки"
|
3395 |
|
3396 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3397 |
msgid "Lets do it"
|
3398 |
msgstr "Выполнить это"
|
3399 |
|
3400 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3401 |
#, php-format
|
3402 |
msgid "Enable sale of this %s"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3406 |
msgid "Purchase expires after"
|
3407 |
msgstr "Срок действия покупки истекает после "
|
3408 |
|
3409 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3410 |
msgid "Thank you for your purchase!"
|
3411 |
msgstr "Благодарим вас за вашу покупку!"
|
3412 |
|
3413 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3414 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3415 |
msgid "The following content is set for sale:"
|
3416 |
msgstr "Следующий контент установлен на продажу:"
|
3417 |
|
3418 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3419 |
msgid "Purchased"
|
3420 |
msgstr "Купленный"
|
3421 |
|
3428 |
msgstr "Вы превысили ваш %limit% лимит передачи."
|
3429 |
|
3430 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3431 |
+
#: php:2367
|
3432 |
msgid "Transfer"
|
3433 |
msgstr "Передать"
|
3434 |
|
3467 |
"это не будет выполнено!"
|
3468 |
|
3469 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3470 |
+
#: php:1041
|
3471 |
msgid "Insufficient Funds. Please try a lower amount."
|
3472 |
msgstr ""
|
3473 |
|
3848 |
msgid "My Entire Log"
|
3849 |
msgstr "Мой полный журнал"
|
3850 |
|
3851 |
+
#: ../includes/mycred-functions.php:1854
|
3852 |
msgid "ref empty"
|
3853 |
msgstr "образец пустой"
|
3854 |
|
3855 |
+
#: ../includes/mycred-functions.php:1862
|
3856 |
msgid "incorrect user id format"
|
3857 |
msgstr "неверный формат id пользователя"
|
3858 |
|
3859 |
+
#: ../includes/mycred-functions.php:1875
|
3860 |
msgid "incorrect unix timestamp (from):"
|
3861 |
msgstr "неправильная временная отметка операционной системы (от):"
|
3862 |
|
3863 |
+
#: ../includes/mycred-functions.php:1884
|
3864 |
msgid "incorrect unix timestamp (to):"
|
3865 |
msgstr "неправильная временная отметка операционной системы (до):"
|
3866 |
|
3867 |
+
#: ../includes/mycred-functions.php:2254
|
3868 |
msgid "Website Registration"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: ../includes/mycred-functions.php:2255
|
3872 |
msgid "Website Visit"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: ../includes/mycred-functions.php:2256
|
3876 |
msgid "Viewing Content (Member)"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: ../includes/mycred-functions.php:2257
|
3880 |
msgid "Viewing Content (Author)"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: ../includes/mycred-functions.php:2258
|
3884 |
msgid "Logging in"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: ../includes/mycred-functions.php:2259
|
3888 |
msgid "Publishing Content"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3892 |
msgid "Approved Comment"
|
3893 |
msgstr "Комментарий одобрен"
|
3894 |
|
3895 |
+
#: ../includes/mycred-functions.php:2261
|
3896 |
msgid "Unapproved Comment"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: ../includes/mycred-functions.php:2262
|
3900 |
msgid "SPAM Comment"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: ../includes/mycred-functions.php:2263
|
3904 |
msgid "Deleted Comment"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: ../includes/mycred-functions.php:2264
|
3908 |
msgid "Link Click"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: ../includes/mycred-functions.php:2265
|
3912 |
msgid "Watching Video"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: ../includes/mycred-functions.php:2266
|
3916 |
msgid "Visitor Referral"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: ../includes/mycred-functions.php:2267
|
3920 |
msgid "Signup Referral"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: ../includes/mycred-functions.php:2271
|
3924 |
msgid "New Profile Update"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: ../includes/mycred-functions.php:2272
|
3928 |
msgid "Avatar Upload"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: ../includes/mycred-functions.php:2273
|
3932 |
msgid "New Friendship"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: ../includes/mycred-functions.php:2274
|
3936 |
msgid "Ended Friendship"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: ../includes/mycred-functions.php:2275
|
3940 |
msgid "New Profile Comment"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: ../includes/mycred-functions.php:2276
|
3944 |
msgid "Profile Comment Deletion"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: ../includes/mycred-functions.php:2277
|
3948 |
msgid "New Message"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: ../includes/mycred-functions.php:2278
|
3952 |
msgid "Sending Gift"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: ../includes/mycred-functions.php:2279
|
3956 |
msgid "New Group"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: ../includes/mycred-functions.php:2280
|
3960 |
msgid "Deleted Group"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: ../includes/mycred-functions.php:2281
|
3964 |
msgid "New Group Forum Topic"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: ../includes/mycred-functions.php:2282
|
3968 |
msgid "Edit Group Forum Topic"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: ../includes/mycred-functions.php:2283
|
3972 |
msgid "New Group Forum Post"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: ../includes/mycred-functions.php:2284
|
3976 |
msgid "Edit Group Forum Post"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: ../includes/mycred-functions.php:2285
|
3980 |
msgid "Joining Group"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: ../includes/mycred-functions.php:2286
|
3984 |
msgid "Leaving Group"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: ../includes/mycred-functions.php:2287
|
3988 |
msgid "New Group Avatar"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: ../includes/mycred-functions.php:2288
|
3992 |
msgid "New Group Comment"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3996 |
#: php:166
|
3997 |
msgid "Photo Upload"
|
3998 |
msgstr "Загрузка фото"
|
3999 |
|
4000 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
4001 |
#: php:176
|
4002 |
msgid "Video Upload"
|
4003 |
msgstr "Загрузка фидео"
|
4004 |
|
4005 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
4006 |
#: php:186
|
4007 |
msgid "Music Upload"
|
4008 |
msgstr "Загрузка музыки"
|
4009 |
|
4010 |
+
#: ../includes/mycred-functions.php:2298
|
4011 |
msgid "New Link"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: ../includes/mycred-functions.php:2299
|
4015 |
msgid "Link Voting"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: ../includes/mycred-functions.php:2300
|
4019 |
msgid "Link Update"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: ../includes/mycred-functions.php:2304
|
4023 |
msgid "New Forum (bbPress)"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: ../includes/mycred-functions.php:2305
|
4027 |
msgid "New Forum Topic (bbPress)"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: ../includes/mycred-functions.php:2306
|
4031 |
msgid "Favorited Topic (bbPress)"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: ../includes/mycred-functions.php:2307
|
4035 |
msgid "New Topic Reply (bbPress)"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: ../includes/mycred-functions.php:2311
|
4039 |
msgid "Form Submission (Contact Form 7)"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: ../includes/mycred-functions.php:2314
|
4043 |
msgid "Form Submission (Gravity Form)"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: ../includes/mycred-functions.php:2317
|
4047 |
msgid "New Forum Topic (SimplePress)"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: ../includes/mycred-functions.php:2318
|
4051 |
msgid "New Forum Post (SimplePress)"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: ../includes/mycred-functions.php:2322
|
4055 |
msgid "Poll Voting"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: ../includes/mycred-functions.php:2325
|
4059 |
msgid "Sending an Invite"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: ../includes/mycred-functions.php:2326
|
4063 |
msgid "Accepting an Invite"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: ../includes/mycred-functions.php:2332
|
4067 |
msgid "Banking Payout"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: ../includes/mycred-functions.php:2335
|
4071 |
msgid "buyCRED Purchase (PayPal Standard)"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: ../includes/mycred-functions.php:2336
|
4075 |
msgid "buyCRED Purchase (Skrill)"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: ../includes/mycred-functions.php:2337
|
4079 |
msgid "buyCRED Purchase (Zombaio)"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: ../includes/mycred-functions.php:2338
|
4083 |
msgid "buyCRED Purchase (NETBilling)"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: ../includes/mycred-functions.php:2339
|
4087 |
msgid "buyCRED Purchase (BitPay)"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: ../includes/mycred-functions.php:2344
|
4091 |
msgid "Coupon Purchase"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: ../includes/mycred-functions.php:2347
|
4095 |
msgid "Store Purchase (WooCommerce)"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: ../includes/mycred-functions.php:2348
|
4099 |
msgid "Store Purchase (MarketPress)"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: ../includes/mycred-functions.php:2349
|
4103 |
msgid "Store Purchase (WP E-Commerce)"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: ../includes/mycred-functions.php:2354
|
4107 |
msgid "Event Payment (Event Espresso)"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: ../includes/mycred-functions.php:2355
|
4111 |
msgid "Event Sale (Event Espresso)"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: ../includes/mycred-functions.php:2359
|
4115 |
msgid "Event Payment (Events Manager)"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: ../includes/mycred-functions.php:2360
|
4119 |
msgid "Event Sale (Events Manager)"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: ../includes/mycred-functions.php:2364
|
4123 |
msgid "Content Purchase / Sale"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: ../includes/mycred-functions.php:2371
|
4127 |
msgid "Manual Adjustment by Admin"
|
4128 |
msgstr ""
|
4129 |
|
4171 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4172 |
msgstr "myCRED требует версию SQL 5.0 или выше. Найдены версии:"
|
4173 |
|
4174 |
+
#: ../includes/mycred-install.php:54
|
4175 |
msgid ""
|
4176 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4177 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4178 |
"for you!"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: ../includes/mycred-install.php:59
|
4182 |
msgid ""
|
4183 |
"Sorry but your WordPress installation does not reach the minimum "
|
4184 |
"requirements for running myCRED. The following errors were given:"
|
4186 |
"К сожалению, ваша установка WordPress не соответствует минимальным "
|
4187 |
"требованиям для запуска myCRED. Были обнаружены следующие ошибки:"
|
4188 |
|
4189 |
+
#: ../includes/mycred-install.php:248
|
4190 |
msgid "myCRED needs your attention."
|
4191 |
msgstr "myCRED нуждается в вашем обслуживании."
|
4192 |
|
4193 |
+
#: ../includes/mycred-install.php:248
|
4194 |
msgid "Run Setup"
|
4195 |
msgstr "Запустить установку"
|
4196 |
|
4197 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4198 |
msgid "myCRED Setup"
|
4199 |
msgstr "Установка myCRED"
|
4200 |
|
4201 |
+
#: ../includes/mycred-install.php:390
|
4202 |
#, php-format
|
4203 |
msgid "%s Setup"
|
4204 |
msgstr "%s Установка"
|
4205 |
|
4206 |
+
#: ../includes/mycred-install.php:392
|
4207 |
msgid "Step"
|
4208 |
msgstr "Шаг"
|
4209 |
|
4210 |
+
#: ../includes/mycred-install.php:416
|
4211 |
msgid ""
|
4212 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4213 |
"points format, layout and security settings."
|
4215 |
"Нажмите \"Начать установку\", чтобы установить myCRED. Вы сможете выбирать "
|
4216 |
"формат ваших баллов, настройки макета страницы и безопасности. "
|
4217 |
|
4218 |
+
#: ../includes/mycred-install.php:417
|
4219 |
msgid "Begin Setup"
|
4220 |
msgstr "Начать установку"
|
4221 |
|
4222 |
+
#: ../includes/mycred-install.php:472
|
4223 |
msgid "Select the format you want to use for your points."
|
4224 |
msgstr "Выбрать формат, который вы хотите использовать для ваших единиц."
|
4225 |
|
4226 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4227 |
msgid "Format"
|
4228 |
msgstr "Формат"
|
4229 |
|
4230 |
+
#: ../includes/mycred-install.php:476
|
4231 |
msgid "Separators"
|
4232 |
msgstr "Сепараторы"
|
4233 |
|
4234 |
+
#: ../includes/mycred-install.php:486
|
4235 |
msgid "Decimals"
|
4236 |
msgstr "Дроби"
|
4237 |
|
4238 |
+
#: ../includes/mycred-install.php:488
|
4239 |
msgid "Use zero for no decimals."
|
4240 |
msgstr "Используйте ноль для не десятичных чисел"
|
4241 |
|
4242 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4243 |
msgid "Presentation"
|
4244 |
msgstr "Отображение"
|
4245 |
|
4246 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4247 |
msgid "Name (Singular)"
|
4248 |
msgstr "Имя (единственное число)"
|
4249 |
|
4250 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4251 |
msgid "Name (Plural)"
|
4252 |
msgstr "Имя (множественное число)"
|
4253 |
|
4254 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4255 |
msgid "Prefix"
|
4256 |
msgstr "Префикс"
|
4257 |
|
4258 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4259 |
msgid "Suffix"
|
4260 |
msgstr "Суффикс"
|
4261 |
|
4262 |
+
#: ../includes/mycred-install.php:516
|
4263 |
msgid "Cancel Setup"
|
4264 |
msgstr "Установка отмены"
|
4265 |
|
4266 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4267 |
msgid "Next"
|
4268 |
msgstr "Следующее"
|
4269 |
|
4270 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4271 |
msgid "Security"
|
4272 |
msgstr "Безопасность"
|
4273 |
|
4274 |
+
#: ../includes/mycred-install.php:551
|
4275 |
msgid "Edit Settings Capability"
|
4276 |
msgstr "Редактировать возможности настроек"
|
4277 |
|
4278 |
+
#: ../includes/mycred-install.php:555
|
4279 |
msgid "Edit Users %plural% Capability"
|
4280 |
msgstr "Редактировать возможности %plural% пользователей"
|
4281 |
|
4282 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4283 |
msgid "Maximum %plural% payouts"
|
4284 |
msgstr "Максимальные выплаты %plural%"
|
4285 |
|
4286 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4287 |
msgid ""
|
4288 |
"As an added security, you can set the maximum amount a user can gain or "
|
4289 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4296 |
"пользователь сможет перевести, купить или потратить в магазине. Используйте "
|
4297 |
"ноль для отключения."
|
4298 |
|
4299 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4300 |
msgid "Excludes"
|
4301 |
msgstr "Исключает"
|
4302 |
|
4303 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4304 |
msgid "Exclude those who can \"Edit Settings\"."
|
4305 |
msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
|
4306 |
|
4307 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4308 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4309 |
msgstr "Исключить тех, кто может \"Редактировать Настройки %plural%\"."
|
4310 |
|
4311 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4312 |
msgid "Exclude the following user IDs:"
|
4313 |
msgstr "Исключить ID следующих пользователей: "
|
4314 |
|
4315 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4316 |
msgid "User Deletions"
|
4317 |
msgstr "Удаление пользователя"
|
4318 |
|
4319 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4320 |
msgid "Delete log entries when user is deleted."
|
4321 |
msgstr "Удалять записи в журнале после удаления пользователя."
|
4322 |
|
4323 |
+
#: ../includes/mycred-install.php:604
|
4324 |
msgid "Ready"
|
4325 |
msgstr "Готово"
|
4326 |
|
4327 |
+
#: ../includes/mycred-install.php:605
|
4328 |
msgid "Almost done! Click the button below to finish this setup."
|
4329 |
msgstr "Почти готово! Нажмите кнопку ниже для завершения этой установки."
|
4330 |
|
4331 |
+
#: ../includes/mycred-install.php:606
|
4332 |
msgid "Install & Run"
|
4333 |
msgstr "Установка и запуск"
|
4334 |
|
4344 |
msgstr[1] "записи"
|
4345 |
msgstr[2] "записи"
|
4346 |
|
4347 |
+
#: ../includes/mycred-log.php:412
|
4348 |
msgid "Go to the first page"
|
4349 |
msgstr "Перейти на первую страницу"
|
4350 |
|
4351 |
+
#: ../includes/mycred-log.php:419
|
4352 |
msgid "Go to the previous page"
|
4353 |
msgstr "Перейти на предыдущую страницу"
|
4354 |
|
4355 |
+
#: ../includes/mycred-log.php:428
|
4356 |
msgid "Current page"
|
4357 |
msgstr "Текущая страница"
|
4358 |
|
4359 |
+
#: ../includes/mycred-log.php:434
|
4360 |
#, php-format
|
4361 |
msgctxt "paging"
|
4362 |
msgid "%1$s of %2$s"
|
4363 |
msgstr "%1$s из %2$s"
|
4364 |
|
4365 |
+
#: ../includes/mycred-log.php:438
|
4366 |
msgid "Go to the next page"
|
4367 |
msgstr "Перейти на следующую страницу"
|
4368 |
|
4369 |
+
#: ../includes/mycred-log.php:445
|
4370 |
msgid "Go to the last page"
|
4371 |
msgstr "Перейти на последнюю страницу"
|
4372 |
|
4374 |
msgid "Show all references"
|
4375 |
msgstr "Показать все ссылки"
|
4376 |
|
4377 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4378 |
msgid "User ID"
|
4379 |
msgstr "ID пользователя"
|
4380 |
|
4600 |
"Не забывайте отключать, если приложение не используется, для предотвращения "
|
4601 |
"злонамеренных звонков "
|
4602 |
|
4603 |
+
#: ../includes/mycred-shortcodes.php:178
|
4604 |
msgid "Leaderboard is empty."
|
4605 |
msgstr "Таблица лидеров пуста."
|
4606 |
|
4607 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4608 |
msgid "Amount missing!"
|
4609 |
msgstr "Сумма отсутствует!"
|
4610 |
|
4611 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4612 |
msgid "Log Template Missing!"
|
4613 |
msgstr "Шаблон журнала отсутствует!"
|
4614 |
|
4615 |
+
#: ../includes/mycred-shortcodes.php:515
|
4616 |
msgid "Anchor missing URL!"
|
4617 |
msgstr "Отсутствует привязка URL!"
|
4618 |
|
4619 |
+
#: ../includes/mycred-shortcodes.php:577
|
4620 |
msgid "User ID missing for recipient."
|
4621 |
msgstr "Отсутствует ID пользователя для получателя."
|
4622 |
|
4623 |
+
#: ../includes/mycred-shortcodes.php:632
|
4624 |
msgid "Sent"
|
4625 |
msgstr "Отправлено"
|
4626 |
|
4627 |
+
#: ../includes/mycred-shortcodes.php:633
|
4628 |
msgid "Error - Try Again"
|
4629 |
msgstr "Ошибка - Повторите попытку"
|
4630 |
|
4631 |
+
#: ../includes/mycred-shortcodes.php:742
|
4632 |
msgid "A video ID is required for this shortcode"
|
4633 |
msgstr "Для этого короткого номера требуется ID видео"
|
4634 |
|
4635 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4636 |
msgid "Point types not found."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4640 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4641 |
#, php-format
|
4642 |
msgid "You are excluded from using %s."
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4646 |
msgid "Your balance is too low to use this feature."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: ../includes/mycred-shortcodes.php:924
|
4650 |
#, php-format
|
4651 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: ../includes/mycred-shortcodes.php:933
|
4655 |
#, php-format
|
4656 |
msgid "Your current %s balance"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: ../includes/mycred-shortcodes.php:941
|
4660 |
#, php-format
|
4661 |
msgid "Minimum %s"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: ../includes/mycred-shortcodes.php:945
|
4665 |
#, php-format
|
4666 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: ../includes/mycred-shortcodes.php:951
|
4670 |
msgid "Exchange"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4674 |
#, php-format
|
4675 |
msgid "You must exchange at least %s!"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4679 |
#, php-format
|
4680 |
msgid "Exchange from %s"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4684 |
#, php-format
|
4685 |
msgid "Exchange to %s"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4689 |
#, php-format
|
4690 |
msgid "You have successfully exchanged %s into %s."
|
4691 |
msgstr ""
|
4704 |
msgid "My Balance"
|
4705 |
msgstr "Мой баланс"
|
4706 |
|
4707 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4708 |
msgid "%plural% History"
|
4709 |
msgstr "%plural% История"
|
4710 |
|
5139 |
msgid "Current balance"
|
5140 |
msgstr "Текущий баланс"
|
5141 |
|
5142 |
+
#: ../modules/mycred-module-buddypress.php:347
|
5143 |
msgid "Go"
|
5144 |
msgstr "Перейти"
|
5145 |
|
5146 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5147 |
msgid "Show in Profile"
|
5148 |
msgstr "Показать в профиле"
|
5149 |
|
5150 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5151 |
#, php-format
|
5152 |
msgid "%singular% Balance"
|
5153 |
msgstr "%singular% Баланс"
|
5154 |
|
5155 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5156 |
#, php-format
|
5157 |
msgid "Members and visitors can other members %_singular% balance."
|
5158 |
msgstr "Участники и гости могут видеть %_singular% баланс других участников"
|
5159 |
|
5160 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5161 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5162 |
msgstr ""
|
5163 |
"Укажите, что вы также можете использовать %rank_logo% для демонстрации "
|
5164 |
"характерного изображения ранга. "
|
5165 |
|
5166 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5167 |
msgid "Members can view each others %_plural% history."
|
5168 |
msgstr "Участники могут просматривать историю друг %_plural% друга."
|
5169 |
|
5170 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5171 |
msgid "Menu Title"
|
5172 |
msgstr "Заголовок меню"
|
5173 |
|
5174 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5175 |
msgid "Title shown to me"
|
5176 |
msgstr "Заголовок, который будет показан мне"
|
5177 |
|
5178 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5179 |
#, php-format
|
5180 |
msgid "Title shown to others. Use %s to show the first name."
|
5181 |
msgstr "Заголовок, который был показан остальным. Используйте %, чтобы показать имя."
|
5182 |
|
5183 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5184 |
msgid "Menu Position"
|
5185 |
msgstr "Позиция меню"
|
5186 |
|
5187 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5188 |
msgid "Current menu positions:"
|
5189 |
msgstr "Текущие позиции меню:"
|
5190 |
|
5191 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5192 |
msgid "History URL slug"
|
5193 |
msgstr "Ярлык URL-а истории"
|
5194 |
|
5195 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5196 |
msgid "Do not use empty spaces!"
|
5197 |
msgstr "Не используйте пустые места!"
|
5198 |
|
5199 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5200 |
msgid "Number of history entries to show"
|
5201 |
msgstr "Количество записей истории, которое нужно показать"
|
5202 |
|
5335 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5336 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5337 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5338 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5339 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5340 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5341 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5342 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5397 |
msgid "%plural% for viewing %s"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5401 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5402 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5403 |
msgid "Limit"
|
5404 |
msgstr "Ограничение"
|
5490 |
msgid "Custom tags: %url%, %title% or %id%."
|
5491 |
msgstr "Пользовательские теги: %url%, %title% или %id%."
|
5492 |
|
5493 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5494 |
msgid "Note!"
|
5495 |
msgstr "Внимание!"
|
5496 |
|
5506 |
"вы используйте эту функцию для того, чтобы \"поделиться\" контентом, "
|
5507 |
"рекомендуется ограничиться ID."
|
5508 |
|
5509 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5510 |
msgid "Available Shortcode"
|
5511 |
msgstr "Доступный короткий код"
|
5512 |
|
5513 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5514 |
msgid "Amount to award for viewing videos."
|
5515 |
msgstr "Сумма вознаграждения за просмотр видео."
|
5516 |
|
5517 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5518 |
msgid "Award Logic"
|
5519 |
msgstr "Логика вознаграждения"
|
5520 |
|
5521 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5522 |
#, php-format
|
5523 |
msgid "Select when %_plural% should be awarded or deducted."
|
5524 |
msgstr "Выбрать, когда %_plural% должны быть начислены или удержаны."
|
5525 |
|
5526 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5527 |
msgid "Play - As soon as video starts playing."
|
5528 |
msgstr "Play - как только видео начинает играть."
|
5529 |
|
5530 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5531 |
msgid "Full - First when the entire video has played."
|
5532 |
msgstr "Full - Первый, когда видео воспроизводится полностью."
|
5533 |
|
5534 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5535 |
msgid "Interval - For each x number of seconds watched."
|
5536 |
msgstr "Interval - Для каждой х секунды просмотра."
|
5537 |
|
5538 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5539 |
msgid "Number of seconds"
|
5540 |
msgstr "Число секунд"
|
5541 |
|
5542 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5543 |
msgid "Leniency"
|
5544 |
msgstr "Мягкость"
|
5545 |
|
5546 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5547 |
msgid ""
|
5548 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5549 |
"length."
|
5551 |
"Максимальный процент фильма, который просматривает пользователь, может "
|
5552 |
"отличаться от настоящей длины."
|
5553 |
|
5554 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5555 |
msgid ""
|
5556 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5557 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5561 |
"может произойти много вещей, а иногда несколько секунд могут упасть со "
|
5562 |
"счетчика из-за ошибок воспроизведения или буферизации."
|
5563 |
|
5564 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5565 |
msgid "Affiliate Program"
|
5566 |
msgstr "Партнерская программа"
|
5567 |
|
5568 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5569 |
msgid "Per Day"
|
5570 |
msgstr "В день"
|
5571 |
|
5572 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5573 |
msgid "Link"
|
5574 |
msgstr "Ссылка"
|
5575 |
|
5576 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5577 |
+
msgid "Visitors Referred"
|
5578 |
+
msgstr ""
|
5579 |
+
|
5580 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5581 |
+
msgid "Signups Referred"
|
5582 |
+
msgstr ""
|
5583 |
+
|
5584 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5585 |
msgid "Referring Visitors"
|
5586 |
msgstr "Направление посетителей"
|
5587 |
|
5588 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5589 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5590 |
msgstr ""
|
5591 |
"Количество направлений, которое может сделать каждый участник. Используйте "
|
5592 |
"ноль для неограниченных."
|
5593 |
|
5594 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5595 |
msgid "Referring Signups"
|
5596 |
msgstr "Отправка заявлений о регистрации"
|
5597 |
|
5598 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5599 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5600 |
msgstr "Посетители с отключенными куками не будут вознаграждены %_plural%."
|
5601 |
|
5602 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5603 |
msgid "Registrations are disabled."
|
5604 |
msgstr "Регистрации отключены."
|
5605 |
|
5606 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5607 |
msgid "Referral Links"
|
5608 |
msgstr "Ссылки направления"
|
5609 |
|
5610 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5611 |
msgid "Assign numeric referral IDs to each user."
|
5612 |
msgstr "Отправить ID цифровых направлений каждому пользователю."
|
5613 |
|
5614 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5615 |
msgid "Example"
|
5616 |
msgstr "Пример"
|
5617 |
|
5618 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5619 |
msgid "Assign usernames as IDs for each user."
|
5620 |
msgstr "Назначить имена пользователей как ID для каждого участника."
|
5621 |
|
5622 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5623 |
msgid "IP Limit"
|
5624 |
msgstr "Лимит IP"
|
5625 |
|
5626 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5627 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5628 |
msgstr ""
|
5629 |
"Количество случаев, каждый IP адрес вознаграждается %_plural%. Использовать "
|
5630 |
"ноль для неограниченных."
|
5631 |
|
5632 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5633 |
msgid "BuddyPress Profile"
|
5634 |
msgstr "BuddyPress Профиль"
|
5635 |
|
5636 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5637 |
msgid "Insert Link in users Profile"
|
5638 |
msgstr "Вставить ссылку в профайл пользователя"
|
5639 |
|
5640 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5641 |
msgid ""
|
5642 |
"Option to inser the referral link in users profiles. Links will only be "
|
5643 |
"visible to users viewing their own profiles or administrators."
|
5646 |
"видимы для пользователей, которые просматривают свои собственные профайлы "
|
5647 |
"или администраторам."
|
5648 |
|
5649 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5650 |
msgid "Leave empty to hide."
|
5651 |
msgstr "Оставить пустым, чтобы спрятать."
|
5652 |
|
5653 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5654 |
msgid "Description"
|
5655 |
msgstr "Описание"
|
5656 |
|
5657 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5658 |
msgid "Optional description to insert under the link."
|
5659 |
msgstr "Описание по выбору для вставки под ссылкой."
|
5660 |
|
5661 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5662 |
msgid "Profile Positioning"
|
5663 |
msgstr "Расположение профайла"
|
5664 |
|
5665 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5666 |
msgid ""
|
5667 |
"You can move around the referral link on your users profile by changing the "
|
5668 |
"position. Increase to move up, decrease to move down."
|
5670 |
"Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
|
5671 |
"расположение. Увеличить для движения вверх, снизить для движения вниз."
|
5672 |
|
5673 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5674 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5675 |
msgstr ""
|
5676 |
"Вы не можете перемещать ссылку направления над \"Основными\" деталями профиля "
|
5677 |
"пользователя!"
|
5678 |
|
5679 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5680 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5681 |
msgstr "Для разрешения требуются Расширенные профили BuddyPress."
|
5682 |
|
5683 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5684 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5685 |
msgid "Access denied for this action"
|
5686 |
msgstr "Для этого действия доступ запрещен"
|
5687 |
|
5697 |
msgid "Entry Updated"
|
5698 |
msgstr "Запись обновлена"
|
5699 |
|
5700 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5701 |
msgid "Entries"
|
5702 |
msgstr "Записи"
|
5703 |
|
5704 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5705 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5706 |
msgid "Export"
|
5707 |
msgstr "Экспорт"
|
5708 |
|
5749 |
msgstr "Моя %s история"
|
5750 |
|
5751 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5752 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5753 |
msgid "Missing point type"
|
5754 |
msgstr "Отсутствует вид балла."
|
5755 |
|
5756 |
+
#: ../modules/mycred-module-settings.php:129
|
5757 |
msgid "Accounts successfully reset"
|
5758 |
msgstr "Аккаунт успешно восстановлен"
|
5759 |
|
5760 |
+
#: ../modules/mycred-module-settings.php:175
|
5761 |
msgid "No users found to export"
|
5762 |
msgstr "Пользователей в экспорте не найдено"
|
5763 |
|
5764 |
+
#: ../modules/mycred-module-settings.php:331
|
5765 |
#, php-format
|
5766 |
msgid "%s Settings"
|
5767 |
msgstr "%s Настройки"
|
5768 |
|
5769 |
+
#: ../modules/mycred-module-settings.php:334
|
5770 |
msgid "Adjust your core or add-on settings."
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: ../modules/mycred-module-settings.php:339
|
5774 |
msgid "Core Settings"
|
5775 |
msgstr "Основные настройки"
|
5776 |
|
5777 |
+
#: ../modules/mycred-module-settings.php:341
|
5778 |
msgid "Name"
|
5779 |
msgstr "Имя"
|
5780 |
|
5781 |
+
#: ../modules/mycred-module-settings.php:346
|
5782 |
#, php-format
|
5783 |
msgid "Accessible though the %singular% template tag."
|
5784 |
msgstr "Доступно через шаблон тега %singular%."
|
5785 |
|
5786 |
+
#: ../modules/mycred-module-settings.php:351
|
5787 |
msgid "Accessible though the %plural% template tag."
|
5788 |
msgstr "Доступно через шаблон тега %plural%."
|
5789 |
|
5790 |
+
#: ../modules/mycred-module-settings.php:354
|
5791 |
msgid "Tip"
|
5792 |
msgstr "Подсказка"
|
5793 |
|
5794 |
+
#: ../modules/mycred-module-settings.php:354
|
5795 |
msgid ""
|
5796 |
"Adding an underscore at the beginning of template tag for names will return "
|
5797 |
"them in lowercase. i.e. %_singular%"
|
5799 |
"Добавление нижнего подчеркивания в начале шаблона тега для имен вернет им "
|
5800 |
"мелкий шрифт. к примеру, %_singular%"
|
5801 |
|
5802 |
+
#: ../modules/mycred-module-settings.php:372
|
5803 |
msgid "Separator"
|
5804 |
msgid_plural "Separators"
|
5805 |
msgstr[0] "Разделитель"
|
5806 |
msgstr[1] "Разделители"
|
5807 |
msgstr[2] "Разделители"
|
5808 |
|
5809 |
+
#: ../modules/mycred-module-settings.php:379
|
5810 |
msgid "Edit Settings"
|
5811 |
msgstr "Редактировать настройки"
|
5812 |
|
5813 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5814 |
+
#: php:386
|
5815 |
msgid "Capability to check for."
|
5816 |
msgstr "Возможность для проверки."
|
5817 |
|
5818 |
+
#: ../modules/mycred-module-settings.php:384
|
5819 |
msgid "Edit Users %plural%"
|
5820 |
msgstr "Редактировать %plural% пользователей"
|
5821 |
|
5822 |
+
#: ../modules/mycred-module-settings.php:408
|
5823 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5824 |
msgstr ""
|
5825 |
"Разделенный запятой список id пользователей для исключения. Пробелы не "
|
5826 |
"разрешаются!"
|
5827 |
|
5828 |
+
#: ../modules/mycred-module-settings.php:428
|
5829 |
msgid "Management"
|
5830 |
msgstr "Управление"
|
5831 |
|
5832 |
+
#: ../modules/mycred-module-settings.php:430
|
5833 |
msgid "The Log"
|
5834 |
msgstr "Журнал"
|
5835 |
|
5836 |
+
#: ../modules/mycred-module-settings.php:433
|
5837 |
msgid "Table Name"
|
5838 |
msgstr "Имя таблицы"
|
5839 |
|
5840 |
+
#: ../modules/mycred-module-settings.php:442
|
5841 |
msgid "Empty Log"
|
5842 |
msgstr "Пустой журнал"
|
5843 |
|
5844 |
+
#: ../modules/mycred-module-settings.php:448
|
5845 |
msgid "User Meta Key"
|
5846 |
msgstr "Ключ Meta Пользователя"
|
5847 |
|
5848 |
+
#: ../modules/mycred-module-settings.php:457
|
5849 |
msgid "Set all to zero"
|
5850 |
msgstr "Аннулировать все"
|
5851 |
|
5852 |
+
#: ../modules/mycred-module-settings.php:457
|
5853 |
msgid "CSV Export"
|
5854 |
msgstr "CSV Экспорт"
|
5855 |
|
5856 |
+
#: ../modules/mycred-module-settings.php:478
|
5857 |
msgid "Default"
|
5858 |
msgstr "По умолчанию"
|
5859 |
|
5860 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5861 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5862 |
msgid "Meta Key"
|
5863 |
msgstr "Ключ Meta"
|
5864 |
|
5865 |
+
#: ../modules/mycred-module-settings.php:519
|
5866 |
msgid "Add New Type"
|
5867 |
msgstr "Добавить новый вид"
|
5868 |
|
5869 |
+
#: ../modules/mycred-module-settings.php:524
|
5870 |
msgid "A unique ID for this type."
|
5871 |
msgstr "Уникальный ID для этого типа."
|
5872 |
|
5873 |
+
#: ../modules/mycred-module-settings.php:529
|
5874 |
msgid "Menu and page title."
|
5875 |
msgstr "Меню и страница заголовка."
|
5876 |
|
5877 |
+
#: ../modules/mycred-module-settings.php:532
|
5878 |
msgid "The meta key will define where your users balances are saved."
|
5879 |
msgstr ""
|
5880 |
"С помощью Meta ключа вы можете просмотреть, где сохраняются балансы ваших "
|
5881 |
"пользователей."
|
5882 |
|
5883 |
+
#: ../modules/mycred-module-settings.php:553
|
5884 |
msgid "Identify users by"
|
5885 |
msgstr "Определять пользователей по"
|
5886 |
|
5887 |
+
#: ../modules/mycred-module-settings.php:559
|
5888 |
msgid "User Email"
|
5889 |
msgstr "Email пользователя"
|
5890 |
|
5891 |
+
#: ../modules/mycred-module-settings.php:560
|
5892 |
msgid "User Login"
|
5893 |
msgstr "Логин пользователя"
|
5894 |
|
5895 |
+
#: ../modules/mycred-module-settings.php:567
|
5896 |
msgid ""
|
5897 |
"Use ID if you intend to use this export as a backup of your current site "
|
5898 |
"while Email is recommended if you want to export to a different site."
|
5901 |
"нынешнего сайта. Если вы желаете выполнить перемещение на другой сайт, "
|
5902 |
"рекомендуется использовать email."
|
5903 |
|
5904 |
+
#: ../modules/mycred-module-settings.php:570
|
5905 |
msgid "Import Log Entry"
|
5906 |
msgstr "Импорт записей журнала"
|
5907 |
|
5908 |
+
#: ../modules/mycred-module-settings.php:572
|
5909 |
#, php-format
|
5910 |
msgid ""
|
5911 |
"Optional log entry to use if you intend to import this file in a different "
|
5914 |
"Дополнительная запись в журнале для использования, если вы намерены "
|
5915 |
"выполнить импорт этого файла в разной %s установке."
|
5916 |
|
5917 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5918 |
msgid "BadgeOS"
|
5919 |
msgstr "BadgeOS"
|
5920 |
|
5921 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5922 |
msgid ""
|
5923 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5924 |
"overridden for individual achievement type."
|
5926 |
"Настройки по умолчанию для каждого вида достижений BadgeOS. Эти настройки "
|
5927 |
"можно переопределить для индивидуального вида достижений."
|
5928 |
|
5929 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5930 |
#, php-format
|
5931 |
msgid ""
|
5932 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5935 |
"Пожалуйста установите ваши настройки <a href=\"%s\">по умолчанию </a> перед "
|
5936 |
"использованием этого параметра."
|
5937 |
|
5938 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5939 |
msgid "%plural% to Award"
|
5940 |
msgstr "%plural% наградить"
|
5941 |
|
5942 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5943 |
msgid "Use zero to disable"
|
5944 |
msgstr "Использовать ноль, чтобы отключить"
|
5945 |
|
5946 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5947 |
msgid "Deduction Log Template"
|
5948 |
msgstr "Выведение шаблона журнала"
|
5949 |
|
5950 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5951 |
#, php-format
|
5952 |
msgid "Default %s for %s"
|
5953 |
msgstr "По умолчанию %s для %s"
|
5954 |
|
5955 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5956 |
msgid "Use zero to disable users gaining %_plural%"
|
5957 |
msgstr ""
|
5958 |
"Использовать ноль для отключения пользователей, которые зарабатывают "
|
5959 |
"%_plural%"
|
5960 |
|
5961 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5962 |
msgid "Default Log template"
|
5963 |
msgstr "Шаблон журнала по умолчанию"
|
5964 |
|
lang/mycred-sv_SE.mo
CHANGED
Binary file
|
lang/mycred-sv_SE.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Swedish\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -24,88 +24,88 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: sv_SE"
|
26 |
|
27 |
-
#: ../mycred.php:
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
-
#: ../mycred.php:
|
32 |
msgid "%label% History"
|
33 |
msgstr "%label% Historik"
|
34 |
|
35 |
-
#: ../mycred.php:
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Om %s"
|
39 |
|
40 |
-
#: ../mycred.php:
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Hjälpsamma Användare"
|
43 |
|
44 |
-
#: ../mycred.php:
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
-
#: includes/mycred-shortcodes.php:
|
49 |
msgid "Processing..."
|
50 |
msgstr "Arbetar..."
|
51 |
|
52 |
-
#: ../mycred.php:
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
56 |
msgstr "Varning! Alla log inlägg kommer att raderas!"
|
57 |
|
58 |
-
#: ../mycred.php:
|
59 |
msgid ""
|
60 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
61 |
"can not be undone!"
|
62 |
msgstr "All log inlägg för användare som har raderats kommer att raderas!"
|
63 |
|
64 |
-
#: ../mycred.php:
|
65 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
66 |
msgstr "Varning! Alla användares konton kommer att noll ställas!"
|
67 |
|
68 |
-
#: ../mycred.php:
|
69 |
msgid "Done!"
|
70 |
msgstr "Klart!"
|
71 |
|
72 |
-
#: ../mycred.php:
|
73 |
msgid "Close"
|
74 |
msgstr "Stäng"
|
75 |
|
76 |
-
#: ../mycred.php:
|
77 |
msgid "Export users %plural%"
|
78 |
msgstr "Exportera användarens %plural%"
|
79 |
|
80 |
-
#: ../mycred.php:
|
81 |
msgid "Edit Users Balance"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../mycred.php:
|
85 |
msgid "Edit Log Entry"
|
86 |
msgstr "Justera log inlägg"
|
87 |
|
88 |
-
#: ../mycred.php:
|
89 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
90 |
msgstr "Är du säker på att du vill radera detta inlägg?"
|
91 |
|
92 |
-
#: ../mycred.php:
|
93 |
msgid "Log entry updated"
|
94 |
msgstr "Log inlägg updaterad"
|
95 |
|
96 |
-
#: ../mycred.php:
|
97 |
-
#: notices.php:
|
98 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
99 |
msgid "Setup"
|
100 |
msgstr "Setup"
|
101 |
|
102 |
-
#: ../mycred.php:
|
103 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
104 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
105 |
msgid "Settings"
|
106 |
msgstr "Inställningar"
|
107 |
|
108 |
-
#: ../mycred.php:
|
109 |
msgid ""
|
110 |
"Make sure to backup your database and files before updating, in case "
|
111 |
"anything goes wrong!"
|
@@ -145,10 +145,10 @@ msgstr "En gång om dagen (börjar om efter midnatt)"
|
|
145 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
146 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
147 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
148 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
149 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
150 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
151 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
152 |
msgid "Select"
|
153 |
msgstr "Välj"
|
154 |
|
@@ -248,7 +248,7 @@ msgid "Requirements"
|
|
248 |
msgstr ""
|
249 |
|
250 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
251 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
252 |
msgid "Users"
|
253 |
msgstr "Användare"
|
254 |
|
@@ -331,22 +331,22 @@ msgstr ""
|
|
331 |
|
332 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
333 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
334 |
-
#: modules/mycred-module-buddypress.php:
|
335 |
msgid "Do not show"
|
336 |
msgstr "Visa inte"
|
337 |
|
338 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
339 |
-
#: buddypress.php:
|
340 |
msgid "Include in Profile Header"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
344 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
345 |
msgid "Include under the \"Profile\" tab"
|
346 |
msgstr "Inkludera under \"Profil\" tabben"
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
349 |
-
#: buddypress.php:
|
350 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
351 |
msgstr ""
|
352 |
|
@@ -415,7 +415,7 @@ msgstr ""
|
|
415 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
416 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
417 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
418 |
-
#: modules/mycred-module-settings.php:
|
419 |
msgid "Access Denied"
|
420 |
msgstr "Nekad Åtkomst"
|
421 |
|
@@ -566,8 +566,8 @@ msgstr "Utbetalning"
|
|
566 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
567 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
568 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
569 |
-
#: modules/mycred-module-hooks.php:
|
570 |
-
#: plugins/mycred-hook-badgeOS.php:
|
571 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
572 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
573 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -664,15 +664,15 @@ msgstr "Betala Användare"
|
|
664 |
|
665 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
666 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
667 |
-
#: creds.php:
|
668 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
669 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
670 |
-
#: includes/mycred-shortcodes.php:
|
671 |
msgid "Amount"
|
672 |
msgstr "Summa"
|
673 |
|
674 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
675 |
-
#: modules/mycred-module-hooks.php:
|
676 |
msgid "Interval"
|
677 |
msgstr "Tal"
|
678 |
|
@@ -723,7 +723,7 @@ msgid "Edit Pending Payment"
|
|
723 |
msgstr ""
|
724 |
|
725 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
726 |
-
#: addon-buy-creds.php:
|
727 |
msgid "No pending payments found"
|
728 |
msgstr ""
|
729 |
|
@@ -732,23 +732,23 @@ msgid "Not found in Trash"
|
|
732 |
msgstr ""
|
733 |
|
734 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
735 |
-
#: addon-buy-creds.php:
|
736 |
msgid "Transaction ID"
|
737 |
msgstr "Transaktions ID"
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
740 |
-
#: addon-buy-creds.php:
|
741 |
msgid "Buyer"
|
742 |
msgstr ""
|
743 |
|
744 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
745 |
-
#: addon-buy-creds.php:
|
746 |
#: gateway.php:563
|
747 |
msgid "Cost"
|
748 |
msgstr "Kostnad"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
751 |
-
#: addon-buy-creds.php:
|
752 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
753 |
msgid "Gateway"
|
754 |
msgstr "Operatör"
|
@@ -797,7 +797,7 @@ msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
|
|
797 |
|
798 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
799 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
800 |
-
#: module-settings.php:
|
801 |
msgid "Point Types"
|
802 |
msgstr ""
|
803 |
|
@@ -850,7 +850,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
850 |
msgstr "Tillåt användare att köpra %_plural% åt post författare."
|
851 |
|
852 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
853 |
-
#: hooks.php:
|
854 |
msgid "Available Shortcodes"
|
855 |
msgstr ""
|
856 |
|
@@ -877,7 +877,7 @@ msgid "%s Payment Gateways"
|
|
877 |
msgstr "%s Betalnings Operatörer"
|
878 |
|
879 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
880 |
-
#: addon-buy-creds.php:
|
881 |
msgid "buyCRED Settings"
|
882 |
msgstr "buyCRED Inställningar"
|
883 |
|
@@ -902,7 +902,7 @@ msgid "Enable for test purchases."
|
|
902 |
msgstr "Aktivera för test köp."
|
903 |
|
904 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
905 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
906 |
msgid "Update Settings"
|
907 |
msgstr "Spara Ändringar"
|
908 |
|
@@ -910,101 +910,101 @@ msgstr "Spara Ändringar"
|
|
910 |
msgid "More Gateways"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
914 |
#: 634
|
915 |
msgid "Date"
|
916 |
msgstr "Datum"
|
917 |
|
918 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
919 |
msgid "Payed"
|
920 |
msgstr "Betalt"
|
921 |
|
922 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
923 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
924 |
msgstr "<strong>buy</strong>CRED Köp Log"
|
925 |
|
926 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
927 |
#: booking/mycred-eventespresso3.php:367
|
928 |
msgid "Gateway Settings"
|
929 |
msgstr "Operatör Inställningar"
|
930 |
|
931 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
932 |
-
#: content/myCRED-addon-sell-content.php:
|
933 |
msgid "No purchases found"
|
934 |
msgstr "Inga Köp"
|
935 |
|
936 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
937 |
-
#: addon-buy-creds.php:
|
938 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
939 |
msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
|
940 |
|
941 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
942 |
-
#: addon-buy-creds.php:
|
943 |
msgid "No gateways installed."
|
944 |
msgstr "Inga Operatörer är installerade."
|
945 |
|
946 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
947 |
-
#: addon-buy-creds.php:
|
948 |
msgid "Gateway does not exist."
|
949 |
msgstr "Kunde inte finna operatör."
|
950 |
|
951 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
952 |
msgid "Yourself"
|
953 |
msgstr "Till dig själv"
|
954 |
|
955 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
956 |
msgid "No active gateways found."
|
957 |
msgstr "Kunde inte hitta några aktiverade operatörer."
|
958 |
|
959 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
960 |
msgid "The selected gateway is not active."
|
961 |
msgstr "Operatören du valde är inte aktiverad."
|
962 |
|
963 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
964 |
#, php-format
|
965 |
msgid "Buy with %gateway%"
|
966 |
msgstr "Köp genom %gateway%"
|
967 |
|
968 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
969 |
#: content/myCRED-addon-sell-content.php:44
|
970 |
msgid "Buy Now"
|
971 |
msgstr "Köp"
|
972 |
|
973 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
974 |
msgid "No users found"
|
975 |
msgstr "Kunde inte hitta någon"
|
976 |
|
977 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
978 |
msgid "To"
|
979 |
msgstr "Till"
|
980 |
|
981 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
982 |
msgid "Select Amount"
|
983 |
msgstr "Välj summa"
|
984 |
|
985 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
986 |
msgid "min."
|
987 |
msgstr "min."
|
988 |
|
989 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
990 |
msgid "Select Gateway"
|
991 |
msgstr "Välj Operatör"
|
992 |
|
993 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
994 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
995 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
996 |
#: php:35
|
997 |
msgid "Pay Now"
|
998 |
msgstr "Betala"
|
999 |
|
1000 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1001 |
-
#: php:
|
1002 |
msgid "Cancel"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1006 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1007 |
-
#: module-settings.php:
|
1008 |
msgid "Actions"
|
1009 |
msgstr "Åtgärder"
|
1010 |
|
@@ -1146,55 +1146,55 @@ msgstr "Klicka här om du inte kommer vidare automatiskt"
|
|
1146 |
msgid "The following information will be sent to the gateway"
|
1147 |
msgstr "Följande information kommer att skickas till betalnings operatören"
|
1148 |
|
1149 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1150 |
msgid "Outside US"
|
1151 |
msgstr "Utanför US"
|
1152 |
|
1153 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1154 |
msgid "January"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1158 |
msgid "February"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1162 |
msgid "March"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1166 |
msgid "April"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1170 |
msgid "May"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1174 |
msgid "June"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1178 |
msgid "July"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1182 |
msgid "August"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1186 |
msgid "September"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1190 |
msgid "October"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1194 |
msgid "November"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1198 |
msgid "December"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1439,7 +1439,7 @@ msgstr "Checkout Sida"
|
|
1439 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1440 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1441 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1442 |
-
#: modules/mycred-module-hooks.php:
|
1443 |
msgid "Title"
|
1444 |
msgstr "Titel"
|
1445 |
|
@@ -1639,7 +1639,7 @@ msgid "not yet used"
|
|
1639 |
msgstr "oanvänd"
|
1640 |
|
1641 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1642 |
-
#: php:
|
1643 |
msgid "Total"
|
1644 |
msgstr "Total"
|
1645 |
|
@@ -1809,7 +1809,7 @@ msgid "Apply Coupon"
|
|
1809 |
msgstr "Validera"
|
1810 |
|
1811 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1812 |
-
#: notices/myCRED-addon-email-notices.php:
|
1813 |
msgid "Email Notice"
|
1814 |
msgstr "E-postmeddelande"
|
1815 |
|
@@ -2000,17 +2000,17 @@ msgstr ""
|
|
2000 |
"åsidosättas när du redigerar postmeddelanden."
|
2001 |
|
2002 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2003 |
-
#: notices/myCRED-addon-email-notices.php:
|
2004 |
msgid "Email Settings"
|
2005 |
msgstr "E-mail inställningar"
|
2006 |
|
2007 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2008 |
-
#: notices/myCRED-addon-email-notices.php:
|
2009 |
msgid "Senders Name:"
|
2010 |
msgstr "Avsändarens Namn:"
|
2011 |
|
2012 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2013 |
-
#: notices/myCRED-addon-email-notices.php:
|
2014 |
msgid "Senders Email:"
|
2015 |
msgstr "Avsändarens e-postadress"
|
2016 |
|
@@ -2034,140 +2034,140 @@ msgstr "Standrad e-post css design"
|
|
2034 |
msgid "Ignored if HTML is not allowed in emails."
|
2035 |
msgstr "Ignoreras om e-post inte använder HTML formatering."
|
2036 |
|
2037 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2038 |
-
#: notices/myCRED-addon-email-notices.php:
|
2039 |
msgid "Email Subject"
|
2040 |
msgstr "Ämne"
|
2041 |
|
2042 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2043 |
msgid "Status"
|
2044 |
msgstr "Status"
|
2045 |
|
2046 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2047 |
msgid "Not Active"
|
2048 |
msgstr "Inte Aktiv"
|
2049 |
|
2050 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2051 |
#, php-format
|
2052 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2053 |
msgstr "Planerad:<br /><strong>%1%s</strong>"
|
2054 |
|
2055 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2056 |
msgid "Active"
|
2057 |
msgstr "Aktiv"
|
2058 |
|
2059 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2060 |
#, php-format
|
2061 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2062 |
msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
|
2063 |
|
2064 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2065 |
msgid "Email is sent when"
|
2066 |
msgstr "E-post skickas när"
|
2067 |
|
2068 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2069 |
msgid "Missing instance for this notice!"
|
2070 |
msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
|
2071 |
|
2072 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2073 |
-
#: notices/myCRED-addon-email-notices.php:
|
2074 |
-
#: addon-email-notices.php:
|
2075 |
msgid "Sent To"
|
2076 |
msgstr "Skicka till"
|
2077 |
|
2078 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2079 |
-
#: notices/myCRED-addon-email-notices.php:
|
2080 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2081 |
msgid "User"
|
2082 |
msgstr "Användare"
|
2083 |
|
2084 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2085 |
-
#: notices/myCRED-addon-email-notices.php:
|
2086 |
msgid "Administrator"
|
2087 |
msgstr "Administratörer"
|
2088 |
|
2089 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2090 |
msgid "Both Administrator and User"
|
2091 |
msgstr "Både Administratörer och Användare"
|
2092 |
|
2093 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2094 |
msgid "Available Template Tags"
|
2095 |
msgstr "Valbara Template Tags"
|
2096 |
|
2097 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2098 |
msgid "Email Header"
|
2099 |
msgstr "E-post header"
|
2100 |
|
2101 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2102 |
msgid "Send this email notice when..."
|
2103 |
msgstr "Skicka e-post när ..."
|
2104 |
|
2105 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2106 |
msgid "Recipient:"
|
2107 |
msgstr "Mottagare"
|
2108 |
|
2109 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2110 |
msgid "Both"
|
2111 |
msgstr "Båda"
|
2112 |
|
2113 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2114 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2115 |
-
#: settings.php:
|
2116 |
-
#: module-settings.php:
|
2117 |
msgid "Label"
|
2118 |
msgstr "Titel"
|
2119 |
|
2120 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2121 |
msgid "Reply-To Email:"
|
2122 |
msgstr "Svars e-postadress:"
|
2123 |
|
2124 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2125 |
msgid "Save"
|
2126 |
msgstr "Spara"
|
2127 |
|
2128 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2129 |
msgid "CSS Styling"
|
2130 |
msgstr "CSS design"
|
2131 |
|
2132 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2133 |
msgid "Site Related"
|
2134 |
msgstr "Hemsida relaterat"
|
2135 |
|
2136 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2137 |
msgid "Your websites title"
|
2138 |
msgstr "Din hemsidas titel"
|
2139 |
|
2140 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2141 |
msgid "Your websites address"
|
2142 |
msgstr "Din hemsidas URL adress"
|
2143 |
|
2144 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2145 |
msgid "Your websites tagline (description)"
|
2146 |
msgstr "Din hemsidas beskrivning"
|
2147 |
|
2148 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2149 |
msgid "Your websites admin email"
|
2150 |
msgstr "Din hemsidas administratör e-postadress"
|
2151 |
|
2152 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2153 |
msgid "Total number of blog members"
|
2154 |
msgstr "Total antal användare på hemsidan"
|
2155 |
|
2156 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2157 |
-
#: notices/myCRED-addon-email-notices.php:
|
2158 |
-
#: addon-email-notices.php:
|
2159 |
msgid "Email Notice Updated."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2163 |
msgid "Email Notice Activated"
|
2164 |
msgstr "E-post meddelande aktiverad"
|
2165 |
|
2166 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2167 |
msgid "Email Notice Saved"
|
2168 |
msgstr "E-post meddelande inställningar updaterade"
|
2169 |
|
2170 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2171 |
msgid ""
|
2172 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2173 |
"are not yet ready to use this email notice!"
|
@@ -2175,28 +2175,28 @@ msgstr ""
|
|
2175 |
"När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
|
2176 |
"samma! Spara som kladd om du inte vill använda meddelandet just nu."
|
2177 |
|
2178 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2179 |
#, php-format
|
2180 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2181 |
msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
|
2182 |
|
2183 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2184 |
msgid "This email notice is active."
|
2185 |
msgstr "Detta e-post meddelande är inte aktivt."
|
2186 |
|
2187 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2188 |
msgid "Settings saved."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2192 |
msgid "Unsubscribe"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2196 |
msgid "There are no email notifications yet."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2200 |
msgid "Save Changes"
|
2201 |
msgstr ""
|
2202 |
|
@@ -2243,7 +2243,7 @@ msgstr "Betald"
|
|
2243 |
|
2244 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2245 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2246 |
-
#: 52 ../includes/mycred-network.php:53
|
2247 |
msgid "myCRED"
|
2248 |
msgstr "myCRED"
|
2249 |
|
@@ -2322,7 +2322,7 @@ msgstr "Hur mycket är 1 %_singular% värd i %currency%?"
|
|
2322 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2323 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2324 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2325 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2326 |
msgid "Exchange Rate"
|
2327 |
msgstr "Växlings kurs"
|
2328 |
|
@@ -2626,7 +2626,7 @@ msgstr "Titel att visa på kvitton och i loggar"
|
|
2626 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2627 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2628 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2629 |
-
#: sell-content.php:
|
2630 |
msgid "Button Label"
|
2631 |
msgstr "Knapp Text"
|
2632 |
|
@@ -2640,7 +2640,7 @@ msgstr "Betalnings Knapp"
|
|
2640 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2641 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2642 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2643 |
-
#: sell-content.php:
|
2644 |
msgid "Price"
|
2645 |
msgstr "Pris"
|
2646 |
|
@@ -2745,8 +2745,8 @@ msgid "Reject"
|
|
2745 |
msgstr "Avvisa"
|
2746 |
|
2747 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2748 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2749 |
-
#: modules/mycred-module-settings.php:
|
2750 |
msgid "Delete"
|
2751 |
msgstr "Radera"
|
2752 |
|
@@ -2868,7 +2868,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2868 |
msgstr "Använd den inkluderade CSS stilen."
|
2869 |
|
2870 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2871 |
-
#: module-buddypress.php:
|
2872 |
msgid "Template"
|
2873 |
msgstr "Mall"
|
2874 |
|
@@ -3140,7 +3140,7 @@ msgid ""
|
|
3140 |
msgstr "Välg vilken visningsordning du vill använda"
|
3141 |
|
3142 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3143 |
-
#: php:
|
3144 |
msgid "Do not show."
|
3145 |
msgstr "Visa inte"
|
3146 |
|
@@ -3190,9 +3190,9 @@ msgid "No users found with this rank"
|
|
3190 |
msgstr "Inga användare hittades med denna rank"
|
3191 |
|
3192 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3193 |
-
#: shortcodes.php:
|
3194 |
-
#: shortcodes.php:
|
3195 |
-
#: shortcodes.php:
|
3196 |
msgid "error"
|
3197 |
msgstr "error"
|
3198 |
|
@@ -3315,38 +3315,38 @@ msgstr "Log mall för försäljning"
|
|
3315 |
msgid "%s Sell This"
|
3316 |
msgstr "%s Sälj Detta"
|
3317 |
|
3318 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3319 |
#, php-format
|
3320 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3321 |
msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
|
3322 |
|
3323 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3324 |
msgid "Setup add-on"
|
3325 |
msgstr "Installera add-on"
|
3326 |
|
3327 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3328 |
msgid "Lets do it"
|
3329 |
msgstr "Kör!"
|
3330 |
|
3331 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3332 |
#, php-format
|
3333 |
msgid "Enable sale of this %s"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3337 |
msgid "Purchase expires after"
|
3338 |
msgstr "Köp löper ut efter"
|
3339 |
|
3340 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3341 |
msgid "Thank you for your purchase!"
|
3342 |
msgstr "Tack för ditt köp!"
|
3343 |
|
3344 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3345 |
-
#: content/myCRED-addon-sell-content.php:
|
3346 |
msgid "The following content is set for sale:"
|
3347 |
msgstr "Följande innehåll är till salu:"
|
3348 |
|
3349 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3350 |
msgid "Purchased"
|
3351 |
msgstr "Köp historik"
|
3352 |
|
@@ -3359,7 +3359,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3359 |
msgstr ""
|
3360 |
|
3361 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3362 |
-
#: php:
|
3363 |
msgid "Transfer"
|
3364 |
msgstr ""
|
3365 |
|
@@ -3394,7 +3394,7 @@ msgid ""
|
|
3394 |
msgstr ""
|
3395 |
|
3396 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3397 |
-
#: php:
|
3398 |
msgid "Insufficient Funds. Please try a lower amount."
|
3399 |
msgstr ""
|
3400 |
|
@@ -3761,282 +3761,282 @@ msgstr ""
|
|
3761 |
msgid "My Entire Log"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: ../includes/mycred-functions.php:
|
3765 |
msgid "ref empty"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: ../includes/mycred-functions.php:
|
3769 |
msgid "incorrect user id format"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: ../includes/mycred-functions.php:
|
3773 |
msgid "incorrect unix timestamp (from):"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: ../includes/mycred-functions.php:
|
3777 |
msgid "incorrect unix timestamp (to):"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: ../includes/mycred-functions.php:
|
3781 |
msgid "Website Registration"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: ../includes/mycred-functions.php:
|
3785 |
msgid "Website Visit"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: ../includes/mycred-functions.php:
|
3789 |
msgid "Viewing Content (Member)"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: ../includes/mycred-functions.php:
|
3793 |
msgid "Viewing Content (Author)"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: ../includes/mycred-functions.php:
|
3797 |
msgid "Logging in"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: ../includes/mycred-functions.php:
|
3801 |
msgid "Publishing Content"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: ../includes/mycred-functions.php:
|
3805 |
msgid "Approved Comment"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: ../includes/mycred-functions.php:
|
3809 |
msgid "Unapproved Comment"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: ../includes/mycred-functions.php:
|
3813 |
msgid "SPAM Comment"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: ../includes/mycred-functions.php:
|
3817 |
msgid "Deleted Comment"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: ../includes/mycred-functions.php:
|
3821 |
msgid "Link Click"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: ../includes/mycred-functions.php:
|
3825 |
msgid "Watching Video"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: ../includes/mycred-functions.php:
|
3829 |
msgid "Visitor Referral"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: ../includes/mycred-functions.php:
|
3833 |
msgid "Signup Referral"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: ../includes/mycred-functions.php:
|
3837 |
msgid "New Profile Update"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: ../includes/mycred-functions.php:
|
3841 |
msgid "Avatar Upload"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: ../includes/mycred-functions.php:
|
3845 |
msgid "New Friendship"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: ../includes/mycred-functions.php:
|
3849 |
msgid "Ended Friendship"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: ../includes/mycred-functions.php:
|
3853 |
msgid "New Profile Comment"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: ../includes/mycred-functions.php:
|
3857 |
msgid "Profile Comment Deletion"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: ../includes/mycred-functions.php:
|
3861 |
msgid "New Message"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: ../includes/mycred-functions.php:
|
3865 |
msgid "Sending Gift"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: ../includes/mycred-functions.php:
|
3869 |
msgid "New Group"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: ../includes/mycred-functions.php:
|
3873 |
msgid "Deleted Group"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: ../includes/mycred-functions.php:
|
3877 |
msgid "New Group Forum Topic"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: ../includes/mycred-functions.php:
|
3881 |
msgid "Edit Group Forum Topic"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: ../includes/mycred-functions.php:
|
3885 |
msgid "New Group Forum Post"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: ../includes/mycred-functions.php:
|
3889 |
msgid "Edit Group Forum Post"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: ../includes/mycred-functions.php:
|
3893 |
msgid "Joining Group"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: ../includes/mycred-functions.php:
|
3897 |
msgid "Leaving Group"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: ../includes/mycred-functions.php:
|
3901 |
msgid "New Group Avatar"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: ../includes/mycred-functions.php:
|
3905 |
msgid "New Group Comment"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: ../includes/mycred-functions.php:
|
3909 |
#: php:166
|
3910 |
msgid "Photo Upload"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: ../includes/mycred-functions.php:
|
3914 |
#: php:176
|
3915 |
msgid "Video Upload"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: ../includes/mycred-functions.php:
|
3919 |
#: php:186
|
3920 |
msgid "Music Upload"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: ../includes/mycred-functions.php:
|
3924 |
msgid "New Link"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: ../includes/mycred-functions.php:
|
3928 |
msgid "Link Voting"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: ../includes/mycred-functions.php:
|
3932 |
msgid "Link Update"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: ../includes/mycred-functions.php:
|
3936 |
msgid "New Forum (bbPress)"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: ../includes/mycred-functions.php:
|
3940 |
msgid "New Forum Topic (bbPress)"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: ../includes/mycred-functions.php:
|
3944 |
msgid "Favorited Topic (bbPress)"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: ../includes/mycred-functions.php:
|
3948 |
msgid "New Topic Reply (bbPress)"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: ../includes/mycred-functions.php:
|
3952 |
msgid "Form Submission (Contact Form 7)"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: ../includes/mycred-functions.php:
|
3956 |
msgid "Form Submission (Gravity Form)"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: ../includes/mycred-functions.php:
|
3960 |
msgid "New Forum Topic (SimplePress)"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: ../includes/mycred-functions.php:
|
3964 |
msgid "New Forum Post (SimplePress)"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: ../includes/mycred-functions.php:
|
3968 |
msgid "Poll Voting"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: ../includes/mycred-functions.php:
|
3972 |
msgid "Sending an Invite"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: ../includes/mycred-functions.php:
|
3976 |
msgid "Accepting an Invite"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: ../includes/mycred-functions.php:
|
3980 |
msgid "Banking Payout"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: ../includes/mycred-functions.php:
|
3984 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: ../includes/mycred-functions.php:
|
3988 |
msgid "buyCRED Purchase (Skrill)"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: ../includes/mycred-functions.php:
|
3992 |
msgid "buyCRED Purchase (Zombaio)"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: ../includes/mycred-functions.php:
|
3996 |
msgid "buyCRED Purchase (NETBilling)"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: ../includes/mycred-functions.php:
|
4000 |
msgid "buyCRED Purchase (BitPay)"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: ../includes/mycred-functions.php:
|
4004 |
msgid "Coupon Purchase"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: ../includes/mycred-functions.php:
|
4008 |
msgid "Store Purchase (WooCommerce)"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: ../includes/mycred-functions.php:
|
4012 |
msgid "Store Purchase (MarketPress)"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: ../includes/mycred-functions.php:
|
4016 |
msgid "Store Purchase (WP E-Commerce)"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: ../includes/mycred-functions.php:
|
4020 |
msgid "Event Payment (Event Espresso)"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: ../includes/mycred-functions.php:
|
4024 |
msgid "Event Sale (Event Espresso)"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: ../includes/mycred-functions.php:
|
4028 |
msgid "Event Payment (Events Manager)"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: ../includes/mycred-functions.php:
|
4032 |
msgid "Event Sale (Events Manager)"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: ../includes/mycred-functions.php:
|
4036 |
msgid "Content Purchase / Sale"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: ../includes/mycred-functions.php:
|
4040 |
msgid "Manual Adjustment by Admin"
|
4041 |
msgstr ""
|
4042 |
|
@@ -4084,115 +4084,115 @@ msgstr ""
|
|
4084 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: ../includes/mycred-install.php:
|
4088 |
msgid ""
|
4089 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4090 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4091 |
"for you!"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: ../includes/mycred-install.php:
|
4095 |
msgid ""
|
4096 |
"Sorry but your WordPress installation does not reach the minimum "
|
4097 |
"requirements for running myCRED. The following errors were given:"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: ../includes/mycred-install.php:
|
4101 |
msgid "myCRED needs your attention."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: ../includes/mycred-install.php:
|
4105 |
msgid "Run Setup"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: ../includes/mycred-install.php:
|
4109 |
msgid "myCRED Setup"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: ../includes/mycred-install.php:
|
4113 |
#, php-format
|
4114 |
msgid "%s Setup"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: ../includes/mycred-install.php:
|
4118 |
msgid "Step"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: ../includes/mycred-install.php:
|
4122 |
msgid ""
|
4123 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4124 |
"points format, layout and security settings."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: ../includes/mycred-install.php:
|
4128 |
msgid "Begin Setup"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: ../includes/mycred-install.php:
|
4132 |
msgid "Select the format you want to use for your points."
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: ../includes/mycred-install.php:
|
4136 |
msgid "Format"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: ../includes/mycred-install.php:
|
4140 |
msgid "Separators"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: ../includes/mycred-install.php:
|
4144 |
msgid "Decimals"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: ../includes/mycred-install.php:
|
4148 |
msgid "Use zero for no decimals."
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: ../includes/mycred-install.php:
|
4152 |
msgid "Presentation"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
-
#: ../includes/mycred-install.php:
|
4156 |
msgid "Name (Singular)"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: ../includes/mycred-install.php:
|
4160 |
msgid "Name (Plural)"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: ../includes/mycred-install.php:
|
4164 |
msgid "Prefix"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: ../includes/mycred-install.php:
|
4168 |
msgid "Suffix"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: ../includes/mycred-install.php:
|
4172 |
msgid "Cancel Setup"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: ../includes/mycred-install.php:
|
4176 |
msgid "Next"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: ../includes/mycred-install.php:
|
4180 |
msgid "Security"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: ../includes/mycred-install.php:
|
4184 |
msgid "Edit Settings Capability"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: ../includes/mycred-install.php:
|
4188 |
msgid "Edit Users %plural% Capability"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: ../includes/mycred-install.php:
|
4192 |
msgid "Maximum %plural% payouts"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: ../includes/mycred-install.php:
|
4196 |
msgid ""
|
4197 |
"As an added security, you can set the maximum amount a user can gain or "
|
4198 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4200,39 +4200,39 @@ msgid ""
|
|
4200 |
"disable."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: ../includes/mycred-install.php:
|
4204 |
msgid "Excludes"
|
4205 |
msgstr "Exkludera "
|
4206 |
|
4207 |
-
#: ../includes/mycred-install.php:
|
4208 |
msgid "Exclude those who can \"Edit Settings\"."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: ../includes/mycred-install.php:
|
4212 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: ../includes/mycred-install.php:
|
4216 |
msgid "Exclude the following user IDs:"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: ../includes/mycred-install.php:
|
4220 |
msgid "User Deletions"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: ../includes/mycred-install.php:
|
4224 |
msgid "Delete log entries when user is deleted."
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: ../includes/mycred-install.php:
|
4228 |
msgid "Ready"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: ../includes/mycred-install.php:
|
4232 |
msgid "Almost done! Click the button below to finish this setup."
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: ../includes/mycred-install.php:
|
4236 |
msgid "Install & Run"
|
4237 |
msgstr ""
|
4238 |
|
@@ -4245,29 +4245,29 @@ msgstr ""
|
|
4245 |
msgid "entry"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: ../includes/mycred-log.php:
|
4249 |
msgid "Go to the first page"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: ../includes/mycred-log.php:
|
4253 |
msgid "Go to the previous page"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: ../includes/mycred-log.php:
|
4257 |
msgid "Current page"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: ../includes/mycred-log.php:
|
4261 |
#, php-format
|
4262 |
msgctxt "paging"
|
4263 |
msgid "%1$s of %2$s"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: ../includes/mycred-log.php:
|
4267 |
msgid "Go to the next page"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: ../includes/mycred-log.php:
|
4271 |
msgid "Go to the last page"
|
4272 |
msgstr ""
|
4273 |
|
@@ -4275,7 +4275,7 @@ msgstr ""
|
|
4275 |
msgid "Show all references"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4279 |
msgid "User ID"
|
4280 |
msgstr ""
|
4281 |
|
@@ -4489,92 +4489,92 @@ msgid ""
|
|
4489 |
"about your setup!"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
-
#: ../includes/mycred-shortcodes.php:
|
4493 |
msgid "Leaderboard is empty."
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: ../includes/mycred-shortcodes.php:
|
4497 |
msgid "Amount missing!"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: ../includes/mycred-shortcodes.php:
|
4501 |
msgid "Log Template Missing!"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: ../includes/mycred-shortcodes.php:
|
4505 |
msgid "Anchor missing URL!"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: ../includes/mycred-shortcodes.php:
|
4509 |
msgid "User ID missing for recipient."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: ../includes/mycred-shortcodes.php:
|
4513 |
msgid "Sent"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: ../includes/mycred-shortcodes.php:
|
4517 |
msgid "Error - Try Again"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: ../includes/mycred-shortcodes.php:
|
4521 |
msgid "A video ID is required for this shortcode"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
-
#: ../includes/mycred-shortcodes.php:
|
4525 |
msgid "Point types not found."
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: ../includes/mycred-shortcodes.php:
|
4529 |
-
#: includes/mycred-shortcodes.php:
|
4530 |
#, php-format
|
4531 |
msgid "You are excluded from using %s."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: ../includes/mycred-shortcodes.php:
|
4535 |
msgid "Your balance is too low to use this feature."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: ../includes/mycred-shortcodes.php:
|
4539 |
#, php-format
|
4540 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#: ../includes/mycred-shortcodes.php:
|
4544 |
#, php-format
|
4545 |
msgid "Your current %s balance"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: ../includes/mycred-shortcodes.php:
|
4549 |
#, php-format
|
4550 |
msgid "Minimum %s"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: ../includes/mycred-shortcodes.php:
|
4554 |
#, php-format
|
4555 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: ../includes/mycred-shortcodes.php:
|
4559 |
msgid "Exchange"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: ../includes/mycred-shortcodes.php:
|
4563 |
#, php-format
|
4564 |
msgid "You must exchange at least %s!"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: ../includes/mycred-shortcodes.php:
|
4568 |
#, php-format
|
4569 |
msgid "Exchange from %s"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: ../includes/mycred-shortcodes.php:
|
4573 |
#, php-format
|
4574 |
msgid "Exchange to %s"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: ../includes/mycred-shortcodes.php:
|
4578 |
#, php-format
|
4579 |
msgid "You have successfully exchanged %s into %s."
|
4580 |
msgstr ""
|
@@ -4593,7 +4593,7 @@ msgstr ""
|
|
4593 |
msgid "My Balance"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4597 |
msgid "%plural% History"
|
4598 |
msgstr ""
|
4599 |
|
@@ -4993,62 +4993,62 @@ msgstr ""
|
|
4993 |
msgid "Current balance"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
-
#: ../modules/mycred-module-buddypress.php:
|
4997 |
msgid "Go"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: ../modules/mycred-module-buddypress.php:
|
5001 |
msgid "Show in Profile"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
-
#: ../modules/mycred-module-buddypress.php:
|
5005 |
#, php-format
|
5006 |
msgid "%singular% Balance"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
-
#: ../modules/mycred-module-buddypress.php:
|
5010 |
#, php-format
|
5011 |
msgid "Members and visitors can other members %_singular% balance."
|
5012 |
msgstr ""
|
5013 |
|
5014 |
-
#: ../modules/mycred-module-buddypress.php:
|
5015 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5016 |
msgstr ""
|
5017 |
|
5018 |
-
#: ../modules/mycred-module-buddypress.php:
|
5019 |
msgid "Members can view each others %_plural% history."
|
5020 |
msgstr ""
|
5021 |
|
5022 |
-
#: ../modules/mycred-module-buddypress.php:
|
5023 |
msgid "Menu Title"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: ../modules/mycred-module-buddypress.php:
|
5027 |
msgid "Title shown to me"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
-
#: ../modules/mycred-module-buddypress.php:
|
5031 |
#, php-format
|
5032 |
msgid "Title shown to others. Use %s to show the first name."
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: ../modules/mycred-module-buddypress.php:
|
5036 |
msgid "Menu Position"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: ../modules/mycred-module-buddypress.php:
|
5040 |
msgid "Current menu positions:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: ../modules/mycred-module-buddypress.php:
|
5044 |
msgid "History URL slug"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: ../modules/mycred-module-buddypress.php:
|
5048 |
msgid "Do not use empty spaces!"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: ../modules/mycred-module-buddypress.php:
|
5052 |
msgid "Number of history entries to show"
|
5053 |
msgstr ""
|
5054 |
|
@@ -5175,8 +5175,8 @@ msgstr ""
|
|
5175 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5176 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5177 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5178 |
-
#:
|
5179 |
-
#: php:
|
5180 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5181 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5182 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5237,8 +5237,8 @@ msgstr ""
|
|
5237 |
msgid "%plural% for viewing %s"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5241 |
-
#: ../modules/mycred-module-hooks.php:
|
5242 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5243 |
msgid "Limit"
|
5244 |
msgstr ""
|
@@ -5320,7 +5320,7 @@ msgstr ""
|
|
5320 |
msgid "Custom tags: %url%, %title% or %id%."
|
5321 |
msgstr ""
|
5322 |
|
5323 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5324 |
msgid "Note!"
|
5325 |
msgstr ""
|
5326 |
|
@@ -5332,158 +5332,166 @@ msgid ""
|
|
5332 |
"by ID."
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5336 |
msgid "Available Shortcode"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
-
#: ../modules/mycred-module-hooks.php:
|
5340 |
msgid "Amount to award for viewing videos."
|
5341 |
msgstr ""
|
5342 |
|
5343 |
-
#: ../modules/mycred-module-hooks.php:
|
5344 |
msgid "Award Logic"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: ../modules/mycred-module-hooks.php:
|
5348 |
#, php-format
|
5349 |
msgid "Select when %_plural% should be awarded or deducted."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: ../modules/mycred-module-hooks.php:
|
5353 |
msgid "Play - As soon as video starts playing."
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: ../modules/mycred-module-hooks.php:
|
5357 |
msgid "Full - First when the entire video has played."
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: ../modules/mycred-module-hooks.php:
|
5361 |
msgid "Interval - For each x number of seconds watched."
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: ../modules/mycred-module-hooks.php:
|
5365 |
msgid "Number of seconds"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: ../modules/mycred-module-hooks.php:
|
5369 |
msgid "Leniency"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: ../modules/mycred-module-hooks.php:
|
5373 |
msgid ""
|
5374 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5375 |
"length."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: ../modules/mycred-module-hooks.php:
|
5379 |
msgid ""
|
5380 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5381 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5382 |
"buffering or play back errors."
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: ../modules/mycred-module-hooks.php:
|
5386 |
msgid "Affiliate Program"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: ../modules/mycred-module-hooks.php:
|
5390 |
msgid "Per Day"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: ../modules/mycred-module-hooks.php:
|
5394 |
msgid "Link"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5398 |
msgid "Referring Visitors"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: ../modules/mycred-module-hooks.php:
|
5402 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5403 |
msgstr ""
|
5404 |
|
5405 |
-
#: ../modules/mycred-module-hooks.php:
|
5406 |
msgid "Referring Signups"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: ../modules/mycred-module-hooks.php:
|
5410 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: ../modules/mycred-module-hooks.php:
|
5414 |
msgid "Registrations are disabled."
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: ../modules/mycred-module-hooks.php:
|
5418 |
msgid "Referral Links"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: ../modules/mycred-module-hooks.php:
|
5422 |
msgid "Assign numeric referral IDs to each user."
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: ../modules/mycred-module-hooks.php:
|
5426 |
msgid "Example"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: ../modules/mycred-module-hooks.php:
|
5430 |
msgid "Assign usernames as IDs for each user."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: ../modules/mycred-module-hooks.php:
|
5434 |
msgid "IP Limit"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: ../modules/mycred-module-hooks.php:
|
5438 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: ../modules/mycred-module-hooks.php:
|
5442 |
msgid "BuddyPress Profile"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: ../modules/mycred-module-hooks.php:
|
5446 |
msgid "Insert Link in users Profile"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: ../modules/mycred-module-hooks.php:
|
5450 |
msgid ""
|
5451 |
"Option to inser the referral link in users profiles. Links will only be "
|
5452 |
"visible to users viewing their own profiles or administrators."
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: ../modules/mycred-module-hooks.php:
|
5456 |
msgid "Leave empty to hide."
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: ../modules/mycred-module-hooks.php:
|
5460 |
msgid "Description"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: ../modules/mycred-module-hooks.php:
|
5464 |
msgid "Optional description to insert under the link."
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: ../modules/mycred-module-hooks.php:
|
5468 |
msgid "Profile Positioning"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: ../modules/mycred-module-hooks.php:
|
5472 |
msgid ""
|
5473 |
"You can move around the referral link on your users profile by changing the "
|
5474 |
"position. Increase to move up, decrease to move down."
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: ../modules/mycred-module-hooks.php:
|
5478 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: ../modules/mycred-module-hooks.php:
|
5482 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5483 |
msgstr ""
|
5484 |
|
5485 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5486 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5487 |
msgid "Access denied for this action"
|
5488 |
msgstr ""
|
5489 |
|
@@ -5499,12 +5507,12 @@ msgstr ""
|
|
5499 |
msgid "Entry Updated"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5503 |
msgid "Entries"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5507 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5508 |
msgid "Export"
|
5509 |
msgstr ""
|
5510 |
|
@@ -5551,196 +5559,196 @@ msgid "My %s History"
|
|
5551 |
msgstr ""
|
5552 |
|
5553 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5554 |
-
#:
|
5555 |
msgid "Missing point type"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-settings.php:
|
5559 |
msgid "Accounts successfully reset"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-settings.php:
|
5563 |
msgid "No users found to export"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-settings.php:
|
5567 |
#, php-format
|
5568 |
msgid "%s Settings"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: ../modules/mycred-module-settings.php:
|
5572 |
msgid "Adjust your core or add-on settings."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: ../modules/mycred-module-settings.php:
|
5576 |
msgid "Core Settings"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: ../modules/mycred-module-settings.php:
|
5580 |
msgid "Name"
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: ../modules/mycred-module-settings.php:
|
5584 |
#, php-format
|
5585 |
msgid "Accessible though the %singular% template tag."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: ../modules/mycred-module-settings.php:
|
5589 |
msgid "Accessible though the %plural% template tag."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: ../modules/mycred-module-settings.php:
|
5593 |
msgid "Tip"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: ../modules/mycred-module-settings.php:
|
5597 |
msgid ""
|
5598 |
"Adding an underscore at the beginning of template tag for names will return "
|
5599 |
"them in lowercase. i.e. %_singular%"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: ../modules/mycred-module-settings.php:
|
5603 |
msgid "Separator"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: ../modules/mycred-module-settings.php:
|
5607 |
msgid "Edit Settings"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: ../modules/mycred-module-settings.php:
|
5611 |
-
#: php:
|
5612 |
msgid "Capability to check for."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: ../modules/mycred-module-settings.php:
|
5616 |
msgid "Edit Users %plural%"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: ../modules/mycred-module-settings.php:
|
5620 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: ../modules/mycred-module-settings.php:
|
5624 |
msgid "Management"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: ../modules/mycred-module-settings.php:
|
5628 |
msgid "The Log"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: ../modules/mycred-module-settings.php:
|
5632 |
msgid "Table Name"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#: ../modules/mycred-module-settings.php:
|
5636 |
msgid "Empty Log"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: ../modules/mycred-module-settings.php:
|
5640 |
msgid "User Meta Key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: ../modules/mycred-module-settings.php:
|
5644 |
msgid "Set all to zero"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: ../modules/mycred-module-settings.php:
|
5648 |
msgid "CSV Export"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: ../modules/mycred-module-settings.php:
|
5652 |
msgid "Default"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: ../modules/mycred-module-settings.php:
|
5656 |
-
#: php:
|
5657 |
msgid "Meta Key"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: ../modules/mycred-module-settings.php:
|
5661 |
msgid "Add New Type"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: ../modules/mycred-module-settings.php:
|
5665 |
msgid "A unique ID for this type."
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: ../modules/mycred-module-settings.php:
|
5669 |
msgid "Menu and page title."
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: ../modules/mycred-module-settings.php:
|
5673 |
msgid "The meta key will define where your users balances are saved."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: ../modules/mycred-module-settings.php:
|
5677 |
msgid "Identify users by"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: ../modules/mycred-module-settings.php:
|
5681 |
msgid "User Email"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: ../modules/mycred-module-settings.php:
|
5685 |
msgid "User Login"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: ../modules/mycred-module-settings.php:
|
5689 |
msgid ""
|
5690 |
"Use ID if you intend to use this export as a backup of your current site "
|
5691 |
"while Email is recommended if you want to export to a different site."
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: ../modules/mycred-module-settings.php:
|
5695 |
msgid "Import Log Entry"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: ../modules/mycred-module-settings.php:
|
5699 |
#, php-format
|
5700 |
msgid ""
|
5701 |
"Optional log entry to use if you intend to import this file in a different "
|
5702 |
"%s installation."
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5706 |
msgid "BadgeOS"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5710 |
msgid ""
|
5711 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5712 |
"overridden for individual achievement type."
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5716 |
#, php-format
|
5717 |
msgid ""
|
5718 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5719 |
"feature."
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5723 |
msgid "%plural% to Award"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5727 |
msgid "Use zero to disable"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5731 |
msgid "Deduction Log Template"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5735 |
#, php-format
|
5736 |
msgid "Default %s for %s"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5740 |
msgid "Use zero to disable users gaining %_plural%"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5744 |
msgid "Default Log template"
|
5745 |
msgstr ""
|
5746 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:55:27 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Swedish\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
"X-Poedit-SearchPath-1: .\n"
|
25 |
"X-Loco-Target-Locale: sv_SE"
|
26 |
|
27 |
+
#: ../mycred.php:425
|
28 |
msgid "Balance"
|
29 |
msgstr "Saldo"
|
30 |
|
31 |
+
#: ../mycred.php:450
|
32 |
msgid "%label% History"
|
33 |
msgstr "%label% Historik"
|
34 |
|
35 |
+
#: ../mycred.php:543
|
36 |
#, php-format
|
37 |
msgid "About %s"
|
38 |
msgstr "Om %s"
|
39 |
|
40 |
+
#: ../mycred.php:552
|
41 |
msgid "Awesome People"
|
42 |
msgstr "Hjälpsamma Användare"
|
43 |
|
44 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
45 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
46 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
47 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
48 |
+
#: includes/mycred-shortcodes.php:631
|
49 |
msgid "Processing..."
|
50 |
msgstr "Arbetar..."
|
51 |
|
52 |
+
#: ../mycred.php:638
|
53 |
msgid ""
|
54 |
"Warning! All entries in your log will be permanently removed! This can not "
|
55 |
"be undone!"
|
56 |
msgstr "Varning! Alla log inlägg kommer att raderas!"
|
57 |
|
58 |
+
#: ../mycred.php:639
|
59 |
msgid ""
|
60 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
61 |
"can not be undone!"
|
62 |
msgstr "All log inlägg för användare som har raderats kommer att raderas!"
|
63 |
|
64 |
+
#: ../mycred.php:640
|
65 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
66 |
msgstr "Varning! Alla användares konton kommer att noll ställas!"
|
67 |
|
68 |
+
#: ../mycred.php:641
|
69 |
msgid "Done!"
|
70 |
msgstr "Klart!"
|
71 |
|
72 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
73 |
msgid "Close"
|
74 |
msgstr "Stäng"
|
75 |
|
76 |
+
#: ../mycred.php:643
|
77 |
msgid "Export users %plural%"
|
78 |
msgstr "Exportera användarens %plural%"
|
79 |
|
80 |
+
#: ../mycred.php:659
|
81 |
msgid "Edit Users Balance"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../mycred.php:677
|
85 |
msgid "Edit Log Entry"
|
86 |
msgstr "Justera log inlägg"
|
87 |
|
88 |
+
#: ../mycred.php:681
|
89 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
90 |
msgstr "Är du säker på att du vill radera detta inlägg?"
|
91 |
|
92 |
+
#: ../mycred.php:682
|
93 |
msgid "Log entry updated"
|
94 |
msgstr "Log inlägg updaterad"
|
95 |
|
96 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
97 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
98 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
99 |
msgid "Setup"
|
100 |
msgstr "Setup"
|
101 |
|
102 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
103 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
104 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
105 |
msgid "Settings"
|
106 |
msgstr "Inställningar"
|
107 |
|
108 |
+
#: ../mycred.php:776
|
109 |
msgid ""
|
110 |
"Make sure to backup your database and files before updating, in case "
|
111 |
"anything goes wrong!"
|
145 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
146 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
147 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
148 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
149 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
150 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
151 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
152 |
msgid "Select"
|
153 |
msgstr "Välj"
|
154 |
|
248 |
msgstr ""
|
249 |
|
250 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
251 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
252 |
msgid "Users"
|
253 |
msgstr "Användare"
|
254 |
|
331 |
|
332 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
333 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
334 |
+
#: modules/mycred-module-buddypress.php:395
|
335 |
msgid "Do not show"
|
336 |
msgstr "Visa inte"
|
337 |
|
338 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
339 |
+
#: buddypress.php:396
|
340 |
msgid "Include in Profile Header"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
344 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
345 |
msgid "Include under the \"Profile\" tab"
|
346 |
msgstr "Inkludera under \"Profil\" tabben"
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
349 |
+
#: buddypress.php:398
|
350 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
351 |
msgstr ""
|
352 |
|
415 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
416 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
417 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
418 |
+
#: modules/mycred-module-settings.php:313
|
419 |
msgid "Access Denied"
|
420 |
msgstr "Nekad Åtkomst"
|
421 |
|
566 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
567 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
568 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
569 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
570 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
571 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
572 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
573 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
664 |
|
665 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
666 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
667 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
668 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
669 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
670 |
+
#: includes/mycred-shortcodes.php:939
|
671 |
msgid "Amount"
|
672 |
msgstr "Summa"
|
673 |
|
674 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
675 |
+
#: modules/mycred-module-hooks.php:2112
|
676 |
msgid "Interval"
|
677 |
msgstr "Tal"
|
678 |
|
723 |
msgstr ""
|
724 |
|
725 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
726 |
+
#: addon-buy-creds.php:1635
|
727 |
msgid "No pending payments found"
|
728 |
msgstr ""
|
729 |
|
732 |
msgstr ""
|
733 |
|
734 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
735 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
736 |
msgid "Transaction ID"
|
737 |
msgstr "Transaktions ID"
|
738 |
|
739 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
740 |
+
#: addon-buy-creds.php:985
|
741 |
msgid "Buyer"
|
742 |
msgstr ""
|
743 |
|
744 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
745 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
746 |
#: gateway.php:563
|
747 |
msgid "Cost"
|
748 |
msgstr "Kostnad"
|
749 |
|
750 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
751 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
752 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
753 |
msgid "Gateway"
|
754 |
msgstr "Operatör"
|
797 |
|
798 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
799 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
800 |
+
#: module-settings.php:470
|
801 |
msgid "Point Types"
|
802 |
msgstr ""
|
803 |
|
850 |
msgstr "Tillåt användare att köpra %_plural% åt post författare."
|
851 |
|
852 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
853 |
+
#: hooks.php:2792
|
854 |
msgid "Available Shortcodes"
|
855 |
msgstr ""
|
856 |
|
877 |
msgstr "%s Betalnings Operatörer"
|
878 |
|
879 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
880 |
+
#: addon-buy-creds.php:993
|
881 |
msgid "buyCRED Settings"
|
882 |
msgstr "buyCRED Inställningar"
|
883 |
|
902 |
msgstr "Aktivera för test köp."
|
903 |
|
904 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
905 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
906 |
msgid "Update Settings"
|
907 |
msgstr "Spara Ändringar"
|
908 |
|
910 |
msgid "More Gateways"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
914 |
#: 634
|
915 |
msgid "Date"
|
916 |
msgstr "Datum"
|
917 |
|
918 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
919 |
msgid "Payed"
|
920 |
msgstr "Betalt"
|
921 |
|
922 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
923 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
924 |
msgstr "<strong>buy</strong>CRED Köp Log"
|
925 |
|
926 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
927 |
#: booking/mycred-eventespresso3.php:367
|
928 |
msgid "Gateway Settings"
|
929 |
msgstr "Operatör Inställningar"
|
930 |
|
931 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
932 |
+
#: content/myCRED-addon-sell-content.php:1191
|
933 |
msgid "No purchases found"
|
934 |
msgstr "Inga Köp"
|
935 |
|
936 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
937 |
+
#: addon-buy-creds.php:1355
|
938 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
939 |
msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
|
940 |
|
941 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
942 |
+
#: addon-buy-creds.php:1374
|
943 |
msgid "No gateways installed."
|
944 |
msgstr "Inga Operatörer är installerade."
|
945 |
|
946 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
947 |
+
#: addon-buy-creds.php:1375
|
948 |
msgid "Gateway does not exist."
|
949 |
msgstr "Kunde inte finna operatör."
|
950 |
|
951 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
952 |
msgid "Yourself"
|
953 |
msgstr "Till dig själv"
|
954 |
|
955 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
956 |
msgid "No active gateways found."
|
957 |
msgstr "Kunde inte hitta några aktiverade operatörer."
|
958 |
|
959 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
960 |
msgid "The selected gateway is not active."
|
961 |
msgstr "Operatören du valde är inte aktiverad."
|
962 |
|
963 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
964 |
#, php-format
|
965 |
msgid "Buy with %gateway%"
|
966 |
msgstr "Köp genom %gateway%"
|
967 |
|
968 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
969 |
#: content/myCRED-addon-sell-content.php:44
|
970 |
msgid "Buy Now"
|
971 |
msgstr "Köp"
|
972 |
|
973 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
974 |
msgid "No users found"
|
975 |
msgstr "Kunde inte hitta någon"
|
976 |
|
977 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
978 |
msgid "To"
|
979 |
msgstr "Till"
|
980 |
|
981 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
982 |
msgid "Select Amount"
|
983 |
msgstr "Välj summa"
|
984 |
|
985 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
986 |
msgid "min."
|
987 |
msgstr "min."
|
988 |
|
989 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
990 |
msgid "Select Gateway"
|
991 |
msgstr "Välj Operatör"
|
992 |
|
993 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
994 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
995 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
996 |
#: php:35
|
997 |
msgid "Pay Now"
|
998 |
msgstr "Betala"
|
999 |
|
1000 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
1001 |
+
#: php:516
|
1002 |
msgid "Cancel"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1006 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1007 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1008 |
msgid "Actions"
|
1009 |
msgstr "Åtgärder"
|
1010 |
|
1146 |
msgid "The following information will be sent to the gateway"
|
1147 |
msgstr "Följande information kommer att skickas till betalnings operatören"
|
1148 |
|
1149 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1150 |
msgid "Outside US"
|
1151 |
msgstr "Utanför US"
|
1152 |
|
1153 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1154 |
msgid "January"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1158 |
msgid "February"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1162 |
msgid "March"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1166 |
msgid "April"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1170 |
msgid "May"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1174 |
msgid "June"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1178 |
msgid "July"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1182 |
msgid "August"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1186 |
msgid "September"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1190 |
msgid "October"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1194 |
msgid "November"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1198 |
msgid "December"
|
1199 |
msgstr ""
|
1200 |
|
1439 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1440 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1441 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1442 |
+
#: modules/mycred-module-hooks.php:2757
|
1443 |
msgid "Title"
|
1444 |
msgstr "Titel"
|
1445 |
|
1639 |
msgstr "oanvänd"
|
1640 |
|
1641 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1642 |
+
#: php:2202
|
1643 |
msgid "Total"
|
1644 |
msgstr "Total"
|
1645 |
|
1809 |
msgstr "Validera"
|
1810 |
|
1811 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1812 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1813 |
msgid "Email Notice"
|
1814 |
msgstr "E-postmeddelande"
|
1815 |
|
2000 |
"åsidosättas när du redigerar postmeddelanden."
|
2001 |
|
2002 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
2003 |
+
#: notices/myCRED-addon-email-notices.php:787
|
2004 |
msgid "Email Settings"
|
2005 |
msgstr "E-mail inställningar"
|
2006 |
|
2007 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
2008 |
+
#: notices/myCRED-addon-email-notices.php:910
|
2009 |
msgid "Senders Name:"
|
2010 |
msgstr "Avsändarens Namn:"
|
2011 |
|
2012 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
2013 |
+
#: notices/myCRED-addon-email-notices.php:912
|
2014 |
msgid "Senders Email:"
|
2015 |
msgstr "Avsändarens e-postadress"
|
2016 |
|
2034 |
msgid "Ignored if HTML is not allowed in emails."
|
2035 |
msgstr "Ignoreras om e-post inte använder HTML formatering."
|
2036 |
|
2037 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2038 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2039 |
msgid "Email Subject"
|
2040 |
msgstr "Ämne"
|
2041 |
|
2042 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2043 |
msgid "Status"
|
2044 |
msgstr "Status"
|
2045 |
|
2046 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2047 |
msgid "Not Active"
|
2048 |
msgstr "Inte Aktiv"
|
2049 |
|
2050 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2051 |
#, php-format
|
2052 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2053 |
msgstr "Planerad:<br /><strong>%1%s</strong>"
|
2054 |
|
2055 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2056 |
msgid "Active"
|
2057 |
msgstr "Aktiv"
|
2058 |
|
2059 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2060 |
#, php-format
|
2061 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2062 |
msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
|
2063 |
|
2064 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2065 |
msgid "Email is sent when"
|
2066 |
msgstr "E-post skickas när"
|
2067 |
|
2068 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2069 |
msgid "Missing instance for this notice!"
|
2070 |
msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
|
2071 |
|
2072 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2073 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2074 |
+
#: addon-email-notices.php:775
|
2075 |
msgid "Sent To"
|
2076 |
msgstr "Skicka till"
|
2077 |
|
2078 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2079 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2080 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2081 |
msgid "User"
|
2082 |
msgstr "Användare"
|
2083 |
|
2084 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2085 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2086 |
msgid "Administrator"
|
2087 |
msgstr "Administratörer"
|
2088 |
|
2089 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2090 |
msgid "Both Administrator and User"
|
2091 |
msgstr "Både Administratörer och Användare"
|
2092 |
|
2093 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2094 |
msgid "Available Template Tags"
|
2095 |
msgstr "Valbara Template Tags"
|
2096 |
|
2097 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2098 |
msgid "Email Header"
|
2099 |
msgstr "E-post header"
|
2100 |
|
2101 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2102 |
msgid "Send this email notice when..."
|
2103 |
msgstr "Skicka e-post när ..."
|
2104 |
|
2105 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2106 |
msgid "Recipient:"
|
2107 |
msgstr "Mottagare"
|
2108 |
|
2109 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2110 |
msgid "Both"
|
2111 |
msgstr "Båda"
|
2112 |
|
2113 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2114 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2115 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2116 |
+
#: module-settings.php:527
|
2117 |
msgid "Label"
|
2118 |
msgstr "Titel"
|
2119 |
|
2120 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2121 |
msgid "Reply-To Email:"
|
2122 |
msgstr "Svars e-postadress:"
|
2123 |
|
2124 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2125 |
msgid "Save"
|
2126 |
msgstr "Spara"
|
2127 |
|
2128 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2129 |
msgid "CSS Styling"
|
2130 |
msgstr "CSS design"
|
2131 |
|
2132 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2133 |
msgid "Site Related"
|
2134 |
msgstr "Hemsida relaterat"
|
2135 |
|
2136 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2137 |
msgid "Your websites title"
|
2138 |
msgstr "Din hemsidas titel"
|
2139 |
|
2140 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2141 |
msgid "Your websites address"
|
2142 |
msgstr "Din hemsidas URL adress"
|
2143 |
|
2144 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2145 |
msgid "Your websites tagline (description)"
|
2146 |
msgstr "Din hemsidas beskrivning"
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2149 |
msgid "Your websites admin email"
|
2150 |
msgstr "Din hemsidas administratör e-postadress"
|
2151 |
|
2152 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2153 |
msgid "Total number of blog members"
|
2154 |
msgstr "Total antal användare på hemsidan"
|
2155 |
|
2156 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2157 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2158 |
+
#: addon-email-notices.php:1040
|
2159 |
msgid "Email Notice Updated."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2163 |
msgid "Email Notice Activated"
|
2164 |
msgstr "E-post meddelande aktiverad"
|
2165 |
|
2166 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2167 |
msgid "Email Notice Saved"
|
2168 |
msgstr "E-post meddelande inställningar updaterade"
|
2169 |
|
2170 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2171 |
msgid ""
|
2172 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2173 |
"are not yet ready to use this email notice!"
|
2175 |
"När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
|
2176 |
"samma! Spara som kladd om du inte vill använda meddelandet just nu."
|
2177 |
|
2178 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2179 |
#, php-format
|
2180 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2181 |
msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
|
2182 |
|
2183 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2184 |
msgid "This email notice is active."
|
2185 |
msgstr "Detta e-post meddelande är inte aktivt."
|
2186 |
|
2187 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2188 |
msgid "Settings saved."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2192 |
msgid "Unsubscribe"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2196 |
msgid "There are no email notifications yet."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2200 |
msgid "Save Changes"
|
2201 |
msgstr ""
|
2202 |
|
2243 |
|
2244 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2245 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2246 |
+
#: 52 ../includes/mycred-network.php:53
|
2247 |
msgid "myCRED"
|
2248 |
msgstr "myCRED"
|
2249 |
|
2322 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2323 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2324 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2325 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2326 |
msgid "Exchange Rate"
|
2327 |
msgstr "Växlings kurs"
|
2328 |
|
2626 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2627 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2628 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2629 |
+
#: sell-content.php:669
|
2630 |
msgid "Button Label"
|
2631 |
msgstr "Knapp Text"
|
2632 |
|
2640 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2641 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2642 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2643 |
+
#: sell-content.php:665
|
2644 |
msgid "Price"
|
2645 |
msgstr "Pris"
|
2646 |
|
2745 |
msgstr "Avvisa"
|
2746 |
|
2747 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2748 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2749 |
+
#: modules/mycred-module-settings.php:508
|
2750 |
msgid "Delete"
|
2751 |
msgstr "Radera"
|
2752 |
|
2868 |
msgstr "Använd den inkluderade CSS stilen."
|
2869 |
|
2870 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2871 |
+
#: module-buddypress.php:439
|
2872 |
msgid "Template"
|
2873 |
msgstr "Mall"
|
2874 |
|
3140 |
msgstr "Välg vilken visningsordning du vill använda"
|
3141 |
|
3142 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3143 |
+
#: php:402
|
3144 |
msgid "Do not show."
|
3145 |
msgstr "Visa inte"
|
3146 |
|
3190 |
msgstr "Inga användare hittades med denna rank"
|
3191 |
|
3192 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3193 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3194 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3195 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3196 |
msgid "error"
|
3197 |
msgstr "error"
|
3198 |
|
3315 |
msgid "%s Sell This"
|
3316 |
msgstr "%s Sälj Detta"
|
3317 |
|
3318 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3319 |
#, php-format
|
3320 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3321 |
msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
|
3322 |
|
3323 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3324 |
msgid "Setup add-on"
|
3325 |
msgstr "Installera add-on"
|
3326 |
|
3327 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3328 |
msgid "Lets do it"
|
3329 |
msgstr "Kör!"
|
3330 |
|
3331 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3332 |
#, php-format
|
3333 |
msgid "Enable sale of this %s"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3337 |
msgid "Purchase expires after"
|
3338 |
msgstr "Köp löper ut efter"
|
3339 |
|
3340 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3341 |
msgid "Thank you for your purchase!"
|
3342 |
msgstr "Tack för ditt köp!"
|
3343 |
|
3344 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3345 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3346 |
msgid "The following content is set for sale:"
|
3347 |
msgstr "Följande innehåll är till salu:"
|
3348 |
|
3349 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3350 |
msgid "Purchased"
|
3351 |
msgstr "Köp historik"
|
3352 |
|
3359 |
msgstr ""
|
3360 |
|
3361 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3362 |
+
#: php:2367
|
3363 |
msgid "Transfer"
|
3364 |
msgstr ""
|
3365 |
|
3394 |
msgstr ""
|
3395 |
|
3396 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3397 |
+
#: php:1041
|
3398 |
msgid "Insufficient Funds. Please try a lower amount."
|
3399 |
msgstr ""
|
3400 |
|
3761 |
msgid "My Entire Log"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: ../includes/mycred-functions.php:1854
|
3765 |
msgid "ref empty"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: ../includes/mycred-functions.php:1862
|
3769 |
msgid "incorrect user id format"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: ../includes/mycred-functions.php:1875
|
3773 |
msgid "incorrect unix timestamp (from):"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: ../includes/mycred-functions.php:1884
|
3777 |
msgid "incorrect unix timestamp (to):"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: ../includes/mycred-functions.php:2254
|
3781 |
msgid "Website Registration"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: ../includes/mycred-functions.php:2255
|
3785 |
msgid "Website Visit"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: ../includes/mycred-functions.php:2256
|
3789 |
msgid "Viewing Content (Member)"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: ../includes/mycred-functions.php:2257
|
3793 |
msgid "Viewing Content (Author)"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: ../includes/mycred-functions.php:2258
|
3797 |
msgid "Logging in"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: ../includes/mycred-functions.php:2259
|
3801 |
msgid "Publishing Content"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3805 |
msgid "Approved Comment"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: ../includes/mycred-functions.php:2261
|
3809 |
msgid "Unapproved Comment"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: ../includes/mycred-functions.php:2262
|
3813 |
msgid "SPAM Comment"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: ../includes/mycred-functions.php:2263
|
3817 |
msgid "Deleted Comment"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: ../includes/mycred-functions.php:2264
|
3821 |
msgid "Link Click"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: ../includes/mycred-functions.php:2265
|
3825 |
msgid "Watching Video"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: ../includes/mycred-functions.php:2266
|
3829 |
msgid "Visitor Referral"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: ../includes/mycred-functions.php:2267
|
3833 |
msgid "Signup Referral"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: ../includes/mycred-functions.php:2271
|
3837 |
msgid "New Profile Update"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: ../includes/mycred-functions.php:2272
|
3841 |
msgid "Avatar Upload"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: ../includes/mycred-functions.php:2273
|
3845 |
msgid "New Friendship"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: ../includes/mycred-functions.php:2274
|
3849 |
msgid "Ended Friendship"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: ../includes/mycred-functions.php:2275
|
3853 |
msgid "New Profile Comment"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: ../includes/mycred-functions.php:2276
|
3857 |
msgid "Profile Comment Deletion"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: ../includes/mycred-functions.php:2277
|
3861 |
msgid "New Message"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: ../includes/mycred-functions.php:2278
|
3865 |
msgid "Sending Gift"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: ../includes/mycred-functions.php:2279
|
3869 |
msgid "New Group"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: ../includes/mycred-functions.php:2280
|
3873 |
msgid "Deleted Group"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: ../includes/mycred-functions.php:2281
|
3877 |
msgid "New Group Forum Topic"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: ../includes/mycred-functions.php:2282
|
3881 |
msgid "Edit Group Forum Topic"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: ../includes/mycred-functions.php:2283
|
3885 |
msgid "New Group Forum Post"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: ../includes/mycred-functions.php:2284
|
3889 |
msgid "Edit Group Forum Post"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: ../includes/mycred-functions.php:2285
|
3893 |
msgid "Joining Group"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: ../includes/mycred-functions.php:2286
|
3897 |
msgid "Leaving Group"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: ../includes/mycred-functions.php:2287
|
3901 |
msgid "New Group Avatar"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: ../includes/mycred-functions.php:2288
|
3905 |
msgid "New Group Comment"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3909 |
#: php:166
|
3910 |
msgid "Photo Upload"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3914 |
#: php:176
|
3915 |
msgid "Video Upload"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
3919 |
#: php:186
|
3920 |
msgid "Music Upload"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: ../includes/mycred-functions.php:2298
|
3924 |
msgid "New Link"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: ../includes/mycred-functions.php:2299
|
3928 |
msgid "Link Voting"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: ../includes/mycred-functions.php:2300
|
3932 |
msgid "Link Update"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: ../includes/mycred-functions.php:2304
|
3936 |
msgid "New Forum (bbPress)"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: ../includes/mycred-functions.php:2305
|
3940 |
msgid "New Forum Topic (bbPress)"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: ../includes/mycred-functions.php:2306
|
3944 |
msgid "Favorited Topic (bbPress)"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: ../includes/mycred-functions.php:2307
|
3948 |
msgid "New Topic Reply (bbPress)"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: ../includes/mycred-functions.php:2311
|
3952 |
msgid "Form Submission (Contact Form 7)"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: ../includes/mycred-functions.php:2314
|
3956 |
msgid "Form Submission (Gravity Form)"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: ../includes/mycred-functions.php:2317
|
3960 |
msgid "New Forum Topic (SimplePress)"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: ../includes/mycred-functions.php:2318
|
3964 |
msgid "New Forum Post (SimplePress)"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: ../includes/mycred-functions.php:2322
|
3968 |
msgid "Poll Voting"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: ../includes/mycred-functions.php:2325
|
3972 |
msgid "Sending an Invite"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: ../includes/mycred-functions.php:2326
|
3976 |
msgid "Accepting an Invite"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: ../includes/mycred-functions.php:2332
|
3980 |
msgid "Banking Payout"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: ../includes/mycred-functions.php:2335
|
3984 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: ../includes/mycred-functions.php:2336
|
3988 |
msgid "buyCRED Purchase (Skrill)"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: ../includes/mycred-functions.php:2337
|
3992 |
msgid "buyCRED Purchase (Zombaio)"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: ../includes/mycred-functions.php:2338
|
3996 |
msgid "buyCRED Purchase (NETBilling)"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: ../includes/mycred-functions.php:2339
|
4000 |
msgid "buyCRED Purchase (BitPay)"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: ../includes/mycred-functions.php:2344
|
4004 |
msgid "Coupon Purchase"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: ../includes/mycred-functions.php:2347
|
4008 |
msgid "Store Purchase (WooCommerce)"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: ../includes/mycred-functions.php:2348
|
4012 |
msgid "Store Purchase (MarketPress)"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: ../includes/mycred-functions.php:2349
|
4016 |
msgid "Store Purchase (WP E-Commerce)"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: ../includes/mycred-functions.php:2354
|
4020 |
msgid "Event Payment (Event Espresso)"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: ../includes/mycred-functions.php:2355
|
4024 |
msgid "Event Sale (Event Espresso)"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: ../includes/mycred-functions.php:2359
|
4028 |
msgid "Event Payment (Events Manager)"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: ../includes/mycred-functions.php:2360
|
4032 |
msgid "Event Sale (Events Manager)"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: ../includes/mycred-functions.php:2364
|
4036 |
msgid "Content Purchase / Sale"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: ../includes/mycred-functions.php:2371
|
4040 |
msgid "Manual Adjustment by Admin"
|
4041 |
msgstr ""
|
4042 |
|
4084 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: ../includes/mycred-install.php:54
|
4088 |
msgid ""
|
4089 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4090 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4091 |
"for you!"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: ../includes/mycred-install.php:59
|
4095 |
msgid ""
|
4096 |
"Sorry but your WordPress installation does not reach the minimum "
|
4097 |
"requirements for running myCRED. The following errors were given:"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: ../includes/mycred-install.php:248
|
4101 |
msgid "myCRED needs your attention."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: ../includes/mycred-install.php:248
|
4105 |
msgid "Run Setup"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4109 |
msgid "myCRED Setup"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: ../includes/mycred-install.php:390
|
4113 |
#, php-format
|
4114 |
msgid "%s Setup"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: ../includes/mycred-install.php:392
|
4118 |
msgid "Step"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: ../includes/mycred-install.php:416
|
4122 |
msgid ""
|
4123 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4124 |
"points format, layout and security settings."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: ../includes/mycred-install.php:417
|
4128 |
msgid "Begin Setup"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: ../includes/mycred-install.php:472
|
4132 |
msgid "Select the format you want to use for your points."
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4136 |
msgid "Format"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: ../includes/mycred-install.php:476
|
4140 |
msgid "Separators"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: ../includes/mycred-install.php:486
|
4144 |
msgid "Decimals"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: ../includes/mycred-install.php:488
|
4148 |
msgid "Use zero for no decimals."
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4152 |
msgid "Presentation"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4156 |
msgid "Name (Singular)"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4160 |
msgid "Name (Plural)"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4164 |
msgid "Prefix"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4168 |
msgid "Suffix"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: ../includes/mycred-install.php:516
|
4172 |
msgid "Cancel Setup"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4176 |
msgid "Next"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4180 |
msgid "Security"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: ../includes/mycred-install.php:551
|
4184 |
msgid "Edit Settings Capability"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
+
#: ../includes/mycred-install.php:555
|
4188 |
msgid "Edit Users %plural% Capability"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4192 |
msgid "Maximum %plural% payouts"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4196 |
msgid ""
|
4197 |
"As an added security, you can set the maximum amount a user can gain or "
|
4198 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4200 |
"disable."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4204 |
msgid "Excludes"
|
4205 |
msgstr "Exkludera "
|
4206 |
|
4207 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4208 |
msgid "Exclude those who can \"Edit Settings\"."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4212 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4216 |
msgid "Exclude the following user IDs:"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4220 |
msgid "User Deletions"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4224 |
msgid "Delete log entries when user is deleted."
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: ../includes/mycred-install.php:604
|
4228 |
msgid "Ready"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: ../includes/mycred-install.php:605
|
4232 |
msgid "Almost done! Click the button below to finish this setup."
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: ../includes/mycred-install.php:606
|
4236 |
msgid "Install & Run"
|
4237 |
msgstr ""
|
4238 |
|
4245 |
msgid "entry"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: ../includes/mycred-log.php:412
|
4249 |
msgid "Go to the first page"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: ../includes/mycred-log.php:419
|
4253 |
msgid "Go to the previous page"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: ../includes/mycred-log.php:428
|
4257 |
msgid "Current page"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: ../includes/mycred-log.php:434
|
4261 |
#, php-format
|
4262 |
msgctxt "paging"
|
4263 |
msgid "%1$s of %2$s"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: ../includes/mycred-log.php:438
|
4267 |
msgid "Go to the next page"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: ../includes/mycred-log.php:445
|
4271 |
msgid "Go to the last page"
|
4272 |
msgstr ""
|
4273 |
|
4275 |
msgid "Show all references"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4279 |
msgid "User ID"
|
4280 |
msgstr ""
|
4281 |
|
4489 |
"about your setup!"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
+
#: ../includes/mycred-shortcodes.php:178
|
4493 |
msgid "Leaderboard is empty."
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4497 |
msgid "Amount missing!"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4501 |
msgid "Log Template Missing!"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: ../includes/mycred-shortcodes.php:515
|
4505 |
msgid "Anchor missing URL!"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: ../includes/mycred-shortcodes.php:577
|
4509 |
msgid "User ID missing for recipient."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: ../includes/mycred-shortcodes.php:632
|
4513 |
msgid "Sent"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
+
#: ../includes/mycred-shortcodes.php:633
|
4517 |
msgid "Error - Try Again"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: ../includes/mycred-shortcodes.php:742
|
4521 |
msgid "A video ID is required for this shortcode"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4525 |
msgid "Point types not found."
|
4526 |
msgstr ""
|
4527 |
|
4528 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4529 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4530 |
#, php-format
|
4531 |
msgid "You are excluded from using %s."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4535 |
msgid "Your balance is too low to use this feature."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: ../includes/mycred-shortcodes.php:924
|
4539 |
#, php-format
|
4540 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: ../includes/mycred-shortcodes.php:933
|
4544 |
#, php-format
|
4545 |
msgid "Your current %s balance"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: ../includes/mycred-shortcodes.php:941
|
4549 |
#, php-format
|
4550 |
msgid "Minimum %s"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: ../includes/mycred-shortcodes.php:945
|
4554 |
#, php-format
|
4555 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: ../includes/mycred-shortcodes.php:951
|
4559 |
msgid "Exchange"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4563 |
#, php-format
|
4564 |
msgid "You must exchange at least %s!"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4568 |
#, php-format
|
4569 |
msgid "Exchange from %s"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4573 |
#, php-format
|
4574 |
msgid "Exchange to %s"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4578 |
#, php-format
|
4579 |
msgid "You have successfully exchanged %s into %s."
|
4580 |
msgstr ""
|
4593 |
msgid "My Balance"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4597 |
msgid "%plural% History"
|
4598 |
msgstr ""
|
4599 |
|
4993 |
msgid "Current balance"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
+
#: ../modules/mycred-module-buddypress.php:347
|
4997 |
msgid "Go"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: ../modules/mycred-module-buddypress.php:403
|
5001 |
msgid "Show in Profile"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: ../modules/mycred-module-buddypress.php:418
|
5005 |
#, php-format
|
5006 |
msgid "%singular% Balance"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: ../modules/mycred-module-buddypress.php:434
|
5010 |
#, php-format
|
5011 |
msgid "Members and visitors can other members %_singular% balance."
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: ../modules/mycred-module-buddypress.php:442
|
5015 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: ../modules/mycred-module-buddypress.php:462
|
5019 |
msgid "Members can view each others %_plural% history."
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: ../modules/mycred-module-buddypress.php:467
|
5023 |
msgid "Menu Title"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
+
#: ../modules/mycred-module-buddypress.php:469
|
5027 |
msgid "Title shown to me"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: ../modules/mycred-module-buddypress.php:474
|
5031 |
#, php-format
|
5032 |
msgid "Title shown to others. Use %s to show the first name."
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: ../modules/mycred-module-buddypress.php:479
|
5036 |
msgid "Menu Position"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: ../modules/mycred-module-buddypress.php:481
|
5040 |
msgid "Current menu positions:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: ../modules/mycred-module-buddypress.php:486
|
5044 |
msgid "History URL slug"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: ../modules/mycred-module-buddypress.php:488
|
5048 |
msgid "Do not use empty spaces!"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: ../modules/mycred-module-buddypress.php:493
|
5052 |
msgid "Number of history entries to show"
|
5053 |
msgstr ""
|
5054 |
|
5175 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5176 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5177 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5178 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5179 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5180 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5181 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5182 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5237 |
msgid "%plural% for viewing %s"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5241 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5242 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5243 |
msgid "Limit"
|
5244 |
msgstr ""
|
5320 |
msgid "Custom tags: %url%, %title% or %id%."
|
5321 |
msgstr ""
|
5322 |
|
5323 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5324 |
msgid "Note!"
|
5325 |
msgstr ""
|
5326 |
|
5332 |
"by ID."
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5336 |
msgid "Available Shortcode"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5340 |
msgid "Amount to award for viewing videos."
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5344 |
msgid "Award Logic"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5348 |
#, php-format
|
5349 |
msgid "Select when %_plural% should be awarded or deducted."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5353 |
msgid "Play - As soon as video starts playing."
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5357 |
msgid "Full - First when the entire video has played."
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5361 |
msgid "Interval - For each x number of seconds watched."
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5365 |
msgid "Number of seconds"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5369 |
msgid "Leniency"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5373 |
msgid ""
|
5374 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5375 |
"length."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5379 |
msgid ""
|
5380 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5381 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5382 |
"buffering or play back errors."
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5386 |
msgid "Affiliate Program"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5390 |
msgid "Per Day"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5394 |
msgid "Link"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5398 |
+
msgid "Visitors Referred"
|
5399 |
+
msgstr ""
|
5400 |
+
|
5401 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5402 |
+
msgid "Signups Referred"
|
5403 |
+
msgstr ""
|
5404 |
+
|
5405 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5406 |
msgid "Referring Visitors"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5410 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5414 |
msgid "Referring Signups"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5418 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5419 |
msgstr ""
|
5420 |
|
5421 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5422 |
msgid "Registrations are disabled."
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5426 |
msgid "Referral Links"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5430 |
msgid "Assign numeric referral IDs to each user."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5434 |
msgid "Example"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5438 |
msgid "Assign usernames as IDs for each user."
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5442 |
msgid "IP Limit"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5446 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5450 |
msgid "BuddyPress Profile"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5454 |
msgid "Insert Link in users Profile"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5458 |
msgid ""
|
5459 |
"Option to inser the referral link in users profiles. Links will only be "
|
5460 |
"visible to users viewing their own profiles or administrators."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5464 |
msgid "Leave empty to hide."
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5468 |
msgid "Description"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5472 |
msgid "Optional description to insert under the link."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5476 |
msgid "Profile Positioning"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5480 |
msgid ""
|
5481 |
"You can move around the referral link on your users profile by changing the "
|
5482 |
"position. Increase to move up, decrease to move down."
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5486 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5490 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5491 |
msgstr ""
|
5492 |
|
5493 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5494 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5495 |
msgid "Access denied for this action"
|
5496 |
msgstr ""
|
5497 |
|
5507 |
msgid "Entry Updated"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5511 |
msgid "Entries"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5515 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5516 |
msgid "Export"
|
5517 |
msgstr ""
|
5518 |
|
5559 |
msgstr ""
|
5560 |
|
5561 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5562 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5563 |
msgid "Missing point type"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: ../modules/mycred-module-settings.php:129
|
5567 |
msgid "Accounts successfully reset"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: ../modules/mycred-module-settings.php:175
|
5571 |
msgid "No users found to export"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: ../modules/mycred-module-settings.php:331
|
5575 |
#, php-format
|
5576 |
msgid "%s Settings"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: ../modules/mycred-module-settings.php:334
|
5580 |
msgid "Adjust your core or add-on settings."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: ../modules/mycred-module-settings.php:339
|
5584 |
msgid "Core Settings"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: ../modules/mycred-module-settings.php:341
|
5588 |
msgid "Name"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: ../modules/mycred-module-settings.php:346
|
5592 |
#, php-format
|
5593 |
msgid "Accessible though the %singular% template tag."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: ../modules/mycred-module-settings.php:351
|
5597 |
msgid "Accessible though the %plural% template tag."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: ../modules/mycred-module-settings.php:354
|
5601 |
msgid "Tip"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: ../modules/mycred-module-settings.php:354
|
5605 |
msgid ""
|
5606 |
"Adding an underscore at the beginning of template tag for names will return "
|
5607 |
"them in lowercase. i.e. %_singular%"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: ../modules/mycred-module-settings.php:372
|
5611 |
msgid "Separator"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: ../modules/mycred-module-settings.php:379
|
5615 |
msgid "Edit Settings"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5619 |
+
#: php:386
|
5620 |
msgid "Capability to check for."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: ../modules/mycred-module-settings.php:384
|
5624 |
msgid "Edit Users %plural%"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: ../modules/mycred-module-settings.php:408
|
5628 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: ../modules/mycred-module-settings.php:428
|
5632 |
msgid "Management"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: ../modules/mycred-module-settings.php:430
|
5636 |
msgid "The Log"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: ../modules/mycred-module-settings.php:433
|
5640 |
msgid "Table Name"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: ../modules/mycred-module-settings.php:442
|
5644 |
msgid "Empty Log"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: ../modules/mycred-module-settings.php:448
|
5648 |
msgid "User Meta Key"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: ../modules/mycred-module-settings.php:457
|
5652 |
msgid "Set all to zero"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: ../modules/mycred-module-settings.php:457
|
5656 |
msgid "CSV Export"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: ../modules/mycred-module-settings.php:478
|
5660 |
msgid "Default"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5664 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5665 |
msgid "Meta Key"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: ../modules/mycred-module-settings.php:519
|
5669 |
msgid "Add New Type"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: ../modules/mycred-module-settings.php:524
|
5673 |
msgid "A unique ID for this type."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: ../modules/mycred-module-settings.php:529
|
5677 |
msgid "Menu and page title."
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: ../modules/mycred-module-settings.php:532
|
5681 |
msgid "The meta key will define where your users balances are saved."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: ../modules/mycred-module-settings.php:553
|
5685 |
msgid "Identify users by"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: ../modules/mycred-module-settings.php:559
|
5689 |
msgid "User Email"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: ../modules/mycred-module-settings.php:560
|
5693 |
msgid "User Login"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: ../modules/mycred-module-settings.php:567
|
5697 |
msgid ""
|
5698 |
"Use ID if you intend to use this export as a backup of your current site "
|
5699 |
"while Email is recommended if you want to export to a different site."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: ../modules/mycred-module-settings.php:570
|
5703 |
msgid "Import Log Entry"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: ../modules/mycred-module-settings.php:572
|
5707 |
#, php-format
|
5708 |
msgid ""
|
5709 |
"Optional log entry to use if you intend to import this file in a different "
|
5710 |
"%s installation."
|
5711 |
msgstr ""
|
5712 |
|
5713 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5714 |
msgid "BadgeOS"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5718 |
msgid ""
|
5719 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5720 |
"overridden for individual achievement type."
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5724 |
#, php-format
|
5725 |
msgid ""
|
5726 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5727 |
"feature."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5731 |
msgid "%plural% to Award"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5735 |
msgid "Use zero to disable"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5739 |
msgid "Deduction Log Template"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5743 |
#, php-format
|
5744 |
msgid "Default %s for %s"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5748 |
msgid "Use zero to disable users gaining %_plural%"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5752 |
msgid "Default Log template"
|
5753 |
msgstr ""
|
5754 |
|
lang/mycred-zh_CN.mo
CHANGED
Binary file
|
lang/mycred-zh_CN.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Chinese\n"
|
10 |
"Plural-Forms: nplurals=1; plural=0\n"
|
@@ -22,88 +22,88 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Loco-Target-Locale: zh_CN"
|
24 |
|
25 |
-
#: ../mycred.php:
|
26 |
msgid "Balance"
|
27 |
msgstr "余额"
|
28 |
|
29 |
-
#: ../mycred.php:
|
30 |
msgid "%label% History"
|
31 |
msgstr "%label% 历史"
|
32 |
|
33 |
-
#: ../mycred.php:
|
34 |
#, php-format
|
35 |
msgid "About %s"
|
36 |
msgstr "关于 %s"
|
37 |
|
38 |
-
#: ../mycred.php:
|
39 |
msgid "Awesome People"
|
40 |
msgstr "真棒的人"
|
41 |
|
42 |
-
#: ../mycred.php:
|
43 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
44 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
45 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
46 |
-
#: includes/mycred-shortcodes.php:
|
47 |
msgid "Processing..."
|
48 |
msgstr "处理中..."
|
49 |
|
50 |
-
#: ../mycred.php:
|
51 |
msgid ""
|
52 |
"Warning! All entries in your log will be permanently removed! This can not "
|
53 |
"be undone!"
|
54 |
msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
|
55 |
|
56 |
-
#: ../mycred.php:
|
57 |
msgid ""
|
58 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
59 |
"can not be undone!"
|
60 |
msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
|
61 |
|
62 |
-
#: ../mycred.php:
|
63 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
64 |
msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
|
65 |
|
66 |
-
#: ../mycred.php:
|
67 |
msgid "Done!"
|
68 |
msgstr "完成了!"
|
69 |
|
70 |
-
#: ../mycred.php:
|
71 |
msgid "Close"
|
72 |
msgstr "关闭"
|
73 |
|
74 |
-
#: ../mycred.php:
|
75 |
msgid "Export users %plural%"
|
76 |
msgstr "导出用户 %plural%"
|
77 |
|
78 |
-
#: ../mycred.php:
|
79 |
msgid "Edit Users Balance"
|
80 |
msgstr "编辑用户余额"
|
81 |
|
82 |
-
#: ../mycred.php:
|
83 |
msgid "Edit Log Entry"
|
84 |
msgstr "编辑日志条目"
|
85 |
|
86 |
-
#: ../mycred.php:
|
87 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
88 |
msgstr "您确定要删除此日志条目?此操作无法撤消!"
|
89 |
|
90 |
-
#: ../mycred.php:
|
91 |
msgid "Log entry updated"
|
92 |
msgstr "日志条目更新"
|
93 |
|
94 |
-
#: ../mycred.php:
|
95 |
-
#: notices.php:
|
96 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
97 |
msgid "Setup"
|
98 |
msgstr "设置"
|
99 |
|
100 |
-
#: ../mycred.php:
|
101 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
102 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
103 |
msgid "Settings"
|
104 |
msgstr "设置"
|
105 |
|
106 |
-
#: ../mycred.php:
|
107 |
msgid ""
|
108 |
"Make sure to backup your database and files before updating, in case "
|
109 |
"anything goes wrong!"
|
@@ -141,10 +141,10 @@ msgstr "每天一次(在午夜重置)"
|
|
141 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
142 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
143 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
144 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
145 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
146 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
147 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
148 |
msgid "Select"
|
149 |
msgstr "选择"
|
150 |
|
@@ -244,7 +244,7 @@ msgid "Requirements"
|
|
244 |
msgstr ""
|
245 |
|
246 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
247 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
248 |
msgid "Users"
|
249 |
msgstr "用户"
|
250 |
|
@@ -327,22 +327,22 @@ msgstr ""
|
|
327 |
|
328 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
329 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
330 |
-
#: modules/mycred-module-buddypress.php:
|
331 |
msgid "Do not show"
|
332 |
msgstr "不显示"
|
333 |
|
334 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
335 |
-
#: buddypress.php:
|
336 |
msgid "Include in Profile Header"
|
337 |
msgstr ""
|
338 |
|
339 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
340 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
341 |
msgid "Include under the \"Profile\" tab"
|
342 |
msgstr "包括在\"个人资料\"TAB下面"
|
343 |
|
344 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
345 |
-
#: buddypress.php:
|
346 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
347 |
msgstr ""
|
348 |
|
@@ -411,7 +411,7 @@ msgstr ""
|
|
411 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
412 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
413 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
414 |
-
#: modules/mycred-module-settings.php:
|
415 |
msgid "Access Denied"
|
416 |
msgstr "拒绝访问"
|
417 |
|
@@ -562,8 +562,8 @@ msgstr "支付"
|
|
562 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
563 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
564 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
565 |
-
#: modules/mycred-module-hooks.php:
|
566 |
-
#: plugins/mycred-hook-badgeOS.php:
|
567 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
568 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
569 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -660,15 +660,15 @@ msgstr "用户支付"
|
|
660 |
|
661 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
662 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
663 |
-
#: creds.php:
|
664 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
665 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
666 |
-
#: includes/mycred-shortcodes.php:
|
667 |
msgid "Amount"
|
668 |
msgstr "数量"
|
669 |
|
670 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
671 |
-
#: modules/mycred-module-hooks.php:
|
672 |
msgid "Interval"
|
673 |
msgstr "间隔"
|
674 |
|
@@ -716,7 +716,7 @@ msgid "Edit Pending Payment"
|
|
716 |
msgstr ""
|
717 |
|
718 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
719 |
-
#: addon-buy-creds.php:
|
720 |
msgid "No pending payments found"
|
721 |
msgstr ""
|
722 |
|
@@ -725,23 +725,23 @@ msgid "Not found in Trash"
|
|
725 |
msgstr ""
|
726 |
|
727 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
728 |
-
#: addon-buy-creds.php:
|
729 |
msgid "Transaction ID"
|
730 |
msgstr "交易 ID"
|
731 |
|
732 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
733 |
-
#: addon-buy-creds.php:
|
734 |
msgid "Buyer"
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
738 |
-
#: addon-buy-creds.php:
|
739 |
#: gateway.php:563
|
740 |
msgid "Cost"
|
741 |
msgstr "花费"
|
742 |
|
743 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
744 |
-
#: addon-buy-creds.php:
|
745 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
746 |
msgid "Gateway"
|
747 |
msgstr "网关"
|
@@ -790,7 +790,7 @@ msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
|
|
790 |
|
791 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
792 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
793 |
-
#: module-settings.php:
|
794 |
msgid "Point Types"
|
795 |
msgstr "积分类型"
|
796 |
|
@@ -843,7 +843,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
843 |
msgstr "允许用户为内容作者购买 %_plural% 。"
|
844 |
|
845 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
846 |
-
#: hooks.php:
|
847 |
msgid "Available Shortcodes"
|
848 |
msgstr "可用简码"
|
849 |
|
@@ -870,7 +870,7 @@ msgid "%s Payment Gateways"
|
|
870 |
msgstr "%s 支付网关"
|
871 |
|
872 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
873 |
-
#: addon-buy-creds.php:
|
874 |
msgid "buyCRED Settings"
|
875 |
msgstr "buyCRED设置"
|
876 |
|
@@ -895,7 +895,7 @@ msgid "Enable for test purchases."
|
|
895 |
msgstr "启用测试购买。"
|
896 |
|
897 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
898 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
899 |
msgid "Update Settings"
|
900 |
msgstr "更新设置"
|
901 |
|
@@ -903,101 +903,101 @@ msgstr "更新设置"
|
|
903 |
msgid "More Gateways"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
907 |
#: 634
|
908 |
msgid "Date"
|
909 |
msgstr "日期"
|
910 |
|
911 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
912 |
msgid "Payed"
|
913 |
msgstr "已支付"
|
914 |
|
915 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
916 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
917 |
msgstr "<strong>buy</strong>CRED购买日志"
|
918 |
|
919 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
920 |
#: booking/mycred-eventespresso3.php:367
|
921 |
msgid "Gateway Settings"
|
922 |
msgstr "网关设置"
|
923 |
|
924 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
925 |
-
#: content/myCRED-addon-sell-content.php:
|
926 |
msgid "No purchases found"
|
927 |
msgstr "没有找到购买"
|
928 |
|
929 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
930 |
-
#: addon-buy-creds.php:
|
931 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
932 |
msgstr "你需要安装这个扩展才可以使用这个简码。"
|
933 |
|
934 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
935 |
-
#: addon-buy-creds.php:
|
936 |
msgid "No gateways installed."
|
937 |
msgstr "没有安装网关。"
|
938 |
|
939 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
940 |
-
#: addon-buy-creds.php:
|
941 |
msgid "Gateway does not exist."
|
942 |
msgstr "网关不存在。"
|
943 |
|
944 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
945 |
msgid "Yourself"
|
946 |
msgstr "你自己"
|
947 |
|
948 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
949 |
msgid "No active gateways found."
|
950 |
msgstr "没有活跃的网关。"
|
951 |
|
952 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
953 |
msgid "The selected gateway is not active."
|
954 |
msgstr "所选择的网关没启用。"
|
955 |
|
956 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
957 |
#, php-format
|
958 |
msgid "Buy with %gateway%"
|
959 |
msgstr "通过 %gateway% 购买。"
|
960 |
|
961 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
962 |
#: content/myCRED-addon-sell-content.php:44
|
963 |
msgid "Buy Now"
|
964 |
msgstr "立即购买"
|
965 |
|
966 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
967 |
msgid "No users found"
|
968 |
msgstr "没有找到用户"
|
969 |
|
970 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
971 |
msgid "To"
|
972 |
msgstr "给"
|
973 |
|
974 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
975 |
msgid "Select Amount"
|
976 |
msgstr "选择金额"
|
977 |
|
978 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
979 |
msgid "min."
|
980 |
msgstr "分钟。"
|
981 |
|
982 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
983 |
msgid "Select Gateway"
|
984 |
msgstr "选择网关"
|
985 |
|
986 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
987 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
988 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
989 |
#: php:35
|
990 |
msgid "Pay Now"
|
991 |
msgstr "马上支付"
|
992 |
|
993 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
994 |
-
#: php:
|
995 |
msgid "Cancel"
|
996 |
msgstr "取消"
|
997 |
|
998 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
999 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1000 |
-
#: module-settings.php:
|
1001 |
msgid "Actions"
|
1002 |
msgstr "操作"
|
1003 |
|
@@ -1137,55 +1137,55 @@ msgstr "如果你没有自动重定向,请点击这里"
|
|
1137 |
msgid "The following information will be sent to the gateway"
|
1138 |
msgstr "以下信息将被发送到网关"
|
1139 |
|
1140 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1141 |
msgid "Outside US"
|
1142 |
msgstr "美国以外"
|
1143 |
|
1144 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1145 |
msgid "January"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1149 |
msgid "February"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1153 |
msgid "March"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1157 |
msgid "April"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1161 |
msgid "May"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1165 |
msgid "June"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1169 |
msgid "July"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1173 |
msgid "August"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1177 |
msgid "September"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1181 |
msgid "October"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1185 |
msgid "November"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1189 |
msgid "December"
|
1190 |
msgstr ""
|
1191 |
|
@@ -1428,7 +1428,7 @@ msgstr "结帐页面"
|
|
1428 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1429 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1430 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1431 |
-
#: modules/mycred-module-hooks.php:
|
1432 |
msgid "Title"
|
1433 |
msgstr "标题"
|
1434 |
|
@@ -1616,7 +1616,7 @@ msgid "not yet used"
|
|
1616 |
msgstr "还没有使用"
|
1617 |
|
1618 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1619 |
-
#: php:
|
1620 |
msgid "Total"
|
1621 |
msgstr "全部"
|
1622 |
|
@@ -1778,7 +1778,7 @@ msgid "Apply Coupon"
|
|
1778 |
msgstr "申请优惠券"
|
1779 |
|
1780 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1781 |
-
#: notices/myCRED-addon-email-notices.php:
|
1782 |
msgid "Email Notice"
|
1783 |
msgstr "邮件通知"
|
1784 |
|
@@ -1963,17 +1963,17 @@ msgid ""
|
|
1963 |
msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
|
1964 |
|
1965 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1966 |
-
#: notices/myCRED-addon-email-notices.php:
|
1967 |
msgid "Email Settings"
|
1968 |
msgstr "邮件设置"
|
1969 |
|
1970 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1971 |
-
#: notices/myCRED-addon-email-notices.php:
|
1972 |
msgid "Senders Name:"
|
1973 |
msgstr "发件人名称:"
|
1974 |
|
1975 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1976 |
-
#: notices/myCRED-addon-email-notices.php:
|
1977 |
msgid "Senders Email:"
|
1978 |
msgstr "发件人的邮箱:"
|
1979 |
|
@@ -1997,167 +1997,167 @@ msgstr "默认邮件样式"
|
|
1997 |
msgid "Ignored if HTML is not allowed in emails."
|
1998 |
msgstr "如果邮件不允许使用HTML,请忽略。"
|
1999 |
|
2000 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2001 |
-
#: notices/myCRED-addon-email-notices.php:
|
2002 |
msgid "Email Subject"
|
2003 |
msgstr "邮件主题"
|
2004 |
|
2005 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2006 |
msgid "Status"
|
2007 |
msgstr "状态"
|
2008 |
|
2009 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2010 |
msgid "Not Active"
|
2011 |
msgstr "没启用"
|
2012 |
|
2013 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2014 |
#, php-format
|
2015 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2016 |
msgstr "预定:<br /><strong>%1$s</strong>"
|
2017 |
|
2018 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2019 |
msgid "Active"
|
2020 |
msgstr "状态"
|
2021 |
|
2022 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2023 |
#, php-format
|
2024 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2025 |
msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
|
2026 |
|
2027 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2028 |
msgid "Email is sent when"
|
2029 |
msgstr "发送邮件,当"
|
2030 |
|
2031 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2032 |
msgid "Missing instance for this notice!"
|
2033 |
msgstr "本通知缺少实例!"
|
2034 |
|
2035 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2036 |
-
#: notices/myCRED-addon-email-notices.php:
|
2037 |
-
#: addon-email-notices.php:
|
2038 |
msgid "Sent To"
|
2039 |
msgstr "发送给"
|
2040 |
|
2041 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2042 |
-
#: notices/myCRED-addon-email-notices.php:
|
2043 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2044 |
msgid "User"
|
2045 |
msgstr "用户"
|
2046 |
|
2047 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2048 |
-
#: notices/myCRED-addon-email-notices.php:
|
2049 |
msgid "Administrator"
|
2050 |
msgstr "管理员"
|
2051 |
|
2052 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2053 |
msgid "Both Administrator and User"
|
2054 |
msgstr "管理员和用户"
|
2055 |
|
2056 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2057 |
msgid "Available Template Tags"
|
2058 |
msgstr "可用的模板标签"
|
2059 |
|
2060 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2061 |
msgid "Email Header"
|
2062 |
msgstr "邮件头部"
|
2063 |
|
2064 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2065 |
msgid "Send this email notice when..."
|
2066 |
msgstr "发送该邮件通知当..."
|
2067 |
|
2068 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2069 |
msgid "Recipient:"
|
2070 |
msgstr "收件人:"
|
2071 |
|
2072 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2073 |
msgid "Both"
|
2074 |
msgstr "两者"
|
2075 |
|
2076 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2077 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2078 |
-
#: settings.php:
|
2079 |
-
#: module-settings.php:
|
2080 |
msgid "Label"
|
2081 |
msgstr "标签"
|
2082 |
|
2083 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2084 |
msgid "Reply-To Email:"
|
2085 |
msgstr "回复给邮件:"
|
2086 |
|
2087 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2088 |
msgid "Save"
|
2089 |
msgstr "保存"
|
2090 |
|
2091 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2092 |
msgid "CSS Styling"
|
2093 |
msgstr "CSS样式"
|
2094 |
|
2095 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2096 |
msgid "Site Related"
|
2097 |
msgstr "网站相关"
|
2098 |
|
2099 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2100 |
msgid "Your websites title"
|
2101 |
msgstr "您的网站标题"
|
2102 |
|
2103 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2104 |
msgid "Your websites address"
|
2105 |
msgstr "您的网站地址"
|
2106 |
|
2107 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2108 |
msgid "Your websites tagline (description)"
|
2109 |
msgstr "您的网站标语(介绍)"
|
2110 |
|
2111 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2112 |
msgid "Your websites admin email"
|
2113 |
msgstr "您的网站管理邮箱"
|
2114 |
|
2115 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2116 |
msgid "Total number of blog members"
|
2117 |
msgstr "博客成员总数"
|
2118 |
|
2119 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2120 |
-
#: notices/myCRED-addon-email-notices.php:
|
2121 |
-
#: addon-email-notices.php:
|
2122 |
msgid "Email Notice Updated."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2126 |
msgid "Email Notice Activated"
|
2127 |
msgstr "邮件通知已激活"
|
2128 |
|
2129 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2130 |
msgid "Email Notice Saved"
|
2131 |
msgstr "邮件通知已保存"
|
2132 |
|
2133 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2134 |
msgid ""
|
2135 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2136 |
"are not yet ready to use this email notice!"
|
2137 |
msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
|
2138 |
|
2139 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2140 |
#, php-format
|
2141 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2142 |
msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
|
2143 |
|
2144 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2145 |
msgid "This email notice is active."
|
2146 |
msgstr "此邮件通知已被激活。"
|
2147 |
|
2148 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2149 |
msgid "Settings saved."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2153 |
msgid "Unsubscribe"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2157 |
msgid "There are no email notifications yet."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2161 |
msgid "Save Changes"
|
2162 |
msgstr ""
|
2163 |
|
@@ -2204,7 +2204,7 @@ msgstr "已支付"
|
|
2204 |
|
2205 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2206 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2207 |
-
#: 52 ../includes/mycred-network.php:53
|
2208 |
msgid "myCRED"
|
2209 |
msgstr "myCRED"
|
2210 |
|
@@ -2278,7 +2278,7 @@ msgstr "1 在 %currency% 中值多少 %_singular%?"
|
|
2278 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2279 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2280 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2281 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2282 |
msgid "Exchange Rate"
|
2283 |
msgstr "汇率"
|
2284 |
|
@@ -2568,7 +2568,7 @@ msgstr "显示在收据和日志上的标题"
|
|
2568 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2569 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2570 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2571 |
-
#: sell-content.php:
|
2572 |
msgid "Button Label"
|
2573 |
msgstr "按钮标签"
|
2574 |
|
@@ -2582,7 +2582,7 @@ msgstr "支付按钮"
|
|
2582 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2583 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2584 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2585 |
-
#: sell-content.php:
|
2586 |
msgid "Price"
|
2587 |
msgstr "价格"
|
2588 |
|
@@ -2683,8 +2683,8 @@ msgid "Reject"
|
|
2683 |
msgstr "拒绝"
|
2684 |
|
2685 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2686 |
-
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2687 |
-
#: modules/mycred-module-settings.php:
|
2688 |
msgid "Delete"
|
2689 |
msgstr "删除"
|
2690 |
|
@@ -2801,7 +2801,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2801 |
msgstr "使用内置的CSS样式的通知。"
|
2802 |
|
2803 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2804 |
-
#: module-buddypress.php:
|
2805 |
msgid "Template"
|
2806 |
msgstr "模板"
|
2807 |
|
@@ -3061,7 +3061,7 @@ msgid ""
|
|
3061 |
msgstr "选择要显示在您的管理后台,或前台(如果排名是\"公开的\")的排名顺序。"
|
3062 |
|
3063 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3064 |
-
#: php:
|
3065 |
msgid "Do not show."
|
3066 |
msgstr "不显示。"
|
3067 |
|
@@ -3111,9 +3111,9 @@ msgid "No users found with this rank"
|
|
3111 |
msgstr "没有任何用户在这个等级中"
|
3112 |
|
3113 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3114 |
-
#: shortcodes.php:
|
3115 |
-
#: shortcodes.php:
|
3116 |
-
#: shortcodes.php:
|
3117 |
msgid "error"
|
3118 |
msgstr "错误"
|
3119 |
|
@@ -3234,38 +3234,38 @@ msgstr "用于销售的日志模板"
|
|
3234 |
msgid "%s Sell This"
|
3235 |
msgstr "%s 销售这个"
|
3236 |
|
3237 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3238 |
#, php-format
|
3239 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3240 |
msgstr "%s 销售内容需要设置,然后才能使用此功能。"
|
3241 |
|
3242 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3243 |
msgid "Setup add-on"
|
3244 |
msgstr "设置扩展"
|
3245 |
|
3246 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3247 |
msgid "Lets do it"
|
3248 |
msgstr "让我们开始吧"
|
3249 |
|
3250 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3251 |
#, php-format
|
3252 |
msgid "Enable sale of this %s"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3256 |
msgid "Purchase expires after"
|
3257 |
msgstr "多久后购买过期"
|
3258 |
|
3259 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3260 |
msgid "Thank you for your purchase!"
|
3261 |
msgstr "非常感谢您的购买!"
|
3262 |
|
3263 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3264 |
-
#: content/myCRED-addon-sell-content.php:
|
3265 |
msgid "The following content is set for sale:"
|
3266 |
msgstr "下面的内容是设置来销售的:"
|
3267 |
|
3268 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3269 |
msgid "Purchased"
|
3270 |
msgstr "购买"
|
3271 |
|
@@ -3278,7 +3278,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3278 |
msgstr "您已超出您的 %limit% 转账限额。"
|
3279 |
|
3280 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3281 |
-
#: php:
|
3282 |
msgid "Transfer"
|
3283 |
msgstr "转账"
|
3284 |
|
@@ -3313,7 +3313,7 @@ msgid ""
|
|
3313 |
msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
|
3314 |
|
3315 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3316 |
-
#: php:
|
3317 |
msgid "Insufficient Funds. Please try a lower amount."
|
3318 |
msgstr ""
|
3319 |
|
@@ -3680,282 +3680,282 @@ msgstr "搜索结果"
|
|
3680 |
msgid "My Entire Log"
|
3681 |
msgstr "我的整个日志"
|
3682 |
|
3683 |
-
#: ../includes/mycred-functions.php:
|
3684 |
msgid "ref empty"
|
3685 |
msgstr "ref 为空"
|
3686 |
|
3687 |
-
#: ../includes/mycred-functions.php:
|
3688 |
msgid "incorrect user id format"
|
3689 |
msgstr "不正确的用户ID格式"
|
3690 |
|
3691 |
-
#: ../includes/mycred-functions.php:
|
3692 |
msgid "incorrect unix timestamp (from):"
|
3693 |
msgstr "不正确的unix时间戳(from):"
|
3694 |
|
3695 |
-
#: ../includes/mycred-functions.php:
|
3696 |
msgid "incorrect unix timestamp (to):"
|
3697 |
msgstr "不正确的UNIX时间戳(to):"
|
3698 |
|
3699 |
-
#: ../includes/mycred-functions.php:
|
3700 |
msgid "Website Registration"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: ../includes/mycred-functions.php:
|
3704 |
msgid "Website Visit"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: ../includes/mycred-functions.php:
|
3708 |
msgid "Viewing Content (Member)"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: ../includes/mycred-functions.php:
|
3712 |
msgid "Viewing Content (Author)"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: ../includes/mycred-functions.php:
|
3716 |
msgid "Logging in"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
-
#: ../includes/mycred-functions.php:
|
3720 |
msgid "Publishing Content"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: ../includes/mycred-functions.php:
|
3724 |
msgid "Approved Comment"
|
3725 |
msgstr "批准评论"
|
3726 |
|
3727 |
-
#: ../includes/mycred-functions.php:
|
3728 |
msgid "Unapproved Comment"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
-
#: ../includes/mycred-functions.php:
|
3732 |
msgid "SPAM Comment"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: ../includes/mycred-functions.php:
|
3736 |
msgid "Deleted Comment"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#: ../includes/mycred-functions.php:
|
3740 |
msgid "Link Click"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: ../includes/mycred-functions.php:
|
3744 |
msgid "Watching Video"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: ../includes/mycred-functions.php:
|
3748 |
msgid "Visitor Referral"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: ../includes/mycred-functions.php:
|
3752 |
msgid "Signup Referral"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: ../includes/mycred-functions.php:
|
3756 |
msgid "New Profile Update"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: ../includes/mycred-functions.php:
|
3760 |
msgid "Avatar Upload"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: ../includes/mycred-functions.php:
|
3764 |
msgid "New Friendship"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: ../includes/mycred-functions.php:
|
3768 |
msgid "Ended Friendship"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: ../includes/mycred-functions.php:
|
3772 |
msgid "New Profile Comment"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: ../includes/mycred-functions.php:
|
3776 |
msgid "Profile Comment Deletion"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: ../includes/mycred-functions.php:
|
3780 |
msgid "New Message"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: ../includes/mycred-functions.php:
|
3784 |
msgid "Sending Gift"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: ../includes/mycred-functions.php:
|
3788 |
msgid "New Group"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: ../includes/mycred-functions.php:
|
3792 |
msgid "Deleted Group"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: ../includes/mycred-functions.php:
|
3796 |
msgid "New Group Forum Topic"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: ../includes/mycred-functions.php:
|
3800 |
msgid "Edit Group Forum Topic"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: ../includes/mycred-functions.php:
|
3804 |
msgid "New Group Forum Post"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: ../includes/mycred-functions.php:
|
3808 |
msgid "Edit Group Forum Post"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: ../includes/mycred-functions.php:
|
3812 |
msgid "Joining Group"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: ../includes/mycred-functions.php:
|
3816 |
msgid "Leaving Group"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: ../includes/mycred-functions.php:
|
3820 |
msgid "New Group Avatar"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: ../includes/mycred-functions.php:
|
3824 |
msgid "New Group Comment"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: ../includes/mycred-functions.php:
|
3828 |
#: php:166
|
3829 |
msgid "Photo Upload"
|
3830 |
msgstr "照片上传"
|
3831 |
|
3832 |
-
#: ../includes/mycred-functions.php:
|
3833 |
#: php:176
|
3834 |
msgid "Video Upload"
|
3835 |
msgstr "视频上传"
|
3836 |
|
3837 |
-
#: ../includes/mycred-functions.php:
|
3838 |
#: php:186
|
3839 |
msgid "Music Upload"
|
3840 |
msgstr "音乐上传"
|
3841 |
|
3842 |
-
#: ../includes/mycred-functions.php:
|
3843 |
msgid "New Link"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: ../includes/mycred-functions.php:
|
3847 |
msgid "Link Voting"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: ../includes/mycred-functions.php:
|
3851 |
msgid "Link Update"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: ../includes/mycred-functions.php:
|
3855 |
msgid "New Forum (bbPress)"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: ../includes/mycred-functions.php:
|
3859 |
msgid "New Forum Topic (bbPress)"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: ../includes/mycred-functions.php:
|
3863 |
msgid "Favorited Topic (bbPress)"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: ../includes/mycred-functions.php:
|
3867 |
msgid "New Topic Reply (bbPress)"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: ../includes/mycred-functions.php:
|
3871 |
msgid "Form Submission (Contact Form 7)"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: ../includes/mycred-functions.php:
|
3875 |
msgid "Form Submission (Gravity Form)"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: ../includes/mycred-functions.php:
|
3879 |
msgid "New Forum Topic (SimplePress)"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: ../includes/mycred-functions.php:
|
3883 |
msgid "New Forum Post (SimplePress)"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: ../includes/mycred-functions.php:
|
3887 |
msgid "Poll Voting"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: ../includes/mycred-functions.php:
|
3891 |
msgid "Sending an Invite"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: ../includes/mycred-functions.php:
|
3895 |
msgid "Accepting an Invite"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: ../includes/mycred-functions.php:
|
3899 |
msgid "Banking Payout"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: ../includes/mycred-functions.php:
|
3903 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: ../includes/mycred-functions.php:
|
3907 |
msgid "buyCRED Purchase (Skrill)"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: ../includes/mycred-functions.php:
|
3911 |
msgid "buyCRED Purchase (Zombaio)"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: ../includes/mycred-functions.php:
|
3915 |
msgid "buyCRED Purchase (NETBilling)"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: ../includes/mycred-functions.php:
|
3919 |
msgid "buyCRED Purchase (BitPay)"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: ../includes/mycred-functions.php:
|
3923 |
msgid "Coupon Purchase"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: ../includes/mycred-functions.php:
|
3927 |
msgid "Store Purchase (WooCommerce)"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: ../includes/mycred-functions.php:
|
3931 |
msgid "Store Purchase (MarketPress)"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: ../includes/mycred-functions.php:
|
3935 |
msgid "Store Purchase (WP E-Commerce)"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: ../includes/mycred-functions.php:
|
3939 |
msgid "Event Payment (Event Espresso)"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: ../includes/mycred-functions.php:
|
3943 |
msgid "Event Sale (Event Espresso)"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: ../includes/mycred-functions.php:
|
3947 |
msgid "Event Payment (Events Manager)"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: ../includes/mycred-functions.php:
|
3951 |
msgid "Event Sale (Events Manager)"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: ../includes/mycred-functions.php:
|
3955 |
msgid "Content Purchase / Sale"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: ../includes/mycred-functions.php:
|
3959 |
msgid "Manual Adjustment by Admin"
|
3960 |
msgstr ""
|
3961 |
|
@@ -4003,115 +4003,115 @@ msgstr "myCRED需要 PHP5.2.4 或更高版本。版本检测:"
|
|
4003 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4004 |
msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
|
4005 |
|
4006 |
-
#: ../includes/mycred-install.php:
|
4007 |
msgid ""
|
4008 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4009 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4010 |
"for you!"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: ../includes/mycred-install.php:
|
4014 |
msgid ""
|
4015 |
"Sorry but your WordPress installation does not reach the minimum "
|
4016 |
"requirements for running myCRED. The following errors were given:"
|
4017 |
msgstr "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
|
4018 |
|
4019 |
-
#: ../includes/mycred-install.php:
|
4020 |
msgid "myCRED needs your attention."
|
4021 |
msgstr "myCRED需要你的关注。"
|
4022 |
|
4023 |
-
#: ../includes/mycred-install.php:
|
4024 |
msgid "Run Setup"
|
4025 |
msgstr "运行设置程序"
|
4026 |
|
4027 |
-
#: ../includes/mycred-install.php:
|
4028 |
msgid "myCRED Setup"
|
4029 |
msgstr "myCRED 设置"
|
4030 |
|
4031 |
-
#: ../includes/mycred-install.php:
|
4032 |
#, php-format
|
4033 |
msgid "%s Setup"
|
4034 |
msgstr "%s 设置"
|
4035 |
|
4036 |
-
#: ../includes/mycred-install.php:
|
4037 |
msgid "Step"
|
4038 |
msgstr "步骤"
|
4039 |
|
4040 |
-
#: ../includes/mycred-install.php:
|
4041 |
msgid ""
|
4042 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4043 |
"points format, layout and security settings."
|
4044 |
msgstr "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
|
4045 |
|
4046 |
-
#: ../includes/mycred-install.php:
|
4047 |
msgid "Begin Setup"
|
4048 |
msgstr "开始设置"
|
4049 |
|
4050 |
-
#: ../includes/mycred-install.php:
|
4051 |
msgid "Select the format you want to use for your points."
|
4052 |
msgstr "选择您要使用的积分格式。"
|
4053 |
|
4054 |
-
#: ../includes/mycred-install.php:
|
4055 |
msgid "Format"
|
4056 |
msgstr "格式"
|
4057 |
|
4058 |
-
#: ../includes/mycred-install.php:
|
4059 |
msgid "Separators"
|
4060 |
msgstr "分离器"
|
4061 |
|
4062 |
-
#: ../includes/mycred-install.php:
|
4063 |
msgid "Decimals"
|
4064 |
msgstr "小数"
|
4065 |
|
4066 |
-
#: ../includes/mycred-install.php:
|
4067 |
msgid "Use zero for no decimals."
|
4068 |
msgstr "使用零则无小数。"
|
4069 |
|
4070 |
-
#: ../includes/mycred-install.php:
|
4071 |
msgid "Presentation"
|
4072 |
msgstr "介绍"
|
4073 |
|
4074 |
-
#: ../includes/mycred-install.php:
|
4075 |
msgid "Name (Singular)"
|
4076 |
msgstr "名称(单数)"
|
4077 |
|
4078 |
-
#: ../includes/mycred-install.php:
|
4079 |
msgid "Name (Plural)"
|
4080 |
msgstr "名称(复数)"
|
4081 |
|
4082 |
-
#: ../includes/mycred-install.php:
|
4083 |
msgid "Prefix"
|
4084 |
msgstr "前缀"
|
4085 |
|
4086 |
-
#: ../includes/mycred-install.php:
|
4087 |
msgid "Suffix"
|
4088 |
msgstr "后缀"
|
4089 |
|
4090 |
-
#: ../includes/mycred-install.php:
|
4091 |
msgid "Cancel Setup"
|
4092 |
msgstr "取消设置"
|
4093 |
|
4094 |
-
#: ../includes/mycred-install.php:
|
4095 |
msgid "Next"
|
4096 |
msgstr "下一页"
|
4097 |
|
4098 |
-
#: ../includes/mycred-install.php:
|
4099 |
msgid "Security"
|
4100 |
msgstr "安全"
|
4101 |
|
4102 |
-
#: ../includes/mycred-install.php:
|
4103 |
msgid "Edit Settings Capability"
|
4104 |
msgstr "编辑设置能力"
|
4105 |
|
4106 |
-
#: ../includes/mycred-install.php:
|
4107 |
msgid "Edit Users %plural% Capability"
|
4108 |
msgstr "编辑用户 %plural% 能力"
|
4109 |
|
4110 |
-
#: ../includes/mycred-install.php:
|
4111 |
msgid "Maximum %plural% payouts"
|
4112 |
msgstr "最大 %plural% 支出"
|
4113 |
|
4114 |
-
#: ../includes/mycred-install.php:
|
4115 |
msgid ""
|
4116 |
"As an added security, you can set the maximum amount a user can gain or "
|
4117 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4121,39 +4121,39 @@ msgstr ""
|
|
4121 |
"作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
|
4122 |
"用零禁用。"
|
4123 |
|
4124 |
-
#: ../includes/mycred-install.php:
|
4125 |
msgid "Excludes"
|
4126 |
msgstr "排除"
|
4127 |
|
4128 |
-
#: ../includes/mycred-install.php:
|
4129 |
msgid "Exclude those who can \"Edit Settings\"."
|
4130 |
msgstr "排除那些可以\"编辑设置\"的用户。"
|
4131 |
|
4132 |
-
#: ../includes/mycred-install.php:
|
4133 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4134 |
msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
|
4135 |
|
4136 |
-
#: ../includes/mycred-install.php:
|
4137 |
msgid "Exclude the following user IDs:"
|
4138 |
msgstr "排除以下用户ID:"
|
4139 |
|
4140 |
-
#: ../includes/mycred-install.php:
|
4141 |
msgid "User Deletions"
|
4142 |
msgstr "用户删除"
|
4143 |
|
4144 |
-
#: ../includes/mycred-install.php:
|
4145 |
msgid "Delete log entries when user is deleted."
|
4146 |
msgstr "用户被删除时,删除与之相关的日志条目。"
|
4147 |
|
4148 |
-
#: ../includes/mycred-install.php:
|
4149 |
msgid "Ready"
|
4150 |
msgstr "准备"
|
4151 |
|
4152 |
-
#: ../includes/mycred-install.php:
|
4153 |
msgid "Almost done! Click the button below to finish this setup."
|
4154 |
msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
|
4155 |
|
4156 |
-
#: ../includes/mycred-install.php:
|
4157 |
msgid "Install & Run"
|
4158 |
msgstr "安装与运行"
|
4159 |
|
@@ -4168,29 +4168,29 @@ msgid_plural "entries"
|
|
4168 |
msgstr[0] "条目"
|
4169 |
msgstr[1] "条目"
|
4170 |
|
4171 |
-
#: ../includes/mycred-log.php:
|
4172 |
msgid "Go to the first page"
|
4173 |
msgstr "转到第页"
|
4174 |
|
4175 |
-
#: ../includes/mycred-log.php:
|
4176 |
msgid "Go to the previous page"
|
4177 |
msgstr "转到前一页"
|
4178 |
|
4179 |
-
#: ../includes/mycred-log.php:
|
4180 |
msgid "Current page"
|
4181 |
msgstr "当前页"
|
4182 |
|
4183 |
-
#: ../includes/mycred-log.php:
|
4184 |
#, php-format
|
4185 |
msgctxt "paging"
|
4186 |
msgid "%1$s of %2$s"
|
4187 |
msgstr "%1$s of %2$s"
|
4188 |
|
4189 |
-
#: ../includes/mycred-log.php:
|
4190 |
msgid "Go to the next page"
|
4191 |
msgstr "转到下一个页面"
|
4192 |
|
4193 |
-
#: ../includes/mycred-log.php:
|
4194 |
msgid "Go to the last page"
|
4195 |
msgstr "转到最后一页"
|
4196 |
|
@@ -4198,7 +4198,7 @@ msgstr "转到最后一页"
|
|
4198 |
msgid "Show all references"
|
4199 |
msgstr "显示所有引用"
|
4200 |
|
4201 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4202 |
msgid "User ID"
|
4203 |
msgstr "用户 ID"
|
4204 |
|
@@ -4412,92 +4412,92 @@ msgid ""
|
|
4412 |
"about your setup!"
|
4413 |
msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
|
4414 |
|
4415 |
-
#: ../includes/mycred-shortcodes.php:
|
4416 |
msgid "Leaderboard is empty."
|
4417 |
msgstr "排行榜是空的。"
|
4418 |
|
4419 |
-
#: ../includes/mycred-shortcodes.php:
|
4420 |
msgid "Amount missing!"
|
4421 |
msgstr "数量缺失!"
|
4422 |
|
4423 |
-
#: ../includes/mycred-shortcodes.php:
|
4424 |
msgid "Log Template Missing!"
|
4425 |
msgstr "日志模板缺失!"
|
4426 |
|
4427 |
-
#: ../includes/mycred-shortcodes.php:
|
4428 |
msgid "Anchor missing URL!"
|
4429 |
msgstr "缺失锚文本链接"
|
4430 |
|
4431 |
-
#: ../includes/mycred-shortcodes.php:
|
4432 |
msgid "User ID missing for recipient."
|
4433 |
msgstr "收件人用户名缺失。"
|
4434 |
|
4435 |
-
#: ../includes/mycred-shortcodes.php:
|
4436 |
msgid "Sent"
|
4437 |
msgstr "已发送"
|
4438 |
|
4439 |
-
#: ../includes/mycred-shortcodes.php:
|
4440 |
msgid "Error - Try Again"
|
4441 |
msgstr "错误 - 请重试"
|
4442 |
|
4443 |
-
#: ../includes/mycred-shortcodes.php:
|
4444 |
msgid "A video ID is required for this shortcode"
|
4445 |
msgstr "这个简码需要一个视频ID"
|
4446 |
|
4447 |
-
#: ../includes/mycred-shortcodes.php:
|
4448 |
msgid "Point types not found."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: ../includes/mycred-shortcodes.php:
|
4452 |
-
#: includes/mycred-shortcodes.php:
|
4453 |
#, php-format
|
4454 |
msgid "You are excluded from using %s."
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: ../includes/mycred-shortcodes.php:
|
4458 |
msgid "Your balance is too low to use this feature."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: ../includes/mycred-shortcodes.php:
|
4462 |
#, php-format
|
4463 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: ../includes/mycred-shortcodes.php:
|
4467 |
#, php-format
|
4468 |
msgid "Your current %s balance"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: ../includes/mycred-shortcodes.php:
|
4472 |
#, php-format
|
4473 |
msgid "Minimum %s"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: ../includes/mycred-shortcodes.php:
|
4477 |
#, php-format
|
4478 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: ../includes/mycred-shortcodes.php:
|
4482 |
msgid "Exchange"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: ../includes/mycred-shortcodes.php:
|
4486 |
#, php-format
|
4487 |
msgid "You must exchange at least %s!"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: ../includes/mycred-shortcodes.php:
|
4491 |
#, php-format
|
4492 |
msgid "Exchange from %s"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: ../includes/mycred-shortcodes.php:
|
4496 |
#, php-format
|
4497 |
msgid "Exchange to %s"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: ../includes/mycred-shortcodes.php:
|
4501 |
#, php-format
|
4502 |
msgid "You have successfully exchanged %s into %s."
|
4503 |
msgstr ""
|
@@ -4516,7 +4516,7 @@ msgstr "(%s) 我的余额"
|
|
4516 |
msgid "My Balance"
|
4517 |
msgstr "我的余额"
|
4518 |
|
4519 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4520 |
msgid "%plural% History"
|
4521 |
msgstr "%plural% 历史"
|
4522 |
|
@@ -4920,62 +4920,62 @@ msgstr "%s 的历史"
|
|
4920 |
msgid "Current balance"
|
4921 |
msgstr "当前余额"
|
4922 |
|
4923 |
-
#: ../modules/mycred-module-buddypress.php:
|
4924 |
msgid "Go"
|
4925 |
msgstr "访问"
|
4926 |
|
4927 |
-
#: ../modules/mycred-module-buddypress.php:
|
4928 |
msgid "Show in Profile"
|
4929 |
msgstr "显示在个人资料"
|
4930 |
|
4931 |
-
#: ../modules/mycred-module-buddypress.php:
|
4932 |
#, php-format
|
4933 |
msgid "%singular% Balance"
|
4934 |
msgstr "%singular% 余额"
|
4935 |
|
4936 |
-
#: ../modules/mycred-module-buddypress.php:
|
4937 |
#, php-format
|
4938 |
msgid "Members and visitors can other members %_singular% balance."
|
4939 |
msgstr "用户和访客可以查看其他用户的 %_singular% 余额。"
|
4940 |
|
4941 |
-
#: ../modules/mycred-module-buddypress.php:
|
4942 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4943 |
msgstr "请注意,您也可以使用 %rank_logo% 来显示等级的特色图像。"
|
4944 |
|
4945 |
-
#: ../modules/mycred-module-buddypress.php:
|
4946 |
msgid "Members can view each others %_plural% history."
|
4947 |
msgstr "用户可以查看对方的 %_plural% 历史。"
|
4948 |
|
4949 |
-
#: ../modules/mycred-module-buddypress.php:
|
4950 |
msgid "Menu Title"
|
4951 |
msgstr "菜单标题"
|
4952 |
|
4953 |
-
#: ../modules/mycred-module-buddypress.php:
|
4954 |
msgid "Title shown to me"
|
4955 |
msgstr "为我显示的标题"
|
4956 |
|
4957 |
-
#: ../modules/mycred-module-buddypress.php:
|
4958 |
#, php-format
|
4959 |
msgid "Title shown to others. Use %s to show the first name."
|
4960 |
msgstr "为其他用户显示的标题。使用 %s 来显示名字。"
|
4961 |
|
4962 |
-
#: ../modules/mycred-module-buddypress.php:
|
4963 |
msgid "Menu Position"
|
4964 |
msgstr "菜单位置"
|
4965 |
|
4966 |
-
#: ../modules/mycred-module-buddypress.php:
|
4967 |
msgid "Current menu positions:"
|
4968 |
msgstr "当前菜单位置:"
|
4969 |
|
4970 |
-
#: ../modules/mycred-module-buddypress.php:
|
4971 |
msgid "History URL slug"
|
4972 |
msgstr "历史URL别名"
|
4973 |
|
4974 |
-
#: ../modules/mycred-module-buddypress.php:
|
4975 |
msgid "Do not use empty spaces!"
|
4976 |
msgstr "不要使用空格!"
|
4977 |
|
4978 |
-
#: ../modules/mycred-module-buddypress.php:
|
4979 |
msgid "Number of history entries to show"
|
4980 |
msgstr "历史日志条目的显示数量"
|
4981 |
|
@@ -5102,8 +5102,8 @@ msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们
|
|
5102 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5103 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5104 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5105 |
-
#:
|
5106 |
-
#: php:
|
5107 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5108 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5109 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5164,8 +5164,8 @@ msgstr ""
|
|
5164 |
msgid "%plural% for viewing %s"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5168 |
-
#: ../modules/mycred-module-hooks.php:
|
5169 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5170 |
msgid "Limit"
|
5171 |
msgstr "限制"
|
@@ -5247,7 +5247,7 @@ msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。
|
|
5247 |
msgid "Custom tags: %url%, %title% or %id%."
|
5248 |
msgstr "自定义标签:%url% 、%title% 或 %id%。"
|
5249 |
|
5250 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5251 |
msgid "Note!"
|
5252 |
msgstr "注意!"
|
5253 |
|
@@ -5261,158 +5261,166 @@ msgstr ""
|
|
5261 |
"如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如果您使用这个函数来 \"共享 "
|
5262 |
"\"内容,建议您通过ID进行限制。"
|
5263 |
|
5264 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5265 |
msgid "Available Shortcode"
|
5266 |
msgstr "可用简码"
|
5267 |
|
5268 |
-
#: ../modules/mycred-module-hooks.php:
|
5269 |
msgid "Amount to award for viewing videos."
|
5270 |
msgstr "奖励给观看视频的数量"
|
5271 |
|
5272 |
-
#: ../modules/mycred-module-hooks.php:
|
5273 |
msgid "Award Logic"
|
5274 |
msgstr "奖励逻辑"
|
5275 |
|
5276 |
-
#: ../modules/mycred-module-hooks.php:
|
5277 |
#, php-format
|
5278 |
msgid "Select when %_plural% should be awarded or deducted."
|
5279 |
msgstr "选择什么时候奖励或扣除 %_plural% 。"
|
5280 |
|
5281 |
-
#: ../modules/mycred-module-hooks.php:
|
5282 |
msgid "Play - As soon as video starts playing."
|
5283 |
msgstr "播放 - 当视频开始播放。"
|
5284 |
|
5285 |
-
#: ../modules/mycred-module-hooks.php:
|
5286 |
msgid "Full - First when the entire video has played."
|
5287 |
msgstr "完整 - 当整个视频已经播放完。"
|
5288 |
|
5289 |
-
#: ../modules/mycred-module-hooks.php:
|
5290 |
msgid "Interval - For each x number of seconds watched."
|
5291 |
msgstr "间隔 - 每个观看了 X 秒。"
|
5292 |
|
5293 |
-
#: ../modules/mycred-module-hooks.php:
|
5294 |
msgid "Number of seconds"
|
5295 |
msgstr "秒数"
|
5296 |
|
5297 |
-
#: ../modules/mycred-module-hooks.php:
|
5298 |
msgid "Leniency"
|
5299 |
msgstr "宽大"
|
5300 |
|
5301 |
-
#: ../modules/mycred-module-hooks.php:
|
5302 |
msgid ""
|
5303 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5304 |
"length."
|
5305 |
msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
|
5306 |
|
5307 |
-
#: ../modules/mycred-module-hooks.php:
|
5308 |
msgid ""
|
5309 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5310 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5311 |
"buffering or play back errors."
|
5312 |
msgstr "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,几秒钟就可以删除计数器。"
|
5313 |
|
5314 |
-
#: ../modules/mycred-module-hooks.php:
|
5315 |
msgid "Affiliate Program"
|
5316 |
msgstr "联盟计划"
|
5317 |
|
5318 |
-
#: ../modules/mycred-module-hooks.php:
|
5319 |
msgid "Per Day"
|
5320 |
msgstr "每天"
|
5321 |
|
5322 |
-
#: ../modules/mycred-module-hooks.php:
|
5323 |
msgid "Link"
|
5324 |
msgstr "链接"
|
5325 |
|
5326 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5327 |
msgid "Referring Visitors"
|
5328 |
msgstr "推介访客"
|
5329 |
|
5330 |
-
#: ../modules/mycred-module-hooks.php:
|
5331 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5332 |
msgstr "每个用户可以推介的人数。使用零为无限。"
|
5333 |
|
5334 |
-
#: ../modules/mycred-module-hooks.php:
|
5335 |
msgid "Referring Signups"
|
5336 |
msgstr "推介注册"
|
5337 |
|
5338 |
-
#: ../modules/mycred-module-hooks.php:
|
5339 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5340 |
msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
|
5341 |
|
5342 |
-
#: ../modules/mycred-module-hooks.php:
|
5343 |
msgid "Registrations are disabled."
|
5344 |
msgstr "注册被禁用。"
|
5345 |
|
5346 |
-
#: ../modules/mycred-module-hooks.php:
|
5347 |
msgid "Referral Links"
|
5348 |
msgstr "推介链接"
|
5349 |
|
5350 |
-
#: ../modules/mycred-module-hooks.php:
|
5351 |
msgid "Assign numeric referral IDs to each user."
|
5352 |
msgstr "分配数字推介ID给每个用户。"
|
5353 |
|
5354 |
-
#: ../modules/mycred-module-hooks.php:
|
5355 |
msgid "Example"
|
5356 |
msgstr "例如"
|
5357 |
|
5358 |
-
#: ../modules/mycred-module-hooks.php:
|
5359 |
msgid "Assign usernames as IDs for each user."
|
5360 |
msgstr "分配用户名作为ID给每个用户。"
|
5361 |
|
5362 |
-
#: ../modules/mycred-module-hooks.php:
|
5363 |
msgid "IP Limit"
|
5364 |
msgstr "IP限制"
|
5365 |
|
5366 |
-
#: ../modules/mycred-module-hooks.php:
|
5367 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5368 |
msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
|
5369 |
|
5370 |
-
#: ../modules/mycred-module-hooks.php:
|
5371 |
msgid "BuddyPress Profile"
|
5372 |
msgstr "BuddyPress 个人资料"
|
5373 |
|
5374 |
-
#: ../modules/mycred-module-hooks.php:
|
5375 |
msgid "Insert Link in users Profile"
|
5376 |
msgstr "在用户的个人资料插入链接"
|
5377 |
|
5378 |
-
#: ../modules/mycred-module-hooks.php:
|
5379 |
msgid ""
|
5380 |
"Option to inser the referral link in users profiles. Links will only be "
|
5381 |
"visible to users viewing their own profiles or administrators."
|
5382 |
msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
|
5383 |
|
5384 |
-
#: ../modules/mycred-module-hooks.php:
|
5385 |
msgid "Leave empty to hide."
|
5386 |
msgstr "留空则隐藏。"
|
5387 |
|
5388 |
-
#: ../modules/mycred-module-hooks.php:
|
5389 |
msgid "Description"
|
5390 |
msgstr "描述"
|
5391 |
|
5392 |
-
#: ../modules/mycred-module-hooks.php:
|
5393 |
msgid "Optional description to insert under the link."
|
5394 |
msgstr "(可选)插入到链接中的描述"
|
5395 |
|
5396 |
-
#: ../modules/mycred-module-hooks.php:
|
5397 |
msgid "Profile Positioning"
|
5398 |
msgstr "个人资料定位"
|
5399 |
|
5400 |
-
#: ../modules/mycred-module-hooks.php:
|
5401 |
msgid ""
|
5402 |
"You can move around the referral link on your users profile by changing the "
|
5403 |
"position. Increase to move up, decrease to move down."
|
5404 |
msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
|
5405 |
|
5406 |
-
#: ../modules/mycred-module-hooks.php:
|
5407 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5408 |
msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
|
5409 |
|
5410 |
-
#: ../modules/mycred-module-hooks.php:
|
5411 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5412 |
msgstr "需要启用 BuddyPress 个人资料扩展。"
|
5413 |
|
5414 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5415 |
-
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5416 |
msgid "Access denied for this action"
|
5417 |
msgstr "拒绝访问这个动作"
|
5418 |
|
@@ -5428,12 +5436,12 @@ msgstr "没有找到日志条目"
|
|
5428 |
msgid "Entry Updated"
|
5429 |
msgstr "项目更新"
|
5430 |
|
5431 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5432 |
msgid "Entries"
|
5433 |
msgstr "条目"
|
5434 |
|
5435 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5436 |
-
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5437 |
msgid "Export"
|
5438 |
msgstr "导出"
|
5439 |
|
@@ -5480,198 +5488,198 @@ msgid "My %s History"
|
|
5480 |
msgstr "我的 %s 历史"
|
5481 |
|
5482 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5483 |
-
#:
|
5484 |
msgid "Missing point type"
|
5485 |
msgstr "缺失积分类型"
|
5486 |
|
5487 |
-
#: ../modules/mycred-module-settings.php:
|
5488 |
msgid "Accounts successfully reset"
|
5489 |
msgstr "账户成功重置"
|
5490 |
|
5491 |
-
#: ../modules/mycred-module-settings.php:
|
5492 |
msgid "No users found to export"
|
5493 |
msgstr "没有找到用户要导出"
|
5494 |
|
5495 |
-
#: ../modules/mycred-module-settings.php:
|
5496 |
#, php-format
|
5497 |
msgid "%s Settings"
|
5498 |
msgstr "%s 设置"
|
5499 |
|
5500 |
-
#: ../modules/mycred-module-settings.php:
|
5501 |
msgid "Adjust your core or add-on settings."
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: ../modules/mycred-module-settings.php:
|
5505 |
msgid "Core Settings"
|
5506 |
msgstr "核心设置"
|
5507 |
|
5508 |
-
#: ../modules/mycred-module-settings.php:
|
5509 |
msgid "Name"
|
5510 |
msgstr "名字"
|
5511 |
|
5512 |
-
#: ../modules/mycred-module-settings.php:
|
5513 |
#, php-format
|
5514 |
msgid "Accessible though the %singular% template tag."
|
5515 |
msgstr "可通过 %singular% 模板标签访问。"
|
5516 |
|
5517 |
-
#: ../modules/mycred-module-settings.php:
|
5518 |
msgid "Accessible though the %plural% template tag."
|
5519 |
msgstr "可通过 %plural% 模板标签访问。"
|
5520 |
|
5521 |
-
#: ../modules/mycred-module-settings.php:
|
5522 |
msgid "Tip"
|
5523 |
msgstr "提示"
|
5524 |
|
5525 |
-
#: ../modules/mycred-module-settings.php:
|
5526 |
msgid ""
|
5527 |
"Adding an underscore at the beginning of template tag for names will return "
|
5528 |
"them in lowercase. i.e. %_singular%"
|
5529 |
msgstr "在模板标签名字前面添加下划线将返回小写字母。例如 %_singular%"
|
5530 |
|
5531 |
-
#: ../modules/mycred-module-settings.php:
|
5532 |
msgid "Separator"
|
5533 |
msgid_plural "Separators"
|
5534 |
msgstr[0] "分离器"
|
5535 |
msgstr[1] "分离器"
|
5536 |
|
5537 |
-
#: ../modules/mycred-module-settings.php:
|
5538 |
msgid "Edit Settings"
|
5539 |
msgstr "编辑设置"
|
5540 |
|
5541 |
-
#: ../modules/mycred-module-settings.php:
|
5542 |
-
#: php:
|
5543 |
msgid "Capability to check for."
|
5544 |
msgstr "操作能力检查。"
|
5545 |
|
5546 |
-
#: ../modules/mycred-module-settings.php:
|
5547 |
msgid "Edit Users %plural%"
|
5548 |
msgstr "编辑用户 %plural%"
|
5549 |
|
5550 |
-
#: ../modules/mycred-module-settings.php:
|
5551 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5552 |
msgstr "逗号分隔的用户id列表将被排除。不允许使用空格!"
|
5553 |
|
5554 |
-
#: ../modules/mycred-module-settings.php:
|
5555 |
msgid "Management"
|
5556 |
msgstr "管理"
|
5557 |
|
5558 |
-
#: ../modules/mycred-module-settings.php:
|
5559 |
msgid "The Log"
|
5560 |
msgstr "日志"
|
5561 |
|
5562 |
-
#: ../modules/mycred-module-settings.php:
|
5563 |
msgid "Table Name"
|
5564 |
msgstr "标签名称"
|
5565 |
|
5566 |
-
#: ../modules/mycred-module-settings.php:
|
5567 |
msgid "Empty Log"
|
5568 |
msgstr "空日志"
|
5569 |
|
5570 |
-
#: ../modules/mycred-module-settings.php:
|
5571 |
msgid "User Meta Key"
|
5572 |
msgstr "用户Meta键"
|
5573 |
|
5574 |
-
#: ../modules/mycred-module-settings.php:
|
5575 |
msgid "Set all to zero"
|
5576 |
msgstr "全部设为零"
|
5577 |
|
5578 |
-
#: ../modules/mycred-module-settings.php:
|
5579 |
msgid "CSV Export"
|
5580 |
msgstr "CSV导出"
|
5581 |
|
5582 |
-
#: ../modules/mycred-module-settings.php:
|
5583 |
msgid "Default"
|
5584 |
msgstr "默认"
|
5585 |
|
5586 |
-
#: ../modules/mycred-module-settings.php:
|
5587 |
-
#: php:
|
5588 |
msgid "Meta Key"
|
5589 |
msgstr "Meta键"
|
5590 |
|
5591 |
-
#: ../modules/mycred-module-settings.php:
|
5592 |
msgid "Add New Type"
|
5593 |
msgstr "添加新类型"
|
5594 |
|
5595 |
-
#: ../modules/mycred-module-settings.php:
|
5596 |
msgid "A unique ID for this type."
|
5597 |
msgstr "给这种类型一个唯一的ID。"
|
5598 |
|
5599 |
-
#: ../modules/mycred-module-settings.php:
|
5600 |
msgid "Menu and page title."
|
5601 |
msgstr "菜单和页面标题。"
|
5602 |
|
5603 |
-
#: ../modules/mycred-module-settings.php:
|
5604 |
msgid "The meta key will define where your users balances are saved."
|
5605 |
msgstr "当用户余额被保存时,Meta键将被定义。"
|
5606 |
|
5607 |
-
#: ../modules/mycred-module-settings.php:
|
5608 |
msgid "Identify users by"
|
5609 |
msgstr "通过什么识别用户"
|
5610 |
|
5611 |
-
#: ../modules/mycred-module-settings.php:
|
5612 |
msgid "User Email"
|
5613 |
msgstr "用户邮件"
|
5614 |
|
5615 |
-
#: ../modules/mycred-module-settings.php:
|
5616 |
msgid "User Login"
|
5617 |
msgstr "用户登录"
|
5618 |
|
5619 |
-
#: ../modules/mycred-module-settings.php:
|
5620 |
msgid ""
|
5621 |
"Use ID if you intend to use this export as a backup of your current site "
|
5622 |
"while Email is recommended if you want to export to a different site."
|
5623 |
msgstr "如果你打算使用这个导出作为当前网站的备份,并且导入到另一个不同的站点的话,推荐使用ID。"
|
5624 |
|
5625 |
-
#: ../modules/mycred-module-settings.php:
|
5626 |
msgid "Import Log Entry"
|
5627 |
msgstr "导入日志条目"
|
5628 |
|
5629 |
-
#: ../modules/mycred-module-settings.php:
|
5630 |
#, php-format
|
5631 |
msgid ""
|
5632 |
"Optional log entry to use if you intend to import this file in a different "
|
5633 |
"%s installation."
|
5634 |
msgstr "(可选)使用日志条目,如果你打算在一个不同的 %s 安装中导入这个文件。"
|
5635 |
|
5636 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5637 |
msgid "BadgeOS"
|
5638 |
msgstr "BadgeOS"
|
5639 |
|
5640 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5641 |
msgid ""
|
5642 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5643 |
"overridden for individual achievement type."
|
5644 |
msgstr "为每个 BadgeOS 成就类型的默认设置。这些设置可以被单个成就类型覆盖。"
|
5645 |
|
5646 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5647 |
#, php-format
|
5648 |
msgid ""
|
5649 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5650 |
"feature."
|
5651 |
msgstr "在使用这个功能前,请设置您的 <a href=\"%s\">默认设置</a>。"
|
5652 |
|
5653 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5654 |
msgid "%plural% to Award"
|
5655 |
msgstr "%plural% 要奖励"
|
5656 |
|
5657 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5658 |
msgid "Use zero to disable"
|
5659 |
msgstr "使用零禁用"
|
5660 |
|
5661 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5662 |
msgid "Deduction Log Template"
|
5663 |
msgstr "扣除日志模板"
|
5664 |
|
5665 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5666 |
#, php-format
|
5667 |
msgid "Default %s for %s"
|
5668 |
msgstr "%s 的默认 %s"
|
5669 |
|
5670 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5671 |
msgid "Use zero to disable users gaining %_plural%"
|
5672 |
msgstr "使用零来禁用用户获得 %_plural%"
|
5673 |
|
5674 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5675 |
msgid "Default Log template"
|
5676 |
msgstr "默认日志模板"
|
5677 |
|
3 |
"Project-Id-Version: myCRED\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Sep 09 2014 13:55:43 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: admin <gabriel.s@merovingi.com>\n"
|
8 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
9 |
"Language: Chinese\n"
|
10 |
"Plural-Forms: nplurals=1; plural=0\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Loco-Target-Locale: zh_CN"
|
24 |
|
25 |
+
#: ../mycred.php:425
|
26 |
msgid "Balance"
|
27 |
msgstr "余额"
|
28 |
|
29 |
+
#: ../mycred.php:450
|
30 |
msgid "%label% History"
|
31 |
msgstr "%label% 历史"
|
32 |
|
33 |
+
#: ../mycred.php:543
|
34 |
#, php-format
|
35 |
msgid "About %s"
|
36 |
msgstr "关于 %s"
|
37 |
|
38 |
+
#: ../mycred.php:552
|
39 |
msgid "Awesome People"
|
40 |
msgstr "真棒的人"
|
41 |
|
42 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
43 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
44 |
#: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
45 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
46 |
+
#: includes/mycred-shortcodes.php:631
|
47 |
msgid "Processing..."
|
48 |
msgstr "处理中..."
|
49 |
|
50 |
+
#: ../mycred.php:638
|
51 |
msgid ""
|
52 |
"Warning! All entries in your log will be permanently removed! This can not "
|
53 |
"be undone!"
|
54 |
msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
|
55 |
|
56 |
+
#: ../mycred.php:639
|
57 |
msgid ""
|
58 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
59 |
"can not be undone!"
|
60 |
msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
|
61 |
|
62 |
+
#: ../mycred.php:640
|
63 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
64 |
msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
|
65 |
|
66 |
+
#: ../mycred.php:641
|
67 |
msgid "Done!"
|
68 |
msgstr "完成了!"
|
69 |
|
70 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
71 |
msgid "Close"
|
72 |
msgstr "关闭"
|
73 |
|
74 |
+
#: ../mycred.php:643
|
75 |
msgid "Export users %plural%"
|
76 |
msgstr "导出用户 %plural%"
|
77 |
|
78 |
+
#: ../mycred.php:659
|
79 |
msgid "Edit Users Balance"
|
80 |
msgstr "编辑用户余额"
|
81 |
|
82 |
+
#: ../mycred.php:677
|
83 |
msgid "Edit Log Entry"
|
84 |
msgstr "编辑日志条目"
|
85 |
|
86 |
+
#: ../mycred.php:681
|
87 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
88 |
msgstr "您确定要删除此日志条目?此操作无法撤消!"
|
89 |
|
90 |
+
#: ../mycred.php:682
|
91 |
msgid "Log entry updated"
|
92 |
msgstr "日志条目更新"
|
93 |
|
94 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
95 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
96 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
97 |
msgid "Setup"
|
98 |
msgstr "设置"
|
99 |
|
100 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
101 |
#: includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
102 |
#: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
103 |
msgid "Settings"
|
104 |
msgstr "设置"
|
105 |
|
106 |
+
#: ../mycred.php:776
|
107 |
msgid ""
|
108 |
"Make sure to backup your database and files before updating, in case "
|
109 |
"anything goes wrong!"
|
141 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
142 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
143 |
#: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
144 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
145 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
146 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
147 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
148 |
msgid "Select"
|
149 |
msgstr "选择"
|
150 |
|
244 |
msgstr ""
|
245 |
|
246 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
247 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
248 |
msgid "Users"
|
249 |
msgstr "用户"
|
250 |
|
327 |
|
328 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
329 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
330 |
+
#: modules/mycred-module-buddypress.php:395
|
331 |
msgid "Do not show"
|
332 |
msgstr "不显示"
|
333 |
|
334 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
335 |
+
#: buddypress.php:396
|
336 |
msgid "Include in Profile Header"
|
337 |
msgstr ""
|
338 |
|
339 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
340 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
341 |
msgid "Include under the \"Profile\" tab"
|
342 |
msgstr "包括在\"个人资料\"TAB下面"
|
343 |
|
344 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
345 |
+
#: buddypress.php:398
|
346 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
347 |
msgstr ""
|
348 |
|
411 |
#: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
412 |
#: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
413 |
#: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
414 |
+
#: modules/mycred-module-settings.php:313
|
415 |
msgid "Access Denied"
|
416 |
msgstr "拒绝访问"
|
417 |
|
562 |
#: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
563 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
564 |
#: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
565 |
+
#: modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
566 |
+
#: plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
567 |
#: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
568 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
569 |
#: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
660 |
|
661 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
662 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
663 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
664 |
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
665 |
#: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
666 |
+
#: includes/mycred-shortcodes.php:939
|
667 |
msgid "Amount"
|
668 |
msgstr "数量"
|
669 |
|
670 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
671 |
+
#: modules/mycred-module-hooks.php:2112
|
672 |
msgid "Interval"
|
673 |
msgstr "间隔"
|
674 |
|
716 |
msgstr ""
|
717 |
|
718 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
719 |
+
#: addon-buy-creds.php:1635
|
720 |
msgid "No pending payments found"
|
721 |
msgstr ""
|
722 |
|
725 |
msgstr ""
|
726 |
|
727 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
728 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
729 |
msgid "Transaction ID"
|
730 |
msgstr "交易 ID"
|
731 |
|
732 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
733 |
+
#: addon-buy-creds.php:985
|
734 |
msgid "Buyer"
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
738 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
739 |
#: gateway.php:563
|
740 |
msgid "Cost"
|
741 |
msgstr "花费"
|
742 |
|
743 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
744 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
745 |
#: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
746 |
msgid "Gateway"
|
747 |
msgstr "网关"
|
790 |
|
791 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
792 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
793 |
+
#: module-settings.php:470
|
794 |
msgid "Point Types"
|
795 |
msgstr "积分类型"
|
796 |
|
843 |
msgstr "允许用户为内容作者购买 %_plural% 。"
|
844 |
|
845 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
846 |
+
#: hooks.php:2792
|
847 |
msgid "Available Shortcodes"
|
848 |
msgstr "可用简码"
|
849 |
|
870 |
msgstr "%s 支付网关"
|
871 |
|
872 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
873 |
+
#: addon-buy-creds.php:993
|
874 |
msgid "buyCRED Settings"
|
875 |
msgstr "buyCRED设置"
|
876 |
|
895 |
msgstr "启用测试购买。"
|
896 |
|
897 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
898 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
899 |
msgid "Update Settings"
|
900 |
msgstr "更新设置"
|
901 |
|
903 |
msgid "More Gateways"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
907 |
#: 634
|
908 |
msgid "Date"
|
909 |
msgstr "日期"
|
910 |
|
911 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
912 |
msgid "Payed"
|
913 |
msgstr "已支付"
|
914 |
|
915 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
916 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
917 |
msgstr "<strong>buy</strong>CRED购买日志"
|
918 |
|
919 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
920 |
#: booking/mycred-eventespresso3.php:367
|
921 |
msgid "Gateway Settings"
|
922 |
msgstr "网关设置"
|
923 |
|
924 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
925 |
+
#: content/myCRED-addon-sell-content.php:1191
|
926 |
msgid "No purchases found"
|
927 |
msgstr "没有找到购买"
|
928 |
|
929 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
930 |
+
#: addon-buy-creds.php:1355
|
931 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
932 |
msgstr "你需要安装这个扩展才可以使用这个简码。"
|
933 |
|
934 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
935 |
+
#: addon-buy-creds.php:1374
|
936 |
msgid "No gateways installed."
|
937 |
msgstr "没有安装网关。"
|
938 |
|
939 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
940 |
+
#: addon-buy-creds.php:1375
|
941 |
msgid "Gateway does not exist."
|
942 |
msgstr "网关不存在。"
|
943 |
|
944 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
945 |
msgid "Yourself"
|
946 |
msgstr "你自己"
|
947 |
|
948 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
949 |
msgid "No active gateways found."
|
950 |
msgstr "没有活跃的网关。"
|
951 |
|
952 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
953 |
msgid "The selected gateway is not active."
|
954 |
msgstr "所选择的网关没启用。"
|
955 |
|
956 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
957 |
#, php-format
|
958 |
msgid "Buy with %gateway%"
|
959 |
msgstr "通过 %gateway% 购买。"
|
960 |
|
961 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
962 |
#: content/myCRED-addon-sell-content.php:44
|
963 |
msgid "Buy Now"
|
964 |
msgstr "立即购买"
|
965 |
|
966 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
967 |
msgid "No users found"
|
968 |
msgstr "没有找到用户"
|
969 |
|
970 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
971 |
msgid "To"
|
972 |
msgstr "给"
|
973 |
|
974 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
975 |
msgid "Select Amount"
|
976 |
msgstr "选择金额"
|
977 |
|
978 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
979 |
msgid "min."
|
980 |
msgstr "分钟。"
|
981 |
|
982 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
983 |
msgid "Select Gateway"
|
984 |
msgstr "选择网关"
|
985 |
|
986 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
987 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
988 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
989 |
#: php:35
|
990 |
msgid "Pay Now"
|
991 |
msgstr "马上支付"
|
992 |
|
993 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
994 |
+
#: php:516
|
995 |
msgid "Cancel"
|
996 |
msgstr "取消"
|
997 |
|
998 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
999 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1000 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1001 |
msgid "Actions"
|
1002 |
msgstr "操作"
|
1003 |
|
1137 |
msgid "The following information will be sent to the gateway"
|
1138 |
msgstr "以下信息将被发送到网关"
|
1139 |
|
1140 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1141 |
msgid "Outside US"
|
1142 |
msgstr "美国以外"
|
1143 |
|
1144 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1145 |
msgid "January"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1149 |
msgid "February"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1153 |
msgid "March"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1157 |
msgid "April"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1161 |
msgid "May"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1165 |
msgid "June"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1169 |
msgid "July"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1173 |
msgid "August"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1177 |
msgid "September"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1181 |
msgid "October"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1185 |
msgid "November"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1189 |
msgid "December"
|
1190 |
msgstr ""
|
1191 |
|
1428 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1429 |
#: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1430 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1431 |
+
#: modules/mycred-module-hooks.php:2757
|
1432 |
msgid "Title"
|
1433 |
msgstr "标题"
|
1434 |
|
1616 |
msgstr "还没有使用"
|
1617 |
|
1618 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1619 |
+
#: php:2202
|
1620 |
msgid "Total"
|
1621 |
msgstr "全部"
|
1622 |
|
1778 |
msgstr "申请优惠券"
|
1779 |
|
1780 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1781 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1782 |
msgid "Email Notice"
|
1783 |
msgstr "邮件通知"
|
1784 |
|
1963 |
msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
|
1964 |
|
1965 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1966 |
+
#: notices/myCRED-addon-email-notices.php:787
|
1967 |
msgid "Email Settings"
|
1968 |
msgstr "邮件设置"
|
1969 |
|
1970 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1971 |
+
#: notices/myCRED-addon-email-notices.php:910
|
1972 |
msgid "Senders Name:"
|
1973 |
msgstr "发件人名称:"
|
1974 |
|
1975 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1976 |
+
#: notices/myCRED-addon-email-notices.php:912
|
1977 |
msgid "Senders Email:"
|
1978 |
msgstr "发件人的邮箱:"
|
1979 |
|
1997 |
msgid "Ignored if HTML is not allowed in emails."
|
1998 |
msgstr "如果邮件不允许使用HTML,请忽略。"
|
1999 |
|
2000 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2001 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2002 |
msgid "Email Subject"
|
2003 |
msgstr "邮件主题"
|
2004 |
|
2005 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2006 |
msgid "Status"
|
2007 |
msgstr "状态"
|
2008 |
|
2009 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2010 |
msgid "Not Active"
|
2011 |
msgstr "没启用"
|
2012 |
|
2013 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2014 |
#, php-format
|
2015 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2016 |
msgstr "预定:<br /><strong>%1$s</strong>"
|
2017 |
|
2018 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2019 |
msgid "Active"
|
2020 |
msgstr "状态"
|
2021 |
|
2022 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2023 |
#, php-format
|
2024 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2025 |
msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
|
2026 |
|
2027 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2028 |
msgid "Email is sent when"
|
2029 |
msgstr "发送邮件,当"
|
2030 |
|
2031 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2032 |
msgid "Missing instance for this notice!"
|
2033 |
msgstr "本通知缺少实例!"
|
2034 |
|
2035 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2036 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2037 |
+
#: addon-email-notices.php:775
|
2038 |
msgid "Sent To"
|
2039 |
msgstr "发送给"
|
2040 |
|
2041 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2042 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2043 |
#: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2044 |
msgid "User"
|
2045 |
msgstr "用户"
|
2046 |
|
2047 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2048 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2049 |
msgid "Administrator"
|
2050 |
msgstr "管理员"
|
2051 |
|
2052 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2053 |
msgid "Both Administrator and User"
|
2054 |
msgstr "管理员和用户"
|
2055 |
|
2056 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2057 |
msgid "Available Template Tags"
|
2058 |
msgstr "可用的模板标签"
|
2059 |
|
2060 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2061 |
msgid "Email Header"
|
2062 |
msgstr "邮件头部"
|
2063 |
|
2064 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2065 |
msgid "Send this email notice when..."
|
2066 |
msgstr "发送该邮件通知当..."
|
2067 |
|
2068 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2069 |
msgid "Recipient:"
|
2070 |
msgstr "收件人:"
|
2071 |
|
2072 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2073 |
msgid "Both"
|
2074 |
msgstr "两者"
|
2075 |
|
2076 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2077 |
#: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2078 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2079 |
+
#: module-settings.php:527
|
2080 |
msgid "Label"
|
2081 |
msgstr "标签"
|
2082 |
|
2083 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2084 |
msgid "Reply-To Email:"
|
2085 |
msgstr "回复给邮件:"
|
2086 |
|
2087 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2088 |
msgid "Save"
|
2089 |
msgstr "保存"
|
2090 |
|
2091 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2092 |
msgid "CSS Styling"
|
2093 |
msgstr "CSS样式"
|
2094 |
|
2095 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2096 |
msgid "Site Related"
|
2097 |
msgstr "网站相关"
|
2098 |
|
2099 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2100 |
msgid "Your websites title"
|
2101 |
msgstr "您的网站标题"
|
2102 |
|
2103 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2104 |
msgid "Your websites address"
|
2105 |
msgstr "您的网站地址"
|
2106 |
|
2107 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2108 |
msgid "Your websites tagline (description)"
|
2109 |
msgstr "您的网站标语(介绍)"
|
2110 |
|
2111 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2112 |
msgid "Your websites admin email"
|
2113 |
msgstr "您的网站管理邮箱"
|
2114 |
|
2115 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2116 |
msgid "Total number of blog members"
|
2117 |
msgstr "博客成员总数"
|
2118 |
|
2119 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2120 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2121 |
+
#: addon-email-notices.php:1040
|
2122 |
msgid "Email Notice Updated."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2126 |
msgid "Email Notice Activated"
|
2127 |
msgstr "邮件通知已激活"
|
2128 |
|
2129 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2130 |
msgid "Email Notice Saved"
|
2131 |
msgstr "邮件通知已保存"
|
2132 |
|
2133 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2134 |
msgid ""
|
2135 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2136 |
"are not yet ready to use this email notice!"
|
2137 |
msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
|
2138 |
|
2139 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2140 |
#, php-format
|
2141 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2142 |
msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
|
2143 |
|
2144 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2145 |
msgid "This email notice is active."
|
2146 |
msgstr "此邮件通知已被激活。"
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2149 |
msgid "Settings saved."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2153 |
msgid "Unsubscribe"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2157 |
msgid "There are no email notifications yet."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2161 |
msgid "Save Changes"
|
2162 |
msgstr ""
|
2163 |
|
2204 |
|
2205 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2206 |
#: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2207 |
+
#: 52 ../includes/mycred-network.php:53
|
2208 |
msgid "myCRED"
|
2209 |
msgstr "myCRED"
|
2210 |
|
2278 |
#: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2279 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2280 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2281 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2282 |
msgid "Exchange Rate"
|
2283 |
msgstr "汇率"
|
2284 |
|
2568 |
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2569 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2570 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2571 |
+
#: sell-content.php:669
|
2572 |
msgid "Button Label"
|
2573 |
msgstr "按钮标签"
|
2574 |
|
2582 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2583 |
#: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2584 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2585 |
+
#: sell-content.php:665
|
2586 |
msgid "Price"
|
2587 |
msgstr "价格"
|
2588 |
|
2683 |
msgstr "拒绝"
|
2684 |
|
2685 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2686 |
+
#: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2687 |
+
#: modules/mycred-module-settings.php:508
|
2688 |
msgid "Delete"
|
2689 |
msgstr "删除"
|
2690 |
|
2801 |
msgstr "使用内置的CSS样式的通知。"
|
2802 |
|
2803 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2804 |
+
#: module-buddypress.php:439
|
2805 |
msgid "Template"
|
2806 |
msgstr "模板"
|
2807 |
|
3061 |
msgstr "选择要显示在您的管理后台,或前台(如果排名是\"公开的\")的排名顺序。"
|
3062 |
|
3063 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3064 |
+
#: php:402
|
3065 |
msgid "Do not show."
|
3066 |
msgstr "不显示。"
|
3067 |
|
3111 |
msgstr "没有任何用户在这个等级中"
|
3112 |
|
3113 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3114 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3115 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3116 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3117 |
msgid "error"
|
3118 |
msgstr "错误"
|
3119 |
|
3234 |
msgid "%s Sell This"
|
3235 |
msgstr "%s 销售这个"
|
3236 |
|
3237 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3238 |
#, php-format
|
3239 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3240 |
msgstr "%s 销售内容需要设置,然后才能使用此功能。"
|
3241 |
|
3242 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3243 |
msgid "Setup add-on"
|
3244 |
msgstr "设置扩展"
|
3245 |
|
3246 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3247 |
msgid "Lets do it"
|
3248 |
msgstr "让我们开始吧"
|
3249 |
|
3250 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3251 |
#, php-format
|
3252 |
msgid "Enable sale of this %s"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3256 |
msgid "Purchase expires after"
|
3257 |
msgstr "多久后购买过期"
|
3258 |
|
3259 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3260 |
msgid "Thank you for your purchase!"
|
3261 |
msgstr "非常感谢您的购买!"
|
3262 |
|
3263 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3264 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3265 |
msgid "The following content is set for sale:"
|
3266 |
msgstr "下面的内容是设置来销售的:"
|
3267 |
|
3268 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3269 |
msgid "Purchased"
|
3270 |
msgstr "购买"
|
3271 |
|
3278 |
msgstr "您已超出您的 %limit% 转账限额。"
|
3279 |
|
3280 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3281 |
+
#: php:2367
|
3282 |
msgid "Transfer"
|
3283 |
msgstr "转账"
|
3284 |
|
3313 |
msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
|
3314 |
|
3315 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3316 |
+
#: php:1041
|
3317 |
msgid "Insufficient Funds. Please try a lower amount."
|
3318 |
msgstr ""
|
3319 |
|
3680 |
msgid "My Entire Log"
|
3681 |
msgstr "我的整个日志"
|
3682 |
|
3683 |
+
#: ../includes/mycred-functions.php:1854
|
3684 |
msgid "ref empty"
|
3685 |
msgstr "ref 为空"
|
3686 |
|
3687 |
+
#: ../includes/mycred-functions.php:1862
|
3688 |
msgid "incorrect user id format"
|
3689 |
msgstr "不正确的用户ID格式"
|
3690 |
|
3691 |
+
#: ../includes/mycred-functions.php:1875
|
3692 |
msgid "incorrect unix timestamp (from):"
|
3693 |
msgstr "不正确的unix时间戳(from):"
|
3694 |
|
3695 |
+
#: ../includes/mycred-functions.php:1884
|
3696 |
msgid "incorrect unix timestamp (to):"
|
3697 |
msgstr "不正确的UNIX时间戳(to):"
|
3698 |
|
3699 |
+
#: ../includes/mycred-functions.php:2254
|
3700 |
msgid "Website Registration"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: ../includes/mycred-functions.php:2255
|
3704 |
msgid "Website Visit"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: ../includes/mycred-functions.php:2256
|
3708 |
msgid "Viewing Content (Member)"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: ../includes/mycred-functions.php:2257
|
3712 |
msgid "Viewing Content (Author)"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: ../includes/mycred-functions.php:2258
|
3716 |
msgid "Logging in"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: ../includes/mycred-functions.php:2259
|
3720 |
msgid "Publishing Content"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3724 |
msgid "Approved Comment"
|
3725 |
msgstr "批准评论"
|
3726 |
|
3727 |
+
#: ../includes/mycred-functions.php:2261
|
3728 |
msgid "Unapproved Comment"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: ../includes/mycred-functions.php:2262
|
3732 |
msgid "SPAM Comment"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: ../includes/mycred-functions.php:2263
|
3736 |
msgid "Deleted Comment"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: ../includes/mycred-functions.php:2264
|
3740 |
msgid "Link Click"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: ../includes/mycred-functions.php:2265
|
3744 |
msgid "Watching Video"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: ../includes/mycred-functions.php:2266
|
3748 |
msgid "Visitor Referral"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: ../includes/mycred-functions.php:2267
|
3752 |
msgid "Signup Referral"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: ../includes/mycred-functions.php:2271
|
3756 |
msgid "New Profile Update"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: ../includes/mycred-functions.php:2272
|
3760 |
msgid "Avatar Upload"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: ../includes/mycred-functions.php:2273
|
3764 |
msgid "New Friendship"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: ../includes/mycred-functions.php:2274
|
3768 |
msgid "Ended Friendship"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: ../includes/mycred-functions.php:2275
|
3772 |
msgid "New Profile Comment"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: ../includes/mycred-functions.php:2276
|
3776 |
msgid "Profile Comment Deletion"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: ../includes/mycred-functions.php:2277
|
3780 |
msgid "New Message"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: ../includes/mycred-functions.php:2278
|
3784 |
msgid "Sending Gift"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: ../includes/mycred-functions.php:2279
|
3788 |
msgid "New Group"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: ../includes/mycred-functions.php:2280
|
3792 |
msgid "Deleted Group"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: ../includes/mycred-functions.php:2281
|
3796 |
msgid "New Group Forum Topic"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: ../includes/mycred-functions.php:2282
|
3800 |
msgid "Edit Group Forum Topic"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: ../includes/mycred-functions.php:2283
|
3804 |
msgid "New Group Forum Post"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: ../includes/mycred-functions.php:2284
|
3808 |
msgid "Edit Group Forum Post"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: ../includes/mycred-functions.php:2285
|
3812 |
msgid "Joining Group"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: ../includes/mycred-functions.php:2286
|
3816 |
msgid "Leaving Group"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: ../includes/mycred-functions.php:2287
|
3820 |
msgid "New Group Avatar"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: ../includes/mycred-functions.php:2288
|
3824 |
msgid "New Group Comment"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3828 |
#: php:166
|
3829 |
msgid "Photo Upload"
|
3830 |
msgstr "照片上传"
|
3831 |
|
3832 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3833 |
#: php:176
|
3834 |
msgid "Video Upload"
|
3835 |
msgstr "视频上传"
|
3836 |
|
3837 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
3838 |
#: php:186
|
3839 |
msgid "Music Upload"
|
3840 |
msgstr "音乐上传"
|
3841 |
|
3842 |
+
#: ../includes/mycred-functions.php:2298
|
3843 |
msgid "New Link"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: ../includes/mycred-functions.php:2299
|
3847 |
msgid "Link Voting"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: ../includes/mycred-functions.php:2300
|
3851 |
msgid "Link Update"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: ../includes/mycred-functions.php:2304
|
3855 |
msgid "New Forum (bbPress)"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: ../includes/mycred-functions.php:2305
|
3859 |
msgid "New Forum Topic (bbPress)"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: ../includes/mycred-functions.php:2306
|
3863 |
msgid "Favorited Topic (bbPress)"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: ../includes/mycred-functions.php:2307
|
3867 |
msgid "New Topic Reply (bbPress)"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: ../includes/mycred-functions.php:2311
|
3871 |
msgid "Form Submission (Contact Form 7)"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: ../includes/mycred-functions.php:2314
|
3875 |
msgid "Form Submission (Gravity Form)"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: ../includes/mycred-functions.php:2317
|
3879 |
msgid "New Forum Topic (SimplePress)"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: ../includes/mycred-functions.php:2318
|
3883 |
msgid "New Forum Post (SimplePress)"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: ../includes/mycred-functions.php:2322
|
3887 |
msgid "Poll Voting"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: ../includes/mycred-functions.php:2325
|
3891 |
msgid "Sending an Invite"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: ../includes/mycred-functions.php:2326
|
3895 |
msgid "Accepting an Invite"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: ../includes/mycred-functions.php:2332
|
3899 |
msgid "Banking Payout"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: ../includes/mycred-functions.php:2335
|
3903 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: ../includes/mycred-functions.php:2336
|
3907 |
msgid "buyCRED Purchase (Skrill)"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: ../includes/mycred-functions.php:2337
|
3911 |
msgid "buyCRED Purchase (Zombaio)"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: ../includes/mycred-functions.php:2338
|
3915 |
msgid "buyCRED Purchase (NETBilling)"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: ../includes/mycred-functions.php:2339
|
3919 |
msgid "buyCRED Purchase (BitPay)"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: ../includes/mycred-functions.php:2344
|
3923 |
msgid "Coupon Purchase"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: ../includes/mycred-functions.php:2347
|
3927 |
msgid "Store Purchase (WooCommerce)"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: ../includes/mycred-functions.php:2348
|
3931 |
msgid "Store Purchase (MarketPress)"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: ../includes/mycred-functions.php:2349
|
3935 |
msgid "Store Purchase (WP E-Commerce)"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: ../includes/mycred-functions.php:2354
|
3939 |
msgid "Event Payment (Event Espresso)"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: ../includes/mycred-functions.php:2355
|
3943 |
msgid "Event Sale (Event Espresso)"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: ../includes/mycred-functions.php:2359
|
3947 |
msgid "Event Payment (Events Manager)"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: ../includes/mycred-functions.php:2360
|
3951 |
msgid "Event Sale (Events Manager)"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: ../includes/mycred-functions.php:2364
|
3955 |
msgid "Content Purchase / Sale"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: ../includes/mycred-functions.php:2371
|
3959 |
msgid "Manual Adjustment by Admin"
|
3960 |
msgstr ""
|
3961 |
|
4003 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4004 |
msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
|
4005 |
|
4006 |
+
#: ../includes/mycred-install.php:54
|
4007 |
msgid ""
|
4008 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4009 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4010 |
"for you!"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: ../includes/mycred-install.php:59
|
4014 |
msgid ""
|
4015 |
"Sorry but your WordPress installation does not reach the minimum "
|
4016 |
"requirements for running myCRED. The following errors were given:"
|
4017 |
msgstr "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
|
4018 |
|
4019 |
+
#: ../includes/mycred-install.php:248
|
4020 |
msgid "myCRED needs your attention."
|
4021 |
msgstr "myCRED需要你的关注。"
|
4022 |
|
4023 |
+
#: ../includes/mycred-install.php:248
|
4024 |
msgid "Run Setup"
|
4025 |
msgstr "运行设置程序"
|
4026 |
|
4027 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4028 |
msgid "myCRED Setup"
|
4029 |
msgstr "myCRED 设置"
|
4030 |
|
4031 |
+
#: ../includes/mycred-install.php:390
|
4032 |
#, php-format
|
4033 |
msgid "%s Setup"
|
4034 |
msgstr "%s 设置"
|
4035 |
|
4036 |
+
#: ../includes/mycred-install.php:392
|
4037 |
msgid "Step"
|
4038 |
msgstr "步骤"
|
4039 |
|
4040 |
+
#: ../includes/mycred-install.php:416
|
4041 |
msgid ""
|
4042 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4043 |
"points format, layout and security settings."
|
4044 |
msgstr "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
|
4045 |
|
4046 |
+
#: ../includes/mycred-install.php:417
|
4047 |
msgid "Begin Setup"
|
4048 |
msgstr "开始设置"
|
4049 |
|
4050 |
+
#: ../includes/mycred-install.php:472
|
4051 |
msgid "Select the format you want to use for your points."
|
4052 |
msgstr "选择您要使用的积分格式。"
|
4053 |
|
4054 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4055 |
msgid "Format"
|
4056 |
msgstr "格式"
|
4057 |
|
4058 |
+
#: ../includes/mycred-install.php:476
|
4059 |
msgid "Separators"
|
4060 |
msgstr "分离器"
|
4061 |
|
4062 |
+
#: ../includes/mycred-install.php:486
|
4063 |
msgid "Decimals"
|
4064 |
msgstr "小数"
|
4065 |
|
4066 |
+
#: ../includes/mycred-install.php:488
|
4067 |
msgid "Use zero for no decimals."
|
4068 |
msgstr "使用零则无小数。"
|
4069 |
|
4070 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4071 |
msgid "Presentation"
|
4072 |
msgstr "介绍"
|
4073 |
|
4074 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4075 |
msgid "Name (Singular)"
|
4076 |
msgstr "名称(单数)"
|
4077 |
|
4078 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4079 |
msgid "Name (Plural)"
|
4080 |
msgstr "名称(复数)"
|
4081 |
|
4082 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4083 |
msgid "Prefix"
|
4084 |
msgstr "前缀"
|
4085 |
|
4086 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4087 |
msgid "Suffix"
|
4088 |
msgstr "后缀"
|
4089 |
|
4090 |
+
#: ../includes/mycred-install.php:516
|
4091 |
msgid "Cancel Setup"
|
4092 |
msgstr "取消设置"
|
4093 |
|
4094 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4095 |
msgid "Next"
|
4096 |
msgstr "下一页"
|
4097 |
|
4098 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4099 |
msgid "Security"
|
4100 |
msgstr "安全"
|
4101 |
|
4102 |
+
#: ../includes/mycred-install.php:551
|
4103 |
msgid "Edit Settings Capability"
|
4104 |
msgstr "编辑设置能力"
|
4105 |
|
4106 |
+
#: ../includes/mycred-install.php:555
|
4107 |
msgid "Edit Users %plural% Capability"
|
4108 |
msgstr "编辑用户 %plural% 能力"
|
4109 |
|
4110 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4111 |
msgid "Maximum %plural% payouts"
|
4112 |
msgstr "最大 %plural% 支出"
|
4113 |
|
4114 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4115 |
msgid ""
|
4116 |
"As an added security, you can set the maximum amount a user can gain or "
|
4117 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4121 |
"作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
|
4122 |
"用零禁用。"
|
4123 |
|
4124 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4125 |
msgid "Excludes"
|
4126 |
msgstr "排除"
|
4127 |
|
4128 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4129 |
msgid "Exclude those who can \"Edit Settings\"."
|
4130 |
msgstr "排除那些可以\"编辑设置\"的用户。"
|
4131 |
|
4132 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4133 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4134 |
msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
|
4135 |
|
4136 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4137 |
msgid "Exclude the following user IDs:"
|
4138 |
msgstr "排除以下用户ID:"
|
4139 |
|
4140 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4141 |
msgid "User Deletions"
|
4142 |
msgstr "用户删除"
|
4143 |
|
4144 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4145 |
msgid "Delete log entries when user is deleted."
|
4146 |
msgstr "用户被删除时,删除与之相关的日志条目。"
|
4147 |
|
4148 |
+
#: ../includes/mycred-install.php:604
|
4149 |
msgid "Ready"
|
4150 |
msgstr "准备"
|
4151 |
|
4152 |
+
#: ../includes/mycred-install.php:605
|
4153 |
msgid "Almost done! Click the button below to finish this setup."
|
4154 |
msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
|
4155 |
|
4156 |
+
#: ../includes/mycred-install.php:606
|
4157 |
msgid "Install & Run"
|
4158 |
msgstr "安装与运行"
|
4159 |
|
4168 |
msgstr[0] "条目"
|
4169 |
msgstr[1] "条目"
|
4170 |
|
4171 |
+
#: ../includes/mycred-log.php:412
|
4172 |
msgid "Go to the first page"
|
4173 |
msgstr "转到第页"
|
4174 |
|
4175 |
+
#: ../includes/mycred-log.php:419
|
4176 |
msgid "Go to the previous page"
|
4177 |
msgstr "转到前一页"
|
4178 |
|
4179 |
+
#: ../includes/mycred-log.php:428
|
4180 |
msgid "Current page"
|
4181 |
msgstr "当前页"
|
4182 |
|
4183 |
+
#: ../includes/mycred-log.php:434
|
4184 |
#, php-format
|
4185 |
msgctxt "paging"
|
4186 |
msgid "%1$s of %2$s"
|
4187 |
msgstr "%1$s of %2$s"
|
4188 |
|
4189 |
+
#: ../includes/mycred-log.php:438
|
4190 |
msgid "Go to the next page"
|
4191 |
msgstr "转到下一个页面"
|
4192 |
|
4193 |
+
#: ../includes/mycred-log.php:445
|
4194 |
msgid "Go to the last page"
|
4195 |
msgstr "转到最后一页"
|
4196 |
|
4198 |
msgid "Show all references"
|
4199 |
msgstr "显示所有引用"
|
4200 |
|
4201 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4202 |
msgid "User ID"
|
4203 |
msgstr "用户 ID"
|
4204 |
|
4412 |
"about your setup!"
|
4413 |
msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
|
4414 |
|
4415 |
+
#: ../includes/mycred-shortcodes.php:178
|
4416 |
msgid "Leaderboard is empty."
|
4417 |
msgstr "排行榜是空的。"
|
4418 |
|
4419 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4420 |
msgid "Amount missing!"
|
4421 |
msgstr "数量缺失!"
|
4422 |
|
4423 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4424 |
msgid "Log Template Missing!"
|
4425 |
msgstr "日志模板缺失!"
|
4426 |
|
4427 |
+
#: ../includes/mycred-shortcodes.php:515
|
4428 |
msgid "Anchor missing URL!"
|
4429 |
msgstr "缺失锚文本链接"
|
4430 |
|
4431 |
+
#: ../includes/mycred-shortcodes.php:577
|
4432 |
msgid "User ID missing for recipient."
|
4433 |
msgstr "收件人用户名缺失。"
|
4434 |
|
4435 |
+
#: ../includes/mycred-shortcodes.php:632
|
4436 |
msgid "Sent"
|
4437 |
msgstr "已发送"
|
4438 |
|
4439 |
+
#: ../includes/mycred-shortcodes.php:633
|
4440 |
msgid "Error - Try Again"
|
4441 |
msgstr "错误 - 请重试"
|
4442 |
|
4443 |
+
#: ../includes/mycred-shortcodes.php:742
|
4444 |
msgid "A video ID is required for this shortcode"
|
4445 |
msgstr "这个简码需要一个视频ID"
|
4446 |
|
4447 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4448 |
msgid "Point types not found."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4452 |
+
#: includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4453 |
#, php-format
|
4454 |
msgid "You are excluded from using %s."
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4458 |
msgid "Your balance is too low to use this feature."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: ../includes/mycred-shortcodes.php:924
|
4462 |
#, php-format
|
4463 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: ../includes/mycred-shortcodes.php:933
|
4467 |
#, php-format
|
4468 |
msgid "Your current %s balance"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: ../includes/mycred-shortcodes.php:941
|
4472 |
#, php-format
|
4473 |
msgid "Minimum %s"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: ../includes/mycred-shortcodes.php:945
|
4477 |
#, php-format
|
4478 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: ../includes/mycred-shortcodes.php:951
|
4482 |
msgid "Exchange"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4486 |
#, php-format
|
4487 |
msgid "You must exchange at least %s!"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4491 |
#, php-format
|
4492 |
msgid "Exchange from %s"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4496 |
#, php-format
|
4497 |
msgid "Exchange to %s"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4501 |
#, php-format
|
4502 |
msgid "You have successfully exchanged %s into %s."
|
4503 |
msgstr ""
|
4516 |
msgid "My Balance"
|
4517 |
msgstr "我的余额"
|
4518 |
|
4519 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4520 |
msgid "%plural% History"
|
4521 |
msgstr "%plural% 历史"
|
4522 |
|
4920 |
msgid "Current balance"
|
4921 |
msgstr "当前余额"
|
4922 |
|
4923 |
+
#: ../modules/mycred-module-buddypress.php:347
|
4924 |
msgid "Go"
|
4925 |
msgstr "访问"
|
4926 |
|
4927 |
+
#: ../modules/mycred-module-buddypress.php:403
|
4928 |
msgid "Show in Profile"
|
4929 |
msgstr "显示在个人资料"
|
4930 |
|
4931 |
+
#: ../modules/mycred-module-buddypress.php:418
|
4932 |
#, php-format
|
4933 |
msgid "%singular% Balance"
|
4934 |
msgstr "%singular% 余额"
|
4935 |
|
4936 |
+
#: ../modules/mycred-module-buddypress.php:434
|
4937 |
#, php-format
|
4938 |
msgid "Members and visitors can other members %_singular% balance."
|
4939 |
msgstr "用户和访客可以查看其他用户的 %_singular% 余额。"
|
4940 |
|
4941 |
+
#: ../modules/mycred-module-buddypress.php:442
|
4942 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4943 |
msgstr "请注意,您也可以使用 %rank_logo% 来显示等级的特色图像。"
|
4944 |
|
4945 |
+
#: ../modules/mycred-module-buddypress.php:462
|
4946 |
msgid "Members can view each others %_plural% history."
|
4947 |
msgstr "用户可以查看对方的 %_plural% 历史。"
|
4948 |
|
4949 |
+
#: ../modules/mycred-module-buddypress.php:467
|
4950 |
msgid "Menu Title"
|
4951 |
msgstr "菜单标题"
|
4952 |
|
4953 |
+
#: ../modules/mycred-module-buddypress.php:469
|
4954 |
msgid "Title shown to me"
|
4955 |
msgstr "为我显示的标题"
|
4956 |
|
4957 |
+
#: ../modules/mycred-module-buddypress.php:474
|
4958 |
#, php-format
|
4959 |
msgid "Title shown to others. Use %s to show the first name."
|
4960 |
msgstr "为其他用户显示的标题。使用 %s 来显示名字。"
|
4961 |
|
4962 |
+
#: ../modules/mycred-module-buddypress.php:479
|
4963 |
msgid "Menu Position"
|
4964 |
msgstr "菜单位置"
|
4965 |
|
4966 |
+
#: ../modules/mycred-module-buddypress.php:481
|
4967 |
msgid "Current menu positions:"
|
4968 |
msgstr "当前菜单位置:"
|
4969 |
|
4970 |
+
#: ../modules/mycred-module-buddypress.php:486
|
4971 |
msgid "History URL slug"
|
4972 |
msgstr "历史URL别名"
|
4973 |
|
4974 |
+
#: ../modules/mycred-module-buddypress.php:488
|
4975 |
msgid "Do not use empty spaces!"
|
4976 |
msgstr "不要使用空格!"
|
4977 |
|
4978 |
+
#: ../modules/mycred-module-buddypress.php:493
|
4979 |
msgid "Number of history entries to show"
|
4980 |
msgstr "历史日志条目的显示数量"
|
4981 |
|
5102 |
#: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5103 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5104 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5105 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5106 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5107 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5108 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5109 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5164 |
msgid "%plural% for viewing %s"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5168 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5169 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5170 |
msgid "Limit"
|
5171 |
msgstr "限制"
|
5247 |
msgid "Custom tags: %url%, %title% or %id%."
|
5248 |
msgstr "自定义标签:%url% 、%title% 或 %id%。"
|
5249 |
|
5250 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5251 |
msgid "Note!"
|
5252 |
msgstr "注意!"
|
5253 |
|
5261 |
"如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如果您使用这个函数来 \"共享 "
|
5262 |
"\"内容,建议您通过ID进行限制。"
|
5263 |
|
5264 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5265 |
msgid "Available Shortcode"
|
5266 |
msgstr "可用简码"
|
5267 |
|
5268 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5269 |
msgid "Amount to award for viewing videos."
|
5270 |
msgstr "奖励给观看视频的数量"
|
5271 |
|
5272 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5273 |
msgid "Award Logic"
|
5274 |
msgstr "奖励逻辑"
|
5275 |
|
5276 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5277 |
#, php-format
|
5278 |
msgid "Select when %_plural% should be awarded or deducted."
|
5279 |
msgstr "选择什么时候奖励或扣除 %_plural% 。"
|
5280 |
|
5281 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5282 |
msgid "Play - As soon as video starts playing."
|
5283 |
msgstr "播放 - 当视频开始播放。"
|
5284 |
|
5285 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5286 |
msgid "Full - First when the entire video has played."
|
5287 |
msgstr "完整 - 当整个视频已经播放完。"
|
5288 |
|
5289 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5290 |
msgid "Interval - For each x number of seconds watched."
|
5291 |
msgstr "间隔 - 每个观看了 X 秒。"
|
5292 |
|
5293 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5294 |
msgid "Number of seconds"
|
5295 |
msgstr "秒数"
|
5296 |
|
5297 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5298 |
msgid "Leniency"
|
5299 |
msgstr "宽大"
|
5300 |
|
5301 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5302 |
msgid ""
|
5303 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5304 |
"length."
|
5305 |
msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
|
5306 |
|
5307 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5308 |
msgid ""
|
5309 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5310 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5311 |
"buffering or play back errors."
|
5312 |
msgstr "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,几秒钟就可以删除计数器。"
|
5313 |
|
5314 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5315 |
msgid "Affiliate Program"
|
5316 |
msgstr "联盟计划"
|
5317 |
|
5318 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5319 |
msgid "Per Day"
|
5320 |
msgstr "每天"
|
5321 |
|
5322 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5323 |
msgid "Link"
|
5324 |
msgstr "链接"
|
5325 |
|
5326 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5327 |
+
msgid "Visitors Referred"
|
5328 |
+
msgstr ""
|
5329 |
+
|
5330 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5331 |
+
msgid "Signups Referred"
|
5332 |
+
msgstr ""
|
5333 |
+
|
5334 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5335 |
msgid "Referring Visitors"
|
5336 |
msgstr "推介访客"
|
5337 |
|
5338 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5339 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5340 |
msgstr "每个用户可以推介的人数。使用零为无限。"
|
5341 |
|
5342 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5343 |
msgid "Referring Signups"
|
5344 |
msgstr "推介注册"
|
5345 |
|
5346 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5347 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5348 |
msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
|
5349 |
|
5350 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5351 |
msgid "Registrations are disabled."
|
5352 |
msgstr "注册被禁用。"
|
5353 |
|
5354 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5355 |
msgid "Referral Links"
|
5356 |
msgstr "推介链接"
|
5357 |
|
5358 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5359 |
msgid "Assign numeric referral IDs to each user."
|
5360 |
msgstr "分配数字推介ID给每个用户。"
|
5361 |
|
5362 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5363 |
msgid "Example"
|
5364 |
msgstr "例如"
|
5365 |
|
5366 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5367 |
msgid "Assign usernames as IDs for each user."
|
5368 |
msgstr "分配用户名作为ID给每个用户。"
|
5369 |
|
5370 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5371 |
msgid "IP Limit"
|
5372 |
msgstr "IP限制"
|
5373 |
|
5374 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5375 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5376 |
msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
|
5377 |
|
5378 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5379 |
msgid "BuddyPress Profile"
|
5380 |
msgstr "BuddyPress 个人资料"
|
5381 |
|
5382 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5383 |
msgid "Insert Link in users Profile"
|
5384 |
msgstr "在用户的个人资料插入链接"
|
5385 |
|
5386 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5387 |
msgid ""
|
5388 |
"Option to inser the referral link in users profiles. Links will only be "
|
5389 |
"visible to users viewing their own profiles or administrators."
|
5390 |
msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
|
5391 |
|
5392 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5393 |
msgid "Leave empty to hide."
|
5394 |
msgstr "留空则隐藏。"
|
5395 |
|
5396 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5397 |
msgid "Description"
|
5398 |
msgstr "描述"
|
5399 |
|
5400 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5401 |
msgid "Optional description to insert under the link."
|
5402 |
msgstr "(可选)插入到链接中的描述"
|
5403 |
|
5404 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5405 |
msgid "Profile Positioning"
|
5406 |
msgstr "个人资料定位"
|
5407 |
|
5408 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5409 |
msgid ""
|
5410 |
"You can move around the referral link on your users profile by changing the "
|
5411 |
"position. Increase to move up, decrease to move down."
|
5412 |
msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
|
5413 |
|
5414 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5415 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5416 |
msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
|
5417 |
|
5418 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5419 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5420 |
msgstr "需要启用 BuddyPress 个人资料扩展。"
|
5421 |
|
5422 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5423 |
+
#: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5424 |
msgid "Access denied for this action"
|
5425 |
msgstr "拒绝访问这个动作"
|
5426 |
|
5436 |
msgid "Entry Updated"
|
5437 |
msgstr "项目更新"
|
5438 |
|
5439 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5440 |
msgid "Entries"
|
5441 |
msgstr "条目"
|
5442 |
|
5443 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5444 |
+
#: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5445 |
msgid "Export"
|
5446 |
msgstr "导出"
|
5447 |
|
5488 |
msgstr "我的 %s 历史"
|
5489 |
|
5490 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5491 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5492 |
msgid "Missing point type"
|
5493 |
msgstr "缺失积分类型"
|
5494 |
|
5495 |
+
#: ../modules/mycred-module-settings.php:129
|
5496 |
msgid "Accounts successfully reset"
|
5497 |
msgstr "账户成功重置"
|
5498 |
|
5499 |
+
#: ../modules/mycred-module-settings.php:175
|
5500 |
msgid "No users found to export"
|
5501 |
msgstr "没有找到用户要导出"
|
5502 |
|
5503 |
+
#: ../modules/mycred-module-settings.php:331
|
5504 |
#, php-format
|
5505 |
msgid "%s Settings"
|
5506 |
msgstr "%s 设置"
|
5507 |
|
5508 |
+
#: ../modules/mycred-module-settings.php:334
|
5509 |
msgid "Adjust your core or add-on settings."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: ../modules/mycred-module-settings.php:339
|
5513 |
msgid "Core Settings"
|
5514 |
msgstr "核心设置"
|
5515 |
|
5516 |
+
#: ../modules/mycred-module-settings.php:341
|
5517 |
msgid "Name"
|
5518 |
msgstr "名字"
|
5519 |
|
5520 |
+
#: ../modules/mycred-module-settings.php:346
|
5521 |
#, php-format
|
5522 |
msgid "Accessible though the %singular% template tag."
|
5523 |
msgstr "可通过 %singular% 模板标签访问。"
|
5524 |
|
5525 |
+
#: ../modules/mycred-module-settings.php:351
|
5526 |
msgid "Accessible though the %plural% template tag."
|
5527 |
msgstr "可通过 %plural% 模板标签访问。"
|
5528 |
|
5529 |
+
#: ../modules/mycred-module-settings.php:354
|
5530 |
msgid "Tip"
|
5531 |
msgstr "提示"
|
5532 |
|
5533 |
+
#: ../modules/mycred-module-settings.php:354
|
5534 |
msgid ""
|
5535 |
"Adding an underscore at the beginning of template tag for names will return "
|
5536 |
"them in lowercase. i.e. %_singular%"
|
5537 |
msgstr "在模板标签名字前面添加下划线将返回小写字母。例如 %_singular%"
|
5538 |
|
5539 |
+
#: ../modules/mycred-module-settings.php:372
|
5540 |
msgid "Separator"
|
5541 |
msgid_plural "Separators"
|
5542 |
msgstr[0] "分离器"
|
5543 |
msgstr[1] "分离器"
|
5544 |
|
5545 |
+
#: ../modules/mycred-module-settings.php:379
|
5546 |
msgid "Edit Settings"
|
5547 |
msgstr "编辑设置"
|
5548 |
|
5549 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5550 |
+
#: php:386
|
5551 |
msgid "Capability to check for."
|
5552 |
msgstr "操作能力检查。"
|
5553 |
|
5554 |
+
#: ../modules/mycred-module-settings.php:384
|
5555 |
msgid "Edit Users %plural%"
|
5556 |
msgstr "编辑用户 %plural%"
|
5557 |
|
5558 |
+
#: ../modules/mycred-module-settings.php:408
|
5559 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5560 |
msgstr "逗号分隔的用户id列表将被排除。不允许使用空格!"
|
5561 |
|
5562 |
+
#: ../modules/mycred-module-settings.php:428
|
5563 |
msgid "Management"
|
5564 |
msgstr "管理"
|
5565 |
|
5566 |
+
#: ../modules/mycred-module-settings.php:430
|
5567 |
msgid "The Log"
|
5568 |
msgstr "日志"
|
5569 |
|
5570 |
+
#: ../modules/mycred-module-settings.php:433
|
5571 |
msgid "Table Name"
|
5572 |
msgstr "标签名称"
|
5573 |
|
5574 |
+
#: ../modules/mycred-module-settings.php:442
|
5575 |
msgid "Empty Log"
|
5576 |
msgstr "空日志"
|
5577 |
|
5578 |
+
#: ../modules/mycred-module-settings.php:448
|
5579 |
msgid "User Meta Key"
|
5580 |
msgstr "用户Meta键"
|
5581 |
|
5582 |
+
#: ../modules/mycred-module-settings.php:457
|
5583 |
msgid "Set all to zero"
|
5584 |
msgstr "全部设为零"
|
5585 |
|
5586 |
+
#: ../modules/mycred-module-settings.php:457
|
5587 |
msgid "CSV Export"
|
5588 |
msgstr "CSV导出"
|
5589 |
|
5590 |
+
#: ../modules/mycred-module-settings.php:478
|
5591 |
msgid "Default"
|
5592 |
msgstr "默认"
|
5593 |
|
5594 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5595 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5596 |
msgid "Meta Key"
|
5597 |
msgstr "Meta键"
|
5598 |
|
5599 |
+
#: ../modules/mycred-module-settings.php:519
|
5600 |
msgid "Add New Type"
|
5601 |
msgstr "添加新类型"
|
5602 |
|
5603 |
+
#: ../modules/mycred-module-settings.php:524
|
5604 |
msgid "A unique ID for this type."
|
5605 |
msgstr "给这种类型一个唯一的ID。"
|
5606 |
|
5607 |
+
#: ../modules/mycred-module-settings.php:529
|
5608 |
msgid "Menu and page title."
|
5609 |
msgstr "菜单和页面标题。"
|
5610 |
|
5611 |
+
#: ../modules/mycred-module-settings.php:532
|
5612 |
msgid "The meta key will define where your users balances are saved."
|
5613 |
msgstr "当用户余额被保存时,Meta键将被定义。"
|
5614 |
|
5615 |
+
#: ../modules/mycred-module-settings.php:553
|
5616 |
msgid "Identify users by"
|
5617 |
msgstr "通过什么识别用户"
|
5618 |
|
5619 |
+
#: ../modules/mycred-module-settings.php:559
|
5620 |
msgid "User Email"
|
5621 |
msgstr "用户邮件"
|
5622 |
|
5623 |
+
#: ../modules/mycred-module-settings.php:560
|
5624 |
msgid "User Login"
|
5625 |
msgstr "用户登录"
|
5626 |
|
5627 |
+
#: ../modules/mycred-module-settings.php:567
|
5628 |
msgid ""
|
5629 |
"Use ID if you intend to use this export as a backup of your current site "
|
5630 |
"while Email is recommended if you want to export to a different site."
|
5631 |
msgstr "如果你打算使用这个导出作为当前网站的备份,并且导入到另一个不同的站点的话,推荐使用ID。"
|
5632 |
|
5633 |
+
#: ../modules/mycred-module-settings.php:570
|
5634 |
msgid "Import Log Entry"
|
5635 |
msgstr "导入日志条目"
|
5636 |
|
5637 |
+
#: ../modules/mycred-module-settings.php:572
|
5638 |
#, php-format
|
5639 |
msgid ""
|
5640 |
"Optional log entry to use if you intend to import this file in a different "
|
5641 |
"%s installation."
|
5642 |
msgstr "(可选)使用日志条目,如果你打算在一个不同的 %s 安装中导入这个文件。"
|
5643 |
|
5644 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5645 |
msgid "BadgeOS"
|
5646 |
msgstr "BadgeOS"
|
5647 |
|
5648 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5649 |
msgid ""
|
5650 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5651 |
"overridden for individual achievement type."
|
5652 |
msgstr "为每个 BadgeOS 成就类型的默认设置。这些设置可以被单个成就类型覆盖。"
|
5653 |
|
5654 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5655 |
#, php-format
|
5656 |
msgid ""
|
5657 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5658 |
"feature."
|
5659 |
msgstr "在使用这个功能前,请设置您的 <a href=\"%s\">默认设置</a>。"
|
5660 |
|
5661 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5662 |
msgid "%plural% to Award"
|
5663 |
msgstr "%plural% 要奖励"
|
5664 |
|
5665 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5666 |
msgid "Use zero to disable"
|
5667 |
msgstr "使用零禁用"
|
5668 |
|
5669 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5670 |
msgid "Deduction Log Template"
|
5671 |
msgstr "扣除日志模板"
|
5672 |
|
5673 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5674 |
#, php-format
|
5675 |
msgid "Default %s for %s"
|
5676 |
msgstr "%s 的默认 %s"
|
5677 |
|
5678 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5679 |
msgid "Use zero to disable users gaining %_plural%"
|
5680 |
msgstr "使用零来禁用用户获得 %_plural%"
|
5681 |
|
5682 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5683 |
msgid "Default Log template"
|
5684 |
msgstr "默认日志模板"
|
5685 |
|
lang/mycred.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: myCRED\n"
|
6 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
7 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
8 |
-
"POT-Revision-Date:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
|
11 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
@@ -26,88 +26,88 @@ msgstr ""
|
|
26 |
"content/plugins/mycred\n"
|
27 |
"X-Poedit-SearchPath-1: ."
|
28 |
|
29 |
-
#: ../mycred.php:
|
30 |
msgid "Balance"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../mycred.php:
|
34 |
msgid "%label% History"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../mycred.php:
|
38 |
#, php-format
|
39 |
msgid "About %s"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../mycred.php:
|
43 |
msgid "Awesome People"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../mycred.php:
|
47 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
48 |
#: /addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
49 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
50 |
-
#: /includes/mycred-shortcodes.php:
|
51 |
msgid "Processing..."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../mycred.php:
|
55 |
msgid ""
|
56 |
"Warning! All entries in your log will be permanently removed! This can not "
|
57 |
"be undone!"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../mycred.php:
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../mycred.php:
|
67 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../mycred.php:
|
71 |
msgid "Done!"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../mycred.php:
|
75 |
msgid "Close"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../mycred.php:
|
79 |
msgid "Export users %plural%"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../mycred.php:
|
83 |
msgid "Edit Users Balance"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../mycred.php:
|
87 |
msgid "Edit Log Entry"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../mycred.php:
|
91 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../mycred.php:
|
95 |
msgid "Log entry updated"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../mycred.php:
|
99 |
-
#: notices.php:
|
100 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
101 |
msgid "Setup"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../mycred.php:
|
105 |
#: /includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
106 |
#: /modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
107 |
msgid "Settings"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../mycred.php:
|
111 |
msgid ""
|
112 |
"Make sure to backup your database and files before updating, in case "
|
113 |
"anything goes wrong!"
|
@@ -145,10 +145,10 @@ msgstr ""
|
|
145 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
146 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
147 |
#: /addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
148 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
149 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:
|
150 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
151 |
-
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:
|
152 |
msgid "Select"
|
153 |
msgstr ""
|
154 |
|
@@ -248,7 +248,7 @@ msgid "Requirements"
|
|
248 |
msgstr ""
|
249 |
|
250 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
251 |
-
#: ranks.php:618 ../modules/mycred-module-settings.php:
|
252 |
msgid "Users"
|
253 |
msgstr ""
|
254 |
|
@@ -331,22 +331,22 @@ msgstr ""
|
|
331 |
|
332 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
333 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
334 |
-
#: /modules/mycred-module-buddypress.php:
|
335 |
msgid "Do not show"
|
336 |
msgstr ""
|
337 |
|
338 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
339 |
-
#: buddypress.php:
|
340 |
msgid "Include in Profile Header"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
344 |
-
#: ranks.php:860 ../modules/mycred-module-buddypress.php:
|
345 |
msgid "Include under the \"Profile\" tab"
|
346 |
msgstr ""
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
349 |
-
#: buddypress.php:
|
350 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
351 |
msgstr ""
|
352 |
|
@@ -415,7 +415,7 @@ msgstr ""
|
|
415 |
#: /includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
416 |
#: /modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
417 |
#: /modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
418 |
-
#: /modules/mycred-module-settings.php:
|
419 |
msgid "Access Denied"
|
420 |
msgstr ""
|
421 |
|
@@ -566,8 +566,8 @@ msgstr ""
|
|
566 |
#: /addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
567 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
568 |
#: /modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
569 |
-
#: /modules/mycred-module-hooks.php:
|
570 |
-
#: /plugins/mycred-hook-badgeOS.php:
|
571 |
#: /plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
572 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
573 |
#: /plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
@@ -664,15 +664,15 @@ msgstr ""
|
|
664 |
|
665 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
666 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
667 |
-
#: creds.php:
|
668 |
#: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
669 |
#: /includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
670 |
-
#: /includes/mycred-shortcodes.php:
|
671 |
msgid "Amount"
|
672 |
msgstr ""
|
673 |
|
674 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
675 |
-
#: /modules/mycred-module-hooks.php:
|
676 |
msgid "Interval"
|
677 |
msgstr ""
|
678 |
|
@@ -720,7 +720,7 @@ msgid "Edit Pending Payment"
|
|
720 |
msgstr ""
|
721 |
|
722 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
723 |
-
#: addon-buy-creds.php:
|
724 |
msgid "No pending payments found"
|
725 |
msgstr ""
|
726 |
|
@@ -729,23 +729,23 @@ msgid "Not found in Trash"
|
|
729 |
msgstr ""
|
730 |
|
731 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
732 |
-
#: addon-buy-creds.php:
|
733 |
msgid "Transaction ID"
|
734 |
msgstr ""
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
737 |
-
#: addon-buy-creds.php:
|
738 |
msgid "Buyer"
|
739 |
msgstr ""
|
740 |
|
741 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
742 |
-
#: addon-buy-creds.php:
|
743 |
#: gateway.php:563
|
744 |
msgid "Cost"
|
745 |
msgstr ""
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
748 |
-
#: addon-buy-creds.php:
|
749 |
#: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
750 |
msgid "Gateway"
|
751 |
msgstr ""
|
@@ -794,7 +794,7 @@ msgstr ""
|
|
794 |
|
795 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
796 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
797 |
-
#: module-settings.php:
|
798 |
msgid "Point Types"
|
799 |
msgstr ""
|
800 |
|
@@ -847,7 +847,7 @@ msgid "Allow users to buy %_plural% for content authors."
|
|
847 |
msgstr ""
|
848 |
|
849 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
850 |
-
#: hooks.php:
|
851 |
msgid "Available Shortcodes"
|
852 |
msgstr ""
|
853 |
|
@@ -874,7 +874,7 @@ msgid "%s Payment Gateways"
|
|
874 |
msgstr ""
|
875 |
|
876 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
877 |
-
#: addon-buy-creds.php:
|
878 |
msgid "buyCRED Settings"
|
879 |
msgstr ""
|
880 |
|
@@ -899,7 +899,7 @@ msgid "Enable for test purchases."
|
|
899 |
msgstr ""
|
900 |
|
901 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
902 |
-
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:
|
903 |
msgid "Update Settings"
|
904 |
msgstr ""
|
905 |
|
@@ -907,101 +907,101 @@ msgstr ""
|
|
907 |
msgid "More Gateways"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
911 |
#: 634
|
912 |
msgid "Date"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
916 |
msgid "Payed"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
920 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
924 |
#: booking/mycred-eventespresso3.php:367
|
925 |
msgid "Gateway Settings"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
929 |
-
#: content/myCRED-addon-sell-content.php:
|
930 |
msgid "No purchases found"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
934 |
-
#: addon-buy-creds.php:
|
935 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
939 |
-
#: addon-buy-creds.php:
|
940 |
msgid "No gateways installed."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
944 |
-
#: addon-buy-creds.php:
|
945 |
msgid "Gateway does not exist."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
949 |
msgid "Yourself"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
953 |
msgid "No active gateways found."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
957 |
msgid "The selected gateway is not active."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
961 |
#, php-format
|
962 |
msgid "Buy with %gateway%"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
966 |
#: content/myCRED-addon-sell-content.php:44
|
967 |
msgid "Buy Now"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
971 |
msgid "No users found"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
975 |
msgid "To"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
979 |
msgid "Select Amount"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
983 |
msgid "min."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
987 |
msgid "Select Gateway"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
991 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
992 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
993 |
#: php:35
|
994 |
msgid "Pay Now"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
998 |
-
#: php:
|
999 |
msgid "Cancel"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:
|
1003 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1004 |
-
#: module-settings.php:
|
1005 |
msgid "Actions"
|
1006 |
msgstr ""
|
1007 |
|
@@ -1141,55 +1141,55 @@ msgstr ""
|
|
1141 |
msgid "The following information will be sent to the gateway"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1145 |
msgid "Outside US"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1149 |
msgid "January"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1153 |
msgid "February"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1157 |
msgid "March"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1161 |
msgid "April"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1165 |
msgid "May"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1169 |
msgid "June"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1173 |
msgid "July"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1177 |
msgid "August"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1181 |
msgid "September"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1185 |
msgid "October"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1189 |
msgid "November"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:
|
1193 |
msgid "December"
|
1194 |
msgstr ""
|
1195 |
|
@@ -1428,7 +1428,7 @@ msgstr ""
|
|
1428 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1429 |
#: /addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1430 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1431 |
-
#: /modules/mycred-module-hooks.php:
|
1432 |
msgid "Title"
|
1433 |
msgstr ""
|
1434 |
|
@@ -1616,7 +1616,7 @@ msgid "not yet used"
|
|
1616 |
msgstr ""
|
1617 |
|
1618 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1619 |
-
#: php:
|
1620 |
msgid "Total"
|
1621 |
msgstr ""
|
1622 |
|
@@ -1778,7 +1778,7 @@ msgid "Apply Coupon"
|
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1781 |
-
#: notices/myCRED-addon-email-notices.php:
|
1782 |
msgid "Email Notice"
|
1783 |
msgstr ""
|
1784 |
|
@@ -1963,17 +1963,17 @@ msgid ""
|
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1966 |
-
#: notices/myCRED-addon-email-notices.php:
|
1967 |
msgid "Email Settings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1971 |
-
#: notices/myCRED-addon-email-notices.php:
|
1972 |
msgid "Senders Name:"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1976 |
-
#: notices/myCRED-addon-email-notices.php:
|
1977 |
msgid "Senders Email:"
|
1978 |
msgstr ""
|
1979 |
|
@@ -1997,167 +1997,167 @@ msgstr ""
|
|
1997 |
msgid "Ignored if HTML is not allowed in emails."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2001 |
-
#: notices/myCRED-addon-email-notices.php:
|
2002 |
msgid "Email Subject"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2006 |
msgid "Status"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2010 |
msgid "Not Active"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2014 |
#, php-format
|
2015 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2019 |
msgid "Active"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2023 |
#, php-format
|
2024 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2028 |
msgid "Email is sent when"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2032 |
msgid "Missing instance for this notice!"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2036 |
-
#: notices/myCRED-addon-email-notices.php:
|
2037 |
-
#: addon-email-notices.php:
|
2038 |
msgid "Sent To"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2042 |
-
#: notices/myCRED-addon-email-notices.php:
|
2043 |
#: /includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2044 |
msgid "User"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2048 |
-
#: notices/myCRED-addon-email-notices.php:
|
2049 |
msgid "Administrator"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2053 |
msgid "Both Administrator and User"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2057 |
msgid "Available Template Tags"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2061 |
msgid "Email Header"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2065 |
msgid "Send this email notice when..."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2069 |
msgid "Recipient:"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2073 |
msgid "Both"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2077 |
#: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2078 |
-
#: settings.php:
|
2079 |
-
#: module-settings.php:
|
2080 |
msgid "Label"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2084 |
msgid "Reply-To Email:"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2088 |
msgid "Save"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2092 |
msgid "CSS Styling"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2096 |
msgid "Site Related"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2100 |
msgid "Your websites title"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2104 |
msgid "Your websites address"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2108 |
msgid "Your websites tagline (description)"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2112 |
msgid "Your websites admin email"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2116 |
msgid "Total number of blog members"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2120 |
-
#: notices/myCRED-addon-email-notices.php:
|
2121 |
-
#: addon-email-notices.php:
|
2122 |
msgid "Email Notice Updated."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2126 |
msgid "Email Notice Activated"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2130 |
msgid "Email Notice Saved"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2134 |
msgid ""
|
2135 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2136 |
"are not yet ready to use this email notice!"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2140 |
#, php-format
|
2141 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2145 |
msgid "This email notice is active."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2149 |
msgid "Settings saved."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2153 |
msgid "Unsubscribe"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2157 |
msgid "There are no email notifications yet."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:
|
2161 |
msgid "Save Changes"
|
2162 |
msgstr ""
|
2163 |
|
@@ -2204,7 +2204,7 @@ msgstr ""
|
|
2204 |
|
2205 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2206 |
#: /addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2207 |
-
#: 52 ../includes/mycred-network.php:53
|
2208 |
msgid "myCRED"
|
2209 |
msgstr ""
|
2210 |
|
@@ -2278,7 +2278,7 @@ msgstr ""
|
|
2278 |
#: /addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2279 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2280 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2281 |
-
#: php:578 ../includes/mycred-shortcodes.php:
|
2282 |
msgid "Exchange Rate"
|
2283 |
msgstr ""
|
2284 |
|
@@ -2565,7 +2565,7 @@ msgstr ""
|
|
2565 |
#: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2566 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2567 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2568 |
-
#: sell-content.php:
|
2569 |
msgid "Button Label"
|
2570 |
msgstr ""
|
2571 |
|
@@ -2579,7 +2579,7 @@ msgstr ""
|
|
2579 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2580 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2581 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2582 |
-
#: sell-content.php:
|
2583 |
msgid "Price"
|
2584 |
msgstr ""
|
2585 |
|
@@ -2680,8 +2680,8 @@ msgid "Reject"
|
|
2680 |
msgstr ""
|
2681 |
|
2682 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2683 |
-
#: /modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:
|
2684 |
-
#: /modules/mycred-module-settings.php:
|
2685 |
msgid "Delete"
|
2686 |
msgstr ""
|
2687 |
|
@@ -2798,7 +2798,7 @@ msgid "Use the included CSS Styling for notifications."
|
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2801 |
-
#: module-buddypress.php:
|
2802 |
msgid "Template"
|
2803 |
msgstr ""
|
2804 |
|
@@ -3058,7 +3058,7 @@ msgid ""
|
|
3058 |
msgstr ""
|
3059 |
|
3060 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3061 |
-
#: php:
|
3062 |
msgid "Do not show."
|
3063 |
msgstr ""
|
3064 |
|
@@ -3108,9 +3108,9 @@ msgid "No users found with this rank"
|
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3111 |
-
#: shortcodes.php:
|
3112 |
-
#: shortcodes.php:
|
3113 |
-
#: shortcodes.php:
|
3114 |
msgid "error"
|
3115 |
msgstr ""
|
3116 |
|
@@ -3231,38 +3231,38 @@ msgstr ""
|
|
3231 |
msgid "%s Sell This"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3235 |
#, php-format
|
3236 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3240 |
msgid "Setup add-on"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3244 |
msgid "Lets do it"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3248 |
#, php-format
|
3249 |
msgid "Enable sale of this %s"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3253 |
msgid "Purchase expires after"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3257 |
msgid "Thank you for your purchase!"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3261 |
-
#: content/myCRED-addon-sell-content.php:
|
3262 |
msgid "The following content is set for sale:"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:
|
3266 |
msgid "Purchased"
|
3267 |
msgstr ""
|
3268 |
|
@@ -3275,7 +3275,7 @@ msgid "You have exceeded your %limit% transfer limit."
|
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3278 |
-
#: php:
|
3279 |
msgid "Transfer"
|
3280 |
msgstr ""
|
3281 |
|
@@ -3310,7 +3310,7 @@ msgid ""
|
|
3310 |
msgstr ""
|
3311 |
|
3312 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3313 |
-
#: php:
|
3314 |
msgid "Insufficient Funds. Please try a lower amount."
|
3315 |
msgstr ""
|
3316 |
|
@@ -3677,282 +3677,282 @@ msgstr ""
|
|
3677 |
msgid "My Entire Log"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: ../includes/mycred-functions.php:
|
3681 |
msgid "ref empty"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: ../includes/mycred-functions.php:
|
3685 |
msgid "incorrect user id format"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: ../includes/mycred-functions.php:
|
3689 |
msgid "incorrect unix timestamp (from):"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: ../includes/mycred-functions.php:
|
3693 |
msgid "incorrect unix timestamp (to):"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#: ../includes/mycred-functions.php:
|
3697 |
msgid "Website Registration"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: ../includes/mycred-functions.php:
|
3701 |
msgid "Website Visit"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#: ../includes/mycred-functions.php:
|
3705 |
msgid "Viewing Content (Member)"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: ../includes/mycred-functions.php:
|
3709 |
msgid "Viewing Content (Author)"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: ../includes/mycred-functions.php:
|
3713 |
msgid "Logging in"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: ../includes/mycred-functions.php:
|
3717 |
msgid "Publishing Content"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: ../includes/mycred-functions.php:
|
3721 |
msgid "Approved Comment"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#: ../includes/mycred-functions.php:
|
3725 |
msgid "Unapproved Comment"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: ../includes/mycred-functions.php:
|
3729 |
msgid "SPAM Comment"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: ../includes/mycred-functions.php:
|
3733 |
msgid "Deleted Comment"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: ../includes/mycred-functions.php:
|
3737 |
msgid "Link Click"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: ../includes/mycred-functions.php:
|
3741 |
msgid "Watching Video"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: ../includes/mycred-functions.php:
|
3745 |
msgid "Visitor Referral"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: ../includes/mycred-functions.php:
|
3749 |
msgid "Signup Referral"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: ../includes/mycred-functions.php:
|
3753 |
msgid "New Profile Update"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
-
#: ../includes/mycred-functions.php:
|
3757 |
msgid "Avatar Upload"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: ../includes/mycred-functions.php:
|
3761 |
msgid "New Friendship"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: ../includes/mycred-functions.php:
|
3765 |
msgid "Ended Friendship"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: ../includes/mycred-functions.php:
|
3769 |
msgid "New Profile Comment"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: ../includes/mycred-functions.php:
|
3773 |
msgid "Profile Comment Deletion"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: ../includes/mycred-functions.php:
|
3777 |
msgid "New Message"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: ../includes/mycred-functions.php:
|
3781 |
msgid "Sending Gift"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: ../includes/mycred-functions.php:
|
3785 |
msgid "New Group"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: ../includes/mycred-functions.php:
|
3789 |
msgid "Deleted Group"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: ../includes/mycred-functions.php:
|
3793 |
msgid "New Group Forum Topic"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: ../includes/mycred-functions.php:
|
3797 |
msgid "Edit Group Forum Topic"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: ../includes/mycred-functions.php:
|
3801 |
msgid "New Group Forum Post"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: ../includes/mycred-functions.php:
|
3805 |
msgid "Edit Group Forum Post"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: ../includes/mycred-functions.php:
|
3809 |
msgid "Joining Group"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: ../includes/mycred-functions.php:
|
3813 |
msgid "Leaving Group"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: ../includes/mycred-functions.php:
|
3817 |
msgid "New Group Avatar"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: ../includes/mycred-functions.php:
|
3821 |
msgid "New Group Comment"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: ../includes/mycred-functions.php:
|
3825 |
#: php:166
|
3826 |
msgid "Photo Upload"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: ../includes/mycred-functions.php:
|
3830 |
#: php:176
|
3831 |
msgid "Video Upload"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: ../includes/mycred-functions.php:
|
3835 |
#: php:186
|
3836 |
msgid "Music Upload"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: ../includes/mycred-functions.php:
|
3840 |
msgid "New Link"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: ../includes/mycred-functions.php:
|
3844 |
msgid "Link Voting"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
-
#: ../includes/mycred-functions.php:
|
3848 |
msgid "Link Update"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: ../includes/mycred-functions.php:
|
3852 |
msgid "New Forum (bbPress)"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: ../includes/mycred-functions.php:
|
3856 |
msgid "New Forum Topic (bbPress)"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: ../includes/mycred-functions.php:
|
3860 |
msgid "Favorited Topic (bbPress)"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: ../includes/mycred-functions.php:
|
3864 |
msgid "New Topic Reply (bbPress)"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: ../includes/mycred-functions.php:
|
3868 |
msgid "Form Submission (Contact Form 7)"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: ../includes/mycred-functions.php:
|
3872 |
msgid "Form Submission (Gravity Form)"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: ../includes/mycred-functions.php:
|
3876 |
msgid "New Forum Topic (SimplePress)"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: ../includes/mycred-functions.php:
|
3880 |
msgid "New Forum Post (SimplePress)"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: ../includes/mycred-functions.php:
|
3884 |
msgid "Poll Voting"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: ../includes/mycred-functions.php:
|
3888 |
msgid "Sending an Invite"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: ../includes/mycred-functions.php:
|
3892 |
msgid "Accepting an Invite"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: ../includes/mycred-functions.php:
|
3896 |
msgid "Banking Payout"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: ../includes/mycred-functions.php:
|
3900 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: ../includes/mycred-functions.php:
|
3904 |
msgid "buyCRED Purchase (Skrill)"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: ../includes/mycred-functions.php:
|
3908 |
msgid "buyCRED Purchase (Zombaio)"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: ../includes/mycred-functions.php:
|
3912 |
msgid "buyCRED Purchase (NETBilling)"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: ../includes/mycred-functions.php:
|
3916 |
msgid "buyCRED Purchase (BitPay)"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: ../includes/mycred-functions.php:
|
3920 |
msgid "Coupon Purchase"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: ../includes/mycred-functions.php:
|
3924 |
msgid "Store Purchase (WooCommerce)"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: ../includes/mycred-functions.php:
|
3928 |
msgid "Store Purchase (MarketPress)"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: ../includes/mycred-functions.php:
|
3932 |
msgid "Store Purchase (WP E-Commerce)"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: ../includes/mycred-functions.php:
|
3936 |
msgid "Event Payment (Event Espresso)"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: ../includes/mycred-functions.php:
|
3940 |
msgid "Event Sale (Event Espresso)"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: ../includes/mycred-functions.php:
|
3944 |
msgid "Event Payment (Events Manager)"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: ../includes/mycred-functions.php:
|
3948 |
msgid "Event Sale (Events Manager)"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: ../includes/mycred-functions.php:
|
3952 |
msgid "Content Purchase / Sale"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: ../includes/mycred-functions.php:
|
3956 |
msgid "Manual Adjustment by Admin"
|
3957 |
msgstr ""
|
3958 |
|
@@ -4000,115 +4000,115 @@ msgstr ""
|
|
4000 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: ../includes/mycred-install.php:
|
4004 |
msgid ""
|
4005 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4006 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4007 |
"for you!"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: ../includes/mycred-install.php:
|
4011 |
msgid ""
|
4012 |
"Sorry but your WordPress installation does not reach the minimum "
|
4013 |
"requirements for running myCRED. The following errors were given:"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: ../includes/mycred-install.php:
|
4017 |
msgid "myCRED needs your attention."
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: ../includes/mycred-install.php:
|
4021 |
msgid "Run Setup"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: ../includes/mycred-install.php:
|
4025 |
msgid "myCRED Setup"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: ../includes/mycred-install.php:
|
4029 |
#, php-format
|
4030 |
msgid "%s Setup"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: ../includes/mycred-install.php:
|
4034 |
msgid "Step"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: ../includes/mycred-install.php:
|
4038 |
msgid ""
|
4039 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4040 |
"points format, layout and security settings."
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: ../includes/mycred-install.php:
|
4044 |
msgid "Begin Setup"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: ../includes/mycred-install.php:
|
4048 |
msgid "Select the format you want to use for your points."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: ../includes/mycred-install.php:
|
4052 |
msgid "Format"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: ../includes/mycred-install.php:
|
4056 |
msgid "Separators"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: ../includes/mycred-install.php:
|
4060 |
msgid "Decimals"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: ../includes/mycred-install.php:
|
4064 |
msgid "Use zero for no decimals."
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: ../includes/mycred-install.php:
|
4068 |
msgid "Presentation"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: ../includes/mycred-install.php:
|
4072 |
msgid "Name (Singular)"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: ../includes/mycred-install.php:
|
4076 |
msgid "Name (Plural)"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: ../includes/mycred-install.php:
|
4080 |
msgid "Prefix"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: ../includes/mycred-install.php:
|
4084 |
msgid "Suffix"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: ../includes/mycred-install.php:
|
4088 |
msgid "Cancel Setup"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: ../includes/mycred-install.php:
|
4092 |
msgid "Next"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: ../includes/mycred-install.php:
|
4096 |
msgid "Security"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: ../includes/mycred-install.php:
|
4100 |
msgid "Edit Settings Capability"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: ../includes/mycred-install.php:
|
4104 |
msgid "Edit Users %plural% Capability"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: ../includes/mycred-install.php:
|
4108 |
msgid "Maximum %plural% payouts"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: ../includes/mycred-install.php:
|
4112 |
msgid ""
|
4113 |
"As an added security, you can set the maximum amount a user can gain or "
|
4114 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
@@ -4116,39 +4116,39 @@ msgid ""
|
|
4116 |
"disable."
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: ../includes/mycred-install.php:
|
4120 |
msgid "Excludes"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: ../includes/mycred-install.php:
|
4124 |
msgid "Exclude those who can \"Edit Settings\"."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: ../includes/mycred-install.php:
|
4128 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: ../includes/mycred-install.php:
|
4132 |
msgid "Exclude the following user IDs:"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: ../includes/mycred-install.php:
|
4136 |
msgid "User Deletions"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: ../includes/mycred-install.php:
|
4140 |
msgid "Delete log entries when user is deleted."
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: ../includes/mycred-install.php:
|
4144 |
msgid "Ready"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: ../includes/mycred-install.php:
|
4148 |
msgid "Almost done! Click the button below to finish this setup."
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: ../includes/mycred-install.php:
|
4152 |
msgid "Install & Run"
|
4153 |
msgstr ""
|
4154 |
|
@@ -4161,29 +4161,29 @@ msgstr ""
|
|
4161 |
msgid "entry"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: ../includes/mycred-log.php:
|
4165 |
msgid "Go to the first page"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: ../includes/mycred-log.php:
|
4169 |
msgid "Go to the previous page"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: ../includes/mycred-log.php:
|
4173 |
msgid "Current page"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: ../includes/mycred-log.php:
|
4177 |
#, php-format
|
4178 |
msgctxt "paging"
|
4179 |
msgid "%1$s of %2$s"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: ../includes/mycred-log.php:
|
4183 |
msgid "Go to the next page"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: ../includes/mycred-log.php:
|
4187 |
msgid "Go to the last page"
|
4188 |
msgstr ""
|
4189 |
|
@@ -4191,7 +4191,7 @@ msgstr ""
|
|
4191 |
msgid "Show all references"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:
|
4195 |
msgid "User ID"
|
4196 |
msgstr ""
|
4197 |
|
@@ -4405,92 +4405,92 @@ msgid ""
|
|
4405 |
"about your setup!"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: ../includes/mycred-shortcodes.php:
|
4409 |
msgid "Leaderboard is empty."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: ../includes/mycred-shortcodes.php:
|
4413 |
msgid "Amount missing!"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: ../includes/mycred-shortcodes.php:
|
4417 |
msgid "Log Template Missing!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: ../includes/mycred-shortcodes.php:
|
4421 |
msgid "Anchor missing URL!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: ../includes/mycred-shortcodes.php:
|
4425 |
msgid "User ID missing for recipient."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: ../includes/mycred-shortcodes.php:
|
4429 |
msgid "Sent"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: ../includes/mycred-shortcodes.php:
|
4433 |
msgid "Error - Try Again"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: ../includes/mycred-shortcodes.php:
|
4437 |
msgid "A video ID is required for this shortcode"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: ../includes/mycred-shortcodes.php:
|
4441 |
msgid "Point types not found."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: ../includes/mycred-shortcodes.php:
|
4445 |
-
#: /includes/mycred-shortcodes.php:
|
4446 |
#, php-format
|
4447 |
msgid "You are excluded from using %s."
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: ../includes/mycred-shortcodes.php:
|
4451 |
msgid "Your balance is too low to use this feature."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: ../includes/mycred-shortcodes.php:
|
4455 |
#, php-format
|
4456 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#: ../includes/mycred-shortcodes.php:
|
4460 |
#, php-format
|
4461 |
msgid "Your current %s balance"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: ../includes/mycred-shortcodes.php:
|
4465 |
#, php-format
|
4466 |
msgid "Minimum %s"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: ../includes/mycred-shortcodes.php:
|
4470 |
#, php-format
|
4471 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: ../includes/mycred-shortcodes.php:
|
4475 |
msgid "Exchange"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: ../includes/mycred-shortcodes.php:
|
4479 |
#, php-format
|
4480 |
msgid "You must exchange at least %s!"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: ../includes/mycred-shortcodes.php:
|
4484 |
#, php-format
|
4485 |
msgid "Exchange from %s"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: ../includes/mycred-shortcodes.php:
|
4489 |
#, php-format
|
4490 |
msgid "Exchange to %s"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: ../includes/mycred-shortcodes.php:
|
4494 |
#, php-format
|
4495 |
msgid "You have successfully exchanged %s into %s."
|
4496 |
msgstr ""
|
@@ -4509,7 +4509,7 @@ msgstr ""
|
|
4509 |
msgid "My Balance"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:
|
4513 |
msgid "%plural% History"
|
4514 |
msgstr ""
|
4515 |
|
@@ -4909,62 +4909,62 @@ msgstr ""
|
|
4909 |
msgid "Current balance"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: ../modules/mycred-module-buddypress.php:
|
4913 |
msgid "Go"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: ../modules/mycred-module-buddypress.php:
|
4917 |
msgid "Show in Profile"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: ../modules/mycred-module-buddypress.php:
|
4921 |
#, php-format
|
4922 |
msgid "%singular% Balance"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: ../modules/mycred-module-buddypress.php:
|
4926 |
#, php-format
|
4927 |
msgid "Members and visitors can other members %_singular% balance."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: ../modules/mycred-module-buddypress.php:
|
4931 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: ../modules/mycred-module-buddypress.php:
|
4935 |
msgid "Members can view each others %_plural% history."
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#: ../modules/mycred-module-buddypress.php:
|
4939 |
msgid "Menu Title"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: ../modules/mycred-module-buddypress.php:
|
4943 |
msgid "Title shown to me"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: ../modules/mycred-module-buddypress.php:
|
4947 |
#, php-format
|
4948 |
msgid "Title shown to others. Use %s to show the first name."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: ../modules/mycred-module-buddypress.php:
|
4952 |
msgid "Menu Position"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: ../modules/mycred-module-buddypress.php:
|
4956 |
msgid "Current menu positions:"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: ../modules/mycred-module-buddypress.php:
|
4960 |
msgid "History URL slug"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: ../modules/mycred-module-buddypress.php:
|
4964 |
msgid "Do not use empty spaces!"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: ../modules/mycred-module-buddypress.php:
|
4968 |
msgid "Number of history entries to show"
|
4969 |
msgstr ""
|
4970 |
|
@@ -5091,8 +5091,8 @@ msgstr ""
|
|
5091 |
#: /modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5092 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5093 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5094 |
-
#:
|
5095 |
-
#: php:
|
5096 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5097 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5098 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
@@ -5153,8 +5153,8 @@ msgstr ""
|
|
5153 |
msgid "%plural% for viewing %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:
|
5157 |
-
#: ../modules/mycred-module-hooks.php:
|
5158 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5159 |
msgid "Limit"
|
5160 |
msgstr ""
|
@@ -5236,7 +5236,7 @@ msgstr ""
|
|
5236 |
msgid "Custom tags: %url%, %title% or %id%."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:
|
5240 |
msgid "Note!"
|
5241 |
msgstr ""
|
5242 |
|
@@ -5248,158 +5248,166 @@ msgid ""
|
|
5248 |
"by ID."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:
|
5252 |
msgid "Available Shortcode"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: ../modules/mycred-module-hooks.php:
|
5256 |
msgid "Amount to award for viewing videos."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: ../modules/mycred-module-hooks.php:
|
5260 |
msgid "Award Logic"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: ../modules/mycred-module-hooks.php:
|
5264 |
#, php-format
|
5265 |
msgid "Select when %_plural% should be awarded or deducted."
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: ../modules/mycred-module-hooks.php:
|
5269 |
msgid "Play - As soon as video starts playing."
|
5270 |
msgstr ""
|
5271 |
|
5272 |
-
#: ../modules/mycred-module-hooks.php:
|
5273 |
msgid "Full - First when the entire video has played."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#: ../modules/mycred-module-hooks.php:
|
5277 |
msgid "Interval - For each x number of seconds watched."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: ../modules/mycred-module-hooks.php:
|
5281 |
msgid "Number of seconds"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: ../modules/mycred-module-hooks.php:
|
5285 |
msgid "Leniency"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: ../modules/mycred-module-hooks.php:
|
5289 |
msgid ""
|
5290 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5291 |
"length."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: ../modules/mycred-module-hooks.php:
|
5295 |
msgid ""
|
5296 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5297 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5298 |
"buffering or play back errors."
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: ../modules/mycred-module-hooks.php:
|
5302 |
msgid "Affiliate Program"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: ../modules/mycred-module-hooks.php:
|
5306 |
msgid "Per Day"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: ../modules/mycred-module-hooks.php:
|
5310 |
msgid "Link"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: ../modules/mycred-module-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5314 |
msgid "Referring Visitors"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: ../modules/mycred-module-hooks.php:
|
5318 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: ../modules/mycred-module-hooks.php:
|
5322 |
msgid "Referring Signups"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: ../modules/mycred-module-hooks.php:
|
5326 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: ../modules/mycred-module-hooks.php:
|
5330 |
msgid "Registrations are disabled."
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: ../modules/mycred-module-hooks.php:
|
5334 |
msgid "Referral Links"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: ../modules/mycred-module-hooks.php:
|
5338 |
msgid "Assign numeric referral IDs to each user."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: ../modules/mycred-module-hooks.php:
|
5342 |
msgid "Example"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: ../modules/mycred-module-hooks.php:
|
5346 |
msgid "Assign usernames as IDs for each user."
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: ../modules/mycred-module-hooks.php:
|
5350 |
msgid "IP Limit"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: ../modules/mycred-module-hooks.php:
|
5354 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: ../modules/mycred-module-hooks.php:
|
5358 |
msgid "BuddyPress Profile"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: ../modules/mycred-module-hooks.php:
|
5362 |
msgid "Insert Link in users Profile"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: ../modules/mycred-module-hooks.php:
|
5366 |
msgid ""
|
5367 |
"Option to inser the referral link in users profiles. Links will only be "
|
5368 |
"visible to users viewing their own profiles or administrators."
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: ../modules/mycred-module-hooks.php:
|
5372 |
msgid "Leave empty to hide."
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: ../modules/mycred-module-hooks.php:
|
5376 |
msgid "Description"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: ../modules/mycred-module-hooks.php:
|
5380 |
msgid "Optional description to insert under the link."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#: ../modules/mycred-module-hooks.php:
|
5384 |
msgid "Profile Positioning"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: ../modules/mycred-module-hooks.php:
|
5388 |
msgid ""
|
5389 |
"You can move around the referral link on your users profile by changing the "
|
5390 |
"position. Increase to move up, decrease to move down."
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: ../modules/mycred-module-hooks.php:
|
5394 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: ../modules/mycred-module-hooks.php:
|
5398 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5402 |
-
#: /modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:
|
5403 |
msgid "Access denied for this action"
|
5404 |
msgstr ""
|
5405 |
|
@@ -5415,12 +5423,12 @@ msgstr ""
|
|
5415 |
msgid "Entry Updated"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:
|
5419 |
msgid "Entries"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5423 |
-
#: /modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:
|
5424 |
msgid "Export"
|
5425 |
msgstr ""
|
5426 |
|
@@ -5467,196 +5475,196 @@ msgid "My %s History"
|
|
5467 |
msgstr ""
|
5468 |
|
5469 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5470 |
-
#:
|
5471 |
msgid "Missing point type"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: ../modules/mycred-module-settings.php:
|
5475 |
msgid "Accounts successfully reset"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: ../modules/mycred-module-settings.php:
|
5479 |
msgid "No users found to export"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: ../modules/mycred-module-settings.php:
|
5483 |
#, php-format
|
5484 |
msgid "%s Settings"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: ../modules/mycred-module-settings.php:
|
5488 |
msgid "Adjust your core or add-on settings."
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: ../modules/mycred-module-settings.php:
|
5492 |
msgid "Core Settings"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: ../modules/mycred-module-settings.php:
|
5496 |
msgid "Name"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: ../modules/mycred-module-settings.php:
|
5500 |
#, php-format
|
5501 |
msgid "Accessible though the %singular% template tag."
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: ../modules/mycred-module-settings.php:
|
5505 |
msgid "Accessible though the %plural% template tag."
|
5506 |
msgstr ""
|
5507 |
|
5508 |
-
#: ../modules/mycred-module-settings.php:
|
5509 |
msgid "Tip"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: ../modules/mycred-module-settings.php:
|
5513 |
msgid ""
|
5514 |
"Adding an underscore at the beginning of template tag for names will return "
|
5515 |
"them in lowercase. i.e. %_singular%"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: ../modules/mycred-module-settings.php:
|
5519 |
msgid "Separator"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: ../modules/mycred-module-settings.php:
|
5523 |
msgid "Edit Settings"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: ../modules/mycred-module-settings.php:
|
5527 |
-
#: php:
|
5528 |
msgid "Capability to check for."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: ../modules/mycred-module-settings.php:
|
5532 |
msgid "Edit Users %plural%"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: ../modules/mycred-module-settings.php:
|
5536 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
-
#: ../modules/mycred-module-settings.php:
|
5540 |
msgid "Management"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: ../modules/mycred-module-settings.php:
|
5544 |
msgid "The Log"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: ../modules/mycred-module-settings.php:
|
5548 |
msgid "Table Name"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: ../modules/mycred-module-settings.php:
|
5552 |
msgid "Empty Log"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: ../modules/mycred-module-settings.php:
|
5556 |
msgid "User Meta Key"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: ../modules/mycred-module-settings.php:
|
5560 |
msgid "Set all to zero"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: ../modules/mycred-module-settings.php:
|
5564 |
msgid "CSV Export"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: ../modules/mycred-module-settings.php:
|
5568 |
msgid "Default"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: ../modules/mycred-module-settings.php:
|
5572 |
-
#: php:
|
5573 |
msgid "Meta Key"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: ../modules/mycred-module-settings.php:
|
5577 |
msgid "Add New Type"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: ../modules/mycred-module-settings.php:
|
5581 |
msgid "A unique ID for this type."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: ../modules/mycred-module-settings.php:
|
5585 |
msgid "Menu and page title."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: ../modules/mycred-module-settings.php:
|
5589 |
msgid "The meta key will define where your users balances are saved."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: ../modules/mycred-module-settings.php:
|
5593 |
msgid "Identify users by"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: ../modules/mycred-module-settings.php:
|
5597 |
msgid "User Email"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: ../modules/mycred-module-settings.php:
|
5601 |
msgid "User Login"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: ../modules/mycred-module-settings.php:
|
5605 |
msgid ""
|
5606 |
"Use ID if you intend to use this export as a backup of your current site "
|
5607 |
"while Email is recommended if you want to export to a different site."
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: ../modules/mycred-module-settings.php:
|
5611 |
msgid "Import Log Entry"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: ../modules/mycred-module-settings.php:
|
5615 |
#, php-format
|
5616 |
msgid ""
|
5617 |
"Optional log entry to use if you intend to import this file in a different "
|
5618 |
"%s installation."
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5622 |
msgid "BadgeOS"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5626 |
msgid ""
|
5627 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5628 |
"overridden for individual achievement type."
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5632 |
#, php-format
|
5633 |
msgid ""
|
5634 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5635 |
"feature."
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5639 |
msgid "%plural% to Award"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5643 |
msgid "Use zero to disable"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5647 |
msgid "Deduction Log Template"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5651 |
#, php-format
|
5652 |
msgid "Default %s for %s"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5656 |
msgid "Use zero to disable users gaining %_plural%"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: ../plugins/mycred-hook-badgeOS.php:
|
5660 |
msgid "Default Log template"
|
5661 |
msgstr ""
|
5662 |
|
5 |
"Project-Id-Version: myCRED\n"
|
6 |
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
7 |
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
8 |
+
"POT-Revision-Date: Tue Sep 09 2014 13:52:51 GMT+0200 (CEST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
|
11 |
"Language-Team: LANGUAGE <support@mycred.me>\n"
|
26 |
"content/plugins/mycred\n"
|
27 |
"X-Poedit-SearchPath-1: ."
|
28 |
|
29 |
+
#: ../mycred.php:425
|
30 |
msgid "Balance"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../mycred.php:450
|
34 |
msgid "%label% History"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../mycred.php:543
|
38 |
#, php-format
|
39 |
msgid "About %s"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../mycred.php:552
|
43 |
msgid "Awesome People"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../mycred.php:637 ../mycred.php:661 ../mycred.php:679 ../addons/badges/myCRED-
|
47 |
#: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
|
48 |
#: /addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
|
49 |
#: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
|
50 |
+
#: /includes/mycred-shortcodes.php:631
|
51 |
msgid "Processing..."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../mycred.php:638
|
55 |
msgid ""
|
56 |
"Warning! All entries in your log will be permanently removed! This can not "
|
57 |
"be undone!"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../mycred.php:639
|
61 |
msgid ""
|
62 |
"All log entries belonging to deleted users will be permanently deleted! This "
|
63 |
"can not be undone!"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../mycred.php:640
|
67 |
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../mycred.php:641
|
71 |
msgid "Done!"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../mycred.php:642 ../mycred.php:660 ../mycred.php:678
|
75 |
msgid "Close"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../mycred.php:643
|
79 |
msgid "Export users %plural%"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../mycred.php:659
|
83 |
msgid "Edit Users Balance"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../mycred.php:677
|
87 |
msgid "Edit Log Entry"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../mycred.php:681
|
91 |
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../mycred.php:682
|
95 |
msgid "Log entry updated"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../mycred.php:734 ../mycred.php:755 ../addons/email-notices/myCRED-addon-email-
|
99 |
+
#: notices.php:723 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
|
100 |
#: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
|
101 |
msgid "Setup"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../mycred.php:736 ../addons/gateway/carts/mycred-marketpress.php:367 ..
|
105 |
#: /includes/mycred-network.php:174 ../modules/mycred-module-settings.php:20 ..
|
106 |
#: /modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
|
107 |
msgid "Settings"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../mycred.php:776
|
111 |
msgid ""
|
112 |
"Make sure to backup your database and files before updating, in case "
|
113 |
"anything goes wrong!"
|
145 |
#: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
|
146 |
#: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
|
147 |
#: /addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
|
148 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:984 ../addons/buy-
|
149 |
+
#: creds/abstracts/mycred-abstract-payment-gateway.php:1007 ../addons/buy-
|
150 |
#: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
|
151 |
+
#: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:873
|
152 |
msgid "Select"
|
153 |
msgstr ""
|
154 |
|
248 |
msgstr ""
|
249 |
|
250 |
#: ../addons/badges/myCRED-addon-badges.php:276 ../addons/ranks/myCRED-addon-
|
251 |
+
#: ranks.php:618 ../modules/mycred-module-settings.php:452
|
252 |
msgid "Users"
|
253 |
msgstr ""
|
254 |
|
331 |
|
332 |
#: ../addons/badges/myCRED-addon-badges.php:701 ../addons/badges/myCRED-addon-
|
333 |
#: badges.php:729 ../addons/gateway/carts/mycred-woocommerce.php:140 ..
|
334 |
+
#: /modules/mycred-module-buddypress.php:395
|
335 |
msgid "Do not show"
|
336 |
msgstr ""
|
337 |
|
338 |
#: ../addons/badges/myCRED-addon-badges.php:702 ../modules/mycred-module-
|
339 |
+
#: buddypress.php:396
|
340 |
msgid "Include in Profile Header"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../addons/badges/myCRED-addon-badges.php:703 ../addons/ranks/myCRED-addon-
|
344 |
+
#: ranks.php:860 ../modules/mycred-module-buddypress.php:397
|
345 |
msgid "Include under the \"Profile\" tab"
|
346 |
msgstr ""
|
347 |
|
348 |
#: ../addons/badges/myCRED-addon-badges.php:704 ../modules/mycred-module-
|
349 |
+
#: buddypress.php:398
|
350 |
msgid "Include under the \"Profile\" tab and Profile Header"
|
351 |
msgstr ""
|
352 |
|
415 |
#: /includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
|
416 |
#: /modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
|
417 |
#: /modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
|
418 |
+
#: /modules/mycred-module-settings.php:313
|
419 |
msgid "Access Denied"
|
420 |
msgstr ""
|
421 |
|
566 |
#: /addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
|
567 |
#: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
|
568 |
#: /modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
|
569 |
+
#: /modules/mycred-module-hooks.php:2097 ../plugins/mycred-hook-badgeOS.php:124 ..
|
570 |
+
#: /plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ..
|
571 |
#: /plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
|
572 |
#: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
|
573 |
#: /plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
|
664 |
|
665 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
|
666 |
#: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
|
667 |
+
#: creds.php:1524 ../addons/buy-creds/myCRED-addon-buy-creds.php:1601 ..
|
668 |
#: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
|
669 |
#: /includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
|
670 |
+
#: /includes/mycred-shortcodes.php:939
|
671 |
msgid "Amount"
|
672 |
msgstr ""
|
673 |
|
674 |
#: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
|
675 |
+
#: /modules/mycred-module-hooks.php:2112
|
676 |
msgid "Interval"
|
677 |
msgstr ""
|
678 |
|
720 |
msgstr ""
|
721 |
|
722 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
|
723 |
+
#: addon-buy-creds.php:1635
|
724 |
msgid "No pending payments found"
|
725 |
msgstr ""
|
726 |
|
729 |
msgstr ""
|
730 |
|
731 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
|
732 |
+
#: addon-buy-creds.php:989 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
|
733 |
msgid "Transaction ID"
|
734 |
msgstr ""
|
735 |
|
736 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
|
737 |
+
#: addon-buy-creds.php:985
|
738 |
msgid "Buyer"
|
739 |
msgstr ""
|
740 |
|
741 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
|
742 |
+
#: addon-buy-creds.php:1602 ../addons/buy-creds/abstracts/mycred-abstract-payment-
|
743 |
#: gateway.php:563
|
744 |
msgid "Cost"
|
745 |
msgstr ""
|
746 |
|
747 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
|
748 |
+
#: addon-buy-creds.php:984 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
|
749 |
#: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
|
750 |
msgid "Gateway"
|
751 |
msgstr ""
|
794 |
|
795 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:586 ../addons/transfer/myCRED-
|
796 |
#: addon-transfer.php:195 ../includes/mycred-widgets.php:602 ../modules/mycred-
|
797 |
+
#: module-settings.php:470
|
798 |
msgid "Point Types"
|
799 |
msgstr ""
|
800 |
|
847 |
msgstr ""
|
848 |
|
849 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
|
850 |
+
#: hooks.php:2792
|
851 |
msgid "Available Shortcodes"
|
852 |
msgstr ""
|
853 |
|
874 |
msgstr ""
|
875 |
|
876 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
|
877 |
+
#: addon-buy-creds.php:993
|
878 |
msgid "buyCRED Settings"
|
879 |
msgstr ""
|
880 |
|
899 |
msgstr ""
|
900 |
|
901 |
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
|
902 |
+
#: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:545
|
903 |
msgid "Update Settings"
|
904 |
msgstr ""
|
905 |
|
907 |
msgid "More Gateways"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../includes/mycred-log.php:
|
911 |
#: 634
|
912 |
msgid "Date"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
|
916 |
msgid "Payed"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993
|
920 |
msgid "<strong>buy</strong>CRED Purchase Log"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:993 ../addons/gateway/event-
|
924 |
#: booking/mycred-eventespresso3.php:367
|
925 |
msgid "Gateway Settings"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1172 ../addons/sell-
|
929 |
+
#: content/myCRED-addon-sell-content.php:1191
|
930 |
msgid "No purchases found"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1242 ../addons/buy-creds/myCRED-
|
934 |
+
#: addon-buy-creds.php:1355
|
935 |
msgid "This Add-on needs to setup before you can use this shortcode."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
|
939 |
+
#: addon-buy-creds.php:1374
|
940 |
msgid "No gateways installed."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1262 ../addons/buy-creds/myCRED-
|
944 |
+
#: addon-buy-creds.php:1375
|
945 |
msgid "Gateway does not exist."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1310
|
949 |
msgid "Yourself"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
|
953 |
msgid "No active gateways found."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1377
|
957 |
msgid "The selected gateway is not active."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424
|
961 |
#, php-format
|
962 |
msgid "Buy with %gateway%"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1430 ../addons/sell-
|
966 |
#: content/myCRED-addon-sell-content.php:44
|
967 |
msgid "Buy Now"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1475
|
971 |
msgid "No users found"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
|
975 |
msgid "To"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1502
|
979 |
msgid "Select Amount"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1526
|
983 |
msgid "min."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1534
|
987 |
msgid "Select Gateway"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../addons/gateway/event-
|
991 |
#: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
|
992 |
#: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
|
993 |
#: php:35
|
994 |
msgid "Pay Now"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1576 ../includes/mycred-install.
|
998 |
+
#: php:516
|
999 |
msgid "Cancel"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../addons/buy-creds/myCRED-addon-buy-creds.php:1603 ../addons/ranks/myCRED-
|
1003 |
#: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
|
1004 |
+
#: module-settings.php:441 ../modules/mycred-module-settings.php:456
|
1005 |
msgid "Actions"
|
1006 |
msgstr ""
|
1007 |
|
1141 |
msgid "The following information will be sent to the gateway"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1334
|
1145 |
msgid "Outside US"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1351
|
1149 |
msgid "January"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1352
|
1153 |
msgid "February"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1353
|
1157 |
msgid "March"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
|
1161 |
msgid "April"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1355
|
1165 |
msgid "May"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1356
|
1169 |
msgid "June"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1357
|
1173 |
msgid "July"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1358
|
1177 |
msgid "August"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
|
1181 |
msgid "September"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1360
|
1185 |
msgid "October"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1361
|
1189 |
msgid "November"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1362
|
1193 |
msgid "December"
|
1194 |
msgstr ""
|
1195 |
|
1428 |
#: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
|
1429 |
#: /addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
|
1430 |
#: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
|
1431 |
+
#: /modules/mycred-module-hooks.php:2757
|
1432 |
msgid "Title"
|
1433 |
msgstr ""
|
1434 |
|
1616 |
msgstr ""
|
1617 |
|
1618 |
#: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
|
1619 |
+
#: php:2202
|
1620 |
msgid "Total"
|
1621 |
msgstr ""
|
1622 |
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
|
1781 |
+
#: notices/myCRED-addon-email-notices.php:1120
|
1782 |
msgid "Email Notice"
|
1783 |
msgstr ""
|
1784 |
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
|
1966 |
+
#: notices/myCRED-addon-email-notices.php:787
|
1967 |
msgid "Email Settings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
|
1971 |
+
#: notices/myCRED-addon-email-notices.php:910
|
1972 |
msgid "Senders Name:"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
|
1976 |
+
#: notices/myCRED-addon-email-notices.php:912
|
1977 |
msgid "Senders Email:"
|
1978 |
msgstr ""
|
1979 |
|
1997 |
msgid "Ignored if HTML is not allowed in emails."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:721 ../addons/email-
|
2001 |
+
#: notices/myCRED-addon-email-notices.php:836
|
2002 |
msgid "Email Subject"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:722
|
2006 |
msgid "Status"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:742
|
2010 |
msgid "Not Active"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:744
|
2014 |
#, php-format
|
2015 |
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:748
|
2019 |
msgid "Active"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:750
|
2023 |
#, php-format
|
2024 |
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:760
|
2028 |
msgid "Email is sent when"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:762
|
2032 |
msgid "Missing instance for this notice!"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2036 |
+
#: notices/myCRED-addon-email-notices.php:773 ../addons/email-notices/myCRED-
|
2037 |
+
#: addon-email-notices.php:775
|
2038 |
msgid "Sent To"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:771 ../addons/email-
|
2042 |
+
#: notices/myCRED-addon-email-notices.php:900 ../includes/mycred-admin.php:748 ..
|
2043 |
#: /includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
|
2044 |
msgid "User"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:773 ../addons/email-
|
2048 |
+
#: notices/myCRED-addon-email-notices.php:901
|
2049 |
msgid "Administrator"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:775
|
2053 |
msgid "Both Administrator and User"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:796
|
2057 |
msgid "Available Template Tags"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:807
|
2061 |
msgid "Email Header"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:867
|
2065 |
msgid "Send this email notice when..."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:898
|
2069 |
msgid "Recipient:"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:902
|
2073 |
msgid "Both"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:906 ..
|
2077 |
#: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
|
2078 |
+
#: settings.php:485 ../modules/mycred-module-settings.php:504 ../modules/mycred-
|
2079 |
+
#: module-settings.php:527
|
2080 |
msgid "Label"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:914
|
2084 |
msgid "Reply-To Email:"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:920
|
2088 |
msgid "Save"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:932
|
2092 |
msgid "CSS Styling"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:948
|
2096 |
msgid "Site Related"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:949
|
2100 |
msgid "Your websites title"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:950
|
2104 |
msgid "Your websites address"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:951
|
2108 |
msgid "Your websites tagline (description)"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:952
|
2112 |
msgid "Your websites admin email"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:953
|
2116 |
msgid "Total number of blog members"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1031 ../addons/email-
|
2120 |
+
#: notices/myCRED-addon-email-notices.php:1034 ../addons/email-notices/myCRED-
|
2121 |
+
#: addon-email-notices.php:1040
|
2122 |
msgid "Email Notice Updated."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1036
|
2126 |
msgid "Email Notice Activated"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1037
|
2130 |
msgid "Email Notice Saved"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1056
|
2134 |
msgid ""
|
2135 |
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
|
2136 |
"are not yet ready to use this email notice!"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1058
|
2140 |
#, php-format
|
2141 |
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1060
|
2145 |
msgid "This email notice is active."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1071
|
2149 |
msgid "Settings saved."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1119
|
2153 |
msgid "Unsubscribe"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1140
|
2157 |
msgid "There are no email notifications yet."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: ../addons/email-notices/myCRED-addon-email-notices.php:1146
|
2161 |
msgid "Save Changes"
|
2162 |
msgstr ""
|
2163 |
|
2204 |
|
2205 |
#: ../addons/gateway/carts/mycred-marketpress.php:250 ..
|
2206 |
#: /addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
|
2207 |
+
#: 52 ../includes/mycred-network.php:53
|
2208 |
msgid "myCRED"
|
2209 |
msgstr ""
|
2210 |
|
2278 |
#: /addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
|
2279 |
#: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
|
2280 |
#: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
|
2281 |
+
#: php:578 ../includes/mycred-shortcodes.php:944
|
2282 |
msgid "Exchange Rate"
|
2283 |
msgstr ""
|
2284 |
|
2565 |
#: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
|
2566 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
|
2567 |
#: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
|
2568 |
+
#: sell-content.php:669
|
2569 |
msgid "Button Label"
|
2570 |
msgstr ""
|
2571 |
|
2579 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
|
2580 |
#: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
|
2581 |
#: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
|
2582 |
+
#: sell-content.php:665
|
2583 |
msgid "Price"
|
2584 |
msgstr ""
|
2585 |
|
2680 |
msgstr ""
|
2681 |
|
2682 |
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
|
2683 |
+
#: /modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:489 ..
|
2684 |
+
#: /modules/mycred-module-settings.php:508
|
2685 |
msgid "Delete"
|
2686 |
msgstr ""
|
2687 |
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
|
2801 |
+
#: module-buddypress.php:439
|
2802 |
msgid "Template"
|
2803 |
msgstr ""
|
2804 |
|
3058 |
msgstr ""
|
3059 |
|
3060 |
#: ../addons/ranks/myCRED-addon-ranks.php:858 ../modules/mycred-module-buddypress.
|
3061 |
+
#: php:402
|
3062 |
msgid "Do not show."
|
3063 |
msgstr ""
|
3064 |
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
|
3111 |
+
#: shortcodes.php:449 ../includes/mycred-shortcodes.php:452 ../includes/mycred-
|
3112 |
+
#: shortcodes.php:515 ../includes/mycred-shortcodes.php:573 ../includes/mycred-
|
3113 |
+
#: shortcodes.php:577 ../includes/mycred-shortcodes.php:581
|
3114 |
msgid "error"
|
3115 |
msgstr ""
|
3116 |
|
3231 |
msgid "%s Sell This"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:618
|
3235 |
#, php-format
|
3236 |
msgid "%s Sell Content needs to be setup before you can use this feature."
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3240 |
msgid "Setup add-on"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:621
|
3244 |
msgid "Lets do it"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:659
|
3248 |
#, php-format
|
3249 |
msgid "Enable sale of this %s"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:673
|
3253 |
msgid "Purchase expires after"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:999
|
3257 |
msgid "Thank you for your purchase!"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1087 ../addons/sell-
|
3261 |
+
#: content/myCRED-addon-sell-content.php:1173
|
3262 |
msgid "The following content is set for sale:"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: ../addons/sell-content/myCRED-addon-sell-content.php:1233
|
3266 |
msgid "Purchased"
|
3267 |
msgstr ""
|
3268 |
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
|
3278 |
+
#: php:2367
|
3279 |
msgid "Transfer"
|
3280 |
msgstr ""
|
3281 |
|
3310 |
msgstr ""
|
3311 |
|
3312 |
#: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
|
3313 |
+
#: php:1041
|
3314 |
msgid "Insufficient Funds. Please try a lower amount."
|
3315 |
msgstr ""
|
3316 |
|
3677 |
msgid "My Entire Log"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: ../includes/mycred-functions.php:1854
|
3681 |
msgid "ref empty"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: ../includes/mycred-functions.php:1862
|
3685 |
msgid "incorrect user id format"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: ../includes/mycred-functions.php:1875
|
3689 |
msgid "incorrect unix timestamp (from):"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: ../includes/mycred-functions.php:1884
|
3693 |
msgid "incorrect unix timestamp (to):"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: ../includes/mycred-functions.php:2254
|
3697 |
msgid "Website Registration"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: ../includes/mycred-functions.php:2255
|
3701 |
msgid "Website Visit"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: ../includes/mycred-functions.php:2256
|
3705 |
msgid "Viewing Content (Member)"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: ../includes/mycred-functions.php:2257
|
3709 |
msgid "Viewing Content (Author)"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: ../includes/mycred-functions.php:2258
|
3713 |
msgid "Logging in"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: ../includes/mycred-functions.php:2259
|
3717 |
msgid "Publishing Content"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: ../includes/mycred-functions.php:2260 ../modules/mycred-module-hooks.php:1421
|
3721 |
msgid "Approved Comment"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: ../includes/mycred-functions.php:2261
|
3725 |
msgid "Unapproved Comment"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: ../includes/mycred-functions.php:2262
|
3729 |
msgid "SPAM Comment"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: ../includes/mycred-functions.php:2263
|
3733 |
msgid "Deleted Comment"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: ../includes/mycred-functions.php:2264
|
3737 |
msgid "Link Click"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: ../includes/mycred-functions.php:2265
|
3741 |
msgid "Watching Video"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: ../includes/mycred-functions.php:2266
|
3745 |
msgid "Visitor Referral"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: ../includes/mycred-functions.php:2267
|
3749 |
msgid "Signup Referral"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: ../includes/mycred-functions.php:2271
|
3753 |
msgid "New Profile Update"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: ../includes/mycred-functions.php:2272
|
3757 |
msgid "Avatar Upload"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: ../includes/mycred-functions.php:2273
|
3761 |
msgid "New Friendship"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: ../includes/mycred-functions.php:2274
|
3765 |
msgid "Ended Friendship"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: ../includes/mycred-functions.php:2275
|
3769 |
msgid "New Profile Comment"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: ../includes/mycred-functions.php:2276
|
3773 |
msgid "Profile Comment Deletion"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: ../includes/mycred-functions.php:2277
|
3777 |
msgid "New Message"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: ../includes/mycred-functions.php:2278
|
3781 |
msgid "Sending Gift"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: ../includes/mycred-functions.php:2279
|
3785 |
msgid "New Group"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: ../includes/mycred-functions.php:2280
|
3789 |
msgid "Deleted Group"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: ../includes/mycred-functions.php:2281
|
3793 |
msgid "New Group Forum Topic"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: ../includes/mycred-functions.php:2282
|
3797 |
msgid "Edit Group Forum Topic"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: ../includes/mycred-functions.php:2283
|
3801 |
msgid "New Group Forum Post"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: ../includes/mycred-functions.php:2284
|
3805 |
msgid "Edit Group Forum Post"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: ../includes/mycred-functions.php:2285
|
3809 |
msgid "Joining Group"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: ../includes/mycred-functions.php:2286
|
3813 |
msgid "Leaving Group"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: ../includes/mycred-functions.php:2287
|
3817 |
msgid "New Group Avatar"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: ../includes/mycred-functions.php:2288
|
3821 |
msgid "New Group Comment"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: ../includes/mycred-functions.php:2292 ../plugins/mycred-hook-buddypress-media.
|
3825 |
#: php:166
|
3826 |
msgid "Photo Upload"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: ../includes/mycred-functions.php:2293 ../plugins/mycred-hook-buddypress-media.
|
3830 |
#: php:176
|
3831 |
msgid "Video Upload"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: ../includes/mycred-functions.php:2294 ../plugins/mycred-hook-buddypress-media.
|
3835 |
#: php:186
|
3836 |
msgid "Music Upload"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: ../includes/mycred-functions.php:2298
|
3840 |
msgid "New Link"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: ../includes/mycred-functions.php:2299
|
3844 |
msgid "Link Voting"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: ../includes/mycred-functions.php:2300
|
3848 |
msgid "Link Update"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: ../includes/mycred-functions.php:2304
|
3852 |
msgid "New Forum (bbPress)"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: ../includes/mycred-functions.php:2305
|
3856 |
msgid "New Forum Topic (bbPress)"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: ../includes/mycred-functions.php:2306
|
3860 |
msgid "Favorited Topic (bbPress)"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: ../includes/mycred-functions.php:2307
|
3864 |
msgid "New Topic Reply (bbPress)"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: ../includes/mycred-functions.php:2311
|
3868 |
msgid "Form Submission (Contact Form 7)"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: ../includes/mycred-functions.php:2314
|
3872 |
msgid "Form Submission (Gravity Form)"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: ../includes/mycred-functions.php:2317
|
3876 |
msgid "New Forum Topic (SimplePress)"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: ../includes/mycred-functions.php:2318
|
3880 |
msgid "New Forum Post (SimplePress)"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: ../includes/mycred-functions.php:2322
|
3884 |
msgid "Poll Voting"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: ../includes/mycred-functions.php:2325
|
3888 |
msgid "Sending an Invite"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: ../includes/mycred-functions.php:2326
|
3892 |
msgid "Accepting an Invite"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: ../includes/mycred-functions.php:2332
|
3896 |
msgid "Banking Payout"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: ../includes/mycred-functions.php:2335
|
3900 |
msgid "buyCRED Purchase (PayPal Standard)"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: ../includes/mycred-functions.php:2336
|
3904 |
msgid "buyCRED Purchase (Skrill)"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: ../includes/mycred-functions.php:2337
|
3908 |
msgid "buyCRED Purchase (Zombaio)"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: ../includes/mycred-functions.php:2338
|
3912 |
msgid "buyCRED Purchase (NETBilling)"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: ../includes/mycred-functions.php:2339
|
3916 |
msgid "buyCRED Purchase (BitPay)"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: ../includes/mycred-functions.php:2344
|
3920 |
msgid "Coupon Purchase"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: ../includes/mycred-functions.php:2347
|
3924 |
msgid "Store Purchase (WooCommerce)"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: ../includes/mycred-functions.php:2348
|
3928 |
msgid "Store Purchase (MarketPress)"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: ../includes/mycred-functions.php:2349
|
3932 |
msgid "Store Purchase (WP E-Commerce)"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: ../includes/mycred-functions.php:2354
|
3936 |
msgid "Event Payment (Event Espresso)"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: ../includes/mycred-functions.php:2355
|
3940 |
msgid "Event Sale (Event Espresso)"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: ../includes/mycred-functions.php:2359
|
3944 |
msgid "Event Payment (Events Manager)"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: ../includes/mycred-functions.php:2360
|
3948 |
msgid "Event Sale (Events Manager)"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: ../includes/mycred-functions.php:2364
|
3952 |
msgid "Content Purchase / Sale"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: ../includes/mycred-functions.php:2371
|
3956 |
msgid "Manual Adjustment by Admin"
|
3957 |
msgstr ""
|
3958 |
|
4000 |
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: ../includes/mycred-install.php:54
|
4004 |
msgid ""
|
4005 |
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
4006 |
"check your PHP configuration or contact your host and ask them to enable it "
|
4007 |
"for you!"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: ../includes/mycred-install.php:59
|
4011 |
msgid ""
|
4012 |
"Sorry but your WordPress installation does not reach the minimum "
|
4013 |
"requirements for running myCRED. The following errors were given:"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: ../includes/mycred-install.php:248
|
4017 |
msgid "myCRED needs your attention."
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: ../includes/mycred-install.php:248
|
4021 |
msgid "Run Setup"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: ../includes/mycred-install.php:260 ../includes/mycred-install.php:261
|
4025 |
msgid "myCRED Setup"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: ../includes/mycred-install.php:390
|
4029 |
#, php-format
|
4030 |
msgid "%s Setup"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: ../includes/mycred-install.php:392
|
4034 |
msgid "Step"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: ../includes/mycred-install.php:416
|
4038 |
msgid ""
|
4039 |
"Click \"Begin Setup\" to install myCRED. You will be able to select your "
|
4040 |
"points format, layout and security settings."
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: ../includes/mycred-install.php:417
|
4044 |
msgid "Begin Setup"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: ../includes/mycred-install.php:472
|
4048 |
msgid "Select the format you want to use for your points."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: ../includes/mycred-install.php:473 ../includes/mycred-widgets.php:223
|
4052 |
msgid "Format"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: ../includes/mycred-install.php:476
|
4056 |
msgid "Separators"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: ../includes/mycred-install.php:486
|
4060 |
msgid "Decimals"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: ../includes/mycred-install.php:488
|
4064 |
msgid "Use zero for no decimals."
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: ../includes/mycred-install.php:491 ../modules/mycred-module-settings.php:357
|
4068 |
msgid "Presentation"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:344
|
4072 |
msgid "Name (Singular)"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: ../includes/mycred-install.php:498 ../modules/mycred-module-settings.php:349
|
4076 |
msgid "Name (Plural)"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: ../includes/mycred-install.php:504 ../modules/mycred-module-settings.php:360
|
4080 |
msgid "Prefix"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:368
|
4084 |
msgid "Suffix"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: ../includes/mycred-install.php:516
|
4088 |
msgid "Cancel Setup"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: ../includes/mycred-install.php:516 ../includes/mycred-install.php:586
|
4092 |
msgid "Next"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: ../includes/mycred-install.php:548 ../modules/mycred-module-settings.php:376
|
4096 |
msgid "Security"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: ../includes/mycred-install.php:551
|
4100 |
msgid "Edit Settings Capability"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: ../includes/mycred-install.php:555
|
4104 |
msgid "Edit Users %plural% Capability"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:389
|
4108 |
msgid "Maximum %plural% payouts"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: ../includes/mycred-install.php:561 ../modules/mycred-module-settings.php:391
|
4112 |
msgid ""
|
4113 |
"As an added security, you can set the maximum amount a user can gain or "
|
4114 |
"loose in a single instance. If used, make sure this is the maximum amount a "
|
4116 |
"disable."
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: ../includes/mycred-install.php:564 ../modules/mycred-module-settings.php:394
|
4120 |
msgid "Excludes"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:398
|
4124 |
msgid "Exclude those who can \"Edit Settings\"."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:402
|
4128 |
msgid "Exclude those who can \"Edit Users %plural%\"."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: ../includes/mycred-install.php:575 ../modules/mycred-module-settings.php:406
|
4132 |
msgid "Exclude the following user IDs:"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:411
|
4136 |
msgid "User Deletions"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:414
|
4140 |
msgid "Delete log entries when user is deleted."
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: ../includes/mycred-install.php:604
|
4144 |
msgid "Ready"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: ../includes/mycred-install.php:605
|
4148 |
msgid "Almost done! Click the button below to finish this setup."
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: ../includes/mycred-install.php:606
|
4152 |
msgid "Install & Run"
|
4153 |
msgstr ""
|
4154 |
|
4161 |
msgid "entry"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: ../includes/mycred-log.php:412
|
4165 |
msgid "Go to the first page"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: ../includes/mycred-log.php:419
|
4169 |
msgid "Go to the previous page"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: ../includes/mycred-log.php:428
|
4173 |
msgid "Current page"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: ../includes/mycred-log.php:434
|
4177 |
#, php-format
|
4178 |
msgctxt "paging"
|
4179 |
msgid "%1$s of %2$s"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: ../includes/mycred-log.php:438
|
4183 |
msgid "Go to the next page"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: ../includes/mycred-log.php:445
|
4187 |
msgid "Go to the last page"
|
4188 |
msgstr ""
|
4189 |
|
4191 |
msgid "Show all references"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:558
|
4195 |
msgid "User ID"
|
4196 |
msgstr ""
|
4197 |
|
4405 |
"about your setup!"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: ../includes/mycred-shortcodes.php:178
|
4409 |
msgid "Leaderboard is empty."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: ../includes/mycred-shortcodes.php:449 ../includes/mycred-shortcodes.php:573
|
4413 |
msgid "Amount missing!"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: ../includes/mycred-shortcodes.php:452 ../includes/mycred-shortcodes.php:581
|
4417 |
msgid "Log Template Missing!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: ../includes/mycred-shortcodes.php:515
|
4421 |
msgid "Anchor missing URL!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: ../includes/mycred-shortcodes.php:577
|
4425 |
msgid "User ID missing for recipient."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: ../includes/mycred-shortcodes.php:632
|
4429 |
msgid "Sent"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: ../includes/mycred-shortcodes.php:633
|
4433 |
msgid "Error - Try Again"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: ../includes/mycred-shortcodes.php:742
|
4437 |
msgid "A video ID is required for this shortcode"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: ../includes/mycred-shortcodes.php:893 ../includes/mycred-shortcodes.php:987
|
4441 |
msgid "Point types not found."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: ../includes/mycred-shortcodes.php:899 ../includes/mycred-shortcodes.php:907 ..
|
4445 |
+
#: /includes/mycred-shortcodes.php:999 ../includes/mycred-shortcodes.php:1019
|
4446 |
#, php-format
|
4447 |
msgid "You are excluded from using %s."
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: ../includes/mycred-shortcodes.php:903 ../includes/mycred-shortcodes.php:1009
|
4451 |
msgid "Your balance is too low to use this feature."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: ../includes/mycred-shortcodes.php:924
|
4455 |
#, php-format
|
4456 |
msgid "Convert <span>%s</span> to <span>%s</span>"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: ../includes/mycred-shortcodes.php:933
|
4460 |
#, php-format
|
4461 |
msgid "Your current %s balance"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: ../includes/mycred-shortcodes.php:941
|
4465 |
#, php-format
|
4466 |
msgid "Minimum %s"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: ../includes/mycred-shortcodes.php:945
|
4470 |
#, php-format
|
4471 |
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: ../includes/mycred-shortcodes.php:951
|
4475 |
msgid "Exchange"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: ../includes/mycred-shortcodes.php:1032
|
4479 |
#, php-format
|
4480 |
msgid "You must exchange at least %s!"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: ../includes/mycred-shortcodes.php:1054
|
4484 |
#, php-format
|
4485 |
msgid "Exchange from %s"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: ../includes/mycred-shortcodes.php:1066
|
4489 |
#, php-format
|
4490 |
msgid "Exchange to %s"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: ../includes/mycred-shortcodes.php:1074
|
4494 |
#, php-format
|
4495 |
msgid "You have successfully exchanged %s into %s."
|
4496 |
msgstr ""
|
4509 |
msgid "My Balance"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: ../includes/mycred-widgets.php:167 ../modules/mycred-module-buddypress.php:446
|
4513 |
msgid "%plural% History"
|
4514 |
msgstr ""
|
4515 |
|
4909 |
msgid "Current balance"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: ../modules/mycred-module-buddypress.php:347
|
4913 |
msgid "Go"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: ../modules/mycred-module-buddypress.php:403
|
4917 |
msgid "Show in Profile"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: ../modules/mycred-module-buddypress.php:418
|
4921 |
#, php-format
|
4922 |
msgid "%singular% Balance"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: ../modules/mycred-module-buddypress.php:434
|
4926 |
#, php-format
|
4927 |
msgid "Members and visitors can other members %_singular% balance."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: ../modules/mycred-module-buddypress.php:442
|
4931 |
msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: ../modules/mycred-module-buddypress.php:462
|
4935 |
msgid "Members can view each others %_plural% history."
|
4936 |
msgstr ""
|
4937 |
|
4938 |
+
#: ../modules/mycred-module-buddypress.php:467
|
4939 |
msgid "Menu Title"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: ../modules/mycred-module-buddypress.php:469
|
4943 |
msgid "Title shown to me"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: ../modules/mycred-module-buddypress.php:474
|
4947 |
#, php-format
|
4948 |
msgid "Title shown to others. Use %s to show the first name."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: ../modules/mycred-module-buddypress.php:479
|
4952 |
msgid "Menu Position"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: ../modules/mycred-module-buddypress.php:481
|
4956 |
msgid "Current menu positions:"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: ../modules/mycred-module-buddypress.php:486
|
4960 |
msgid "History URL slug"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: ../modules/mycred-module-buddypress.php:488
|
4964 |
msgid "Do not use empty spaces!"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: ../modules/mycred-module-buddypress.php:493
|
4968 |
msgid "Number of history entries to show"
|
4969 |
msgstr ""
|
4970 |
|
5091 |
#: /modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
|
5092 |
#: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
|
5093 |
#: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
|
5094 |
+
#: 2666 ../modules/mycred-module-hooks.php:2695 ../plugins/mycred-hook-badgeOS.
|
5095 |
+
#: php:298 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
|
5096 |
#: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
|
5097 |
#: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
|
5098 |
#: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
|
5153 |
msgid "%plural% for viewing %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2674
|
5157 |
+
#: ../modules/mycred-module-hooks.php:2703 ../plugins/mycred-hook-invite-anyone.
|
5158 |
#: php:224 ../plugins/mycred-hook-invite-anyone.php:245
|
5159 |
msgid "Limit"
|
5160 |
msgstr ""
|
5236 |
msgid "Custom tags: %url%, %title% or %id%."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2778
|
5240 |
msgid "Note!"
|
5241 |
msgstr ""
|
5242 |
|
5248 |
"by ID."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2130
|
5252 |
msgid "Available Shortcode"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: ../modules/mycred-module-hooks.php:2094
|
5256 |
msgid "Amount to award for viewing videos."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: ../modules/mycred-module-hooks.php:2104
|
5260 |
msgid "Award Logic"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: ../modules/mycred-module-hooks.php:2106
|
5264 |
#, php-format
|
5265 |
msgid "Select when %_plural% should be awarded or deducted."
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: ../modules/mycred-module-hooks.php:2107
|
5269 |
msgid "Play - As soon as video starts playing."
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: ../modules/mycred-module-hooks.php:2108
|
5273 |
msgid "Full - First when the entire video has played."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: ../modules/mycred-module-hooks.php:2109
|
5277 |
msgid "Interval - For each x number of seconds watched."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: ../modules/mycred-module-hooks.php:2114
|
5281 |
msgid "Number of seconds"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: ../modules/mycred-module-hooks.php:2121
|
5285 |
msgid "Leniency"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: ../modules/mycred-module-hooks.php:2123
|
5289 |
msgid ""
|
5290 |
"The maximum percentage a users view of a movie can differ from the actual "
|
5291 |
"length."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: ../modules/mycred-module-hooks.php:2126
|
5295 |
msgid ""
|
5296 |
"Do not set this value to zero! A lot of thing can happen while a user "
|
5297 |
"watches a movie and sometimes a few seconds can drop of the counter due to "
|
5298 |
"buffering or play back errors."
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: ../modules/mycred-module-hooks.php:2194
|
5302 |
msgid "Affiliate Program"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: ../modules/mycred-module-hooks.php:2203
|
5306 |
msgid "Per Day"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: ../modules/mycred-module-hooks.php:2331
|
5310 |
msgid "Link"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: ../modules/mycred-module-hooks.php:2335
|
5314 |
+
msgid "Visitors Referred"
|
5315 |
+
msgstr ""
|
5316 |
+
|
5317 |
+
#: ../modules/mycred-module-hooks.php:2339
|
5318 |
+
msgid "Signups Referred"
|
5319 |
+
msgstr ""
|
5320 |
+
|
5321 |
+
#: ../modules/mycred-module-hooks.php:2660
|
5322 |
msgid "Referring Visitors"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: ../modules/mycred-module-hooks.php:2684 ../modules/mycred-module-hooks.php:2713
|
5326 |
msgid "The number of referrals each member can make. Use zero for unlimited."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2717
|
5330 |
msgid "Referring Signups"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: ../modules/mycred-module-hooks.php:2692
|
5334 |
msgid "Visitors who have Cookies disabled will not award %_plural%."
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: ../modules/mycred-module-hooks.php:2719
|
5338 |
msgid "Registrations are disabled."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: ../modules/mycred-module-hooks.php:2727
|
5342 |
msgid "Referral Links"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: ../modules/mycred-module-hooks.php:2731
|
5346 |
msgid "Assign numeric referral IDs to each user."
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: ../modules/mycred-module-hooks.php:2732 ../modules/mycred-module-hooks.php:2738
|
5350 |
msgid "Example"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: ../modules/mycred-module-hooks.php:2737
|
5354 |
msgid "Assign usernames as IDs for each user."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: ../modules/mycred-module-hooks.php:2741
|
5358 |
msgid "IP Limit"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: ../modules/mycred-module-hooks.php:2745
|
5362 |
msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: ../modules/mycred-module-hooks.php:2749 ../modules/mycred-module-hooks.php:2782
|
5366 |
msgid "BuddyPress Profile"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: ../modules/mycred-module-hooks.php:2752
|
5370 |
msgid "Insert Link in users Profile"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: ../modules/mycred-module-hooks.php:2753
|
5374 |
msgid ""
|
5375 |
"Option to inser the referral link in users profiles. Links will only be "
|
5376 |
"visible to users viewing their own profiles or administrators."
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: ../modules/mycred-module-hooks.php:2759
|
5380 |
msgid "Leave empty to hide."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: ../modules/mycred-module-hooks.php:2762
|
5384 |
msgid "Description"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: ../modules/mycred-module-hooks.php:2763
|
5388 |
msgid "Optional description to insert under the link."
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: ../modules/mycred-module-hooks.php:2775
|
5392 |
msgid "Profile Positioning"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: ../modules/mycred-module-hooks.php:2777
|
5396 |
msgid ""
|
5397 |
"You can move around the referral link on your users profile by changing the "
|
5398 |
"position. Increase to move up, decrease to move down."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: ../modules/mycred-module-hooks.php:2778
|
5402 |
msgid "You can not move the referral link above the users \"Base\" profile details!"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: ../modules/mycred-module-hooks.php:2784
|
5406 |
msgid "Requires BuddyPress Extended Profiles to be enabled."
|
5407 |
msgstr ""
|
5408 |
|
5409 |
#: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
|
5410 |
+
#: /modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:103
|
5411 |
msgid "Access denied for this action"
|
5412 |
msgstr ""
|
5413 |
|
5423 |
msgid "Entry Updated"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:437
|
5427 |
msgid "Entries"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
#: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
|
5431 |
+
#: /modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:575
|
5432 |
msgid "Export"
|
5433 |
msgstr ""
|
5434 |
|
5475 |
msgstr ""
|
5476 |
|
5477 |
#: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
|
5478 |
+
#: 107 ../modules/mycred-module-settings.php:149
|
5479 |
msgid "Missing point type"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: ../modules/mycred-module-settings.php:129
|
5483 |
msgid "Accounts successfully reset"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: ../modules/mycred-module-settings.php:175
|
5487 |
msgid "No users found to export"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: ../modules/mycred-module-settings.php:331
|
5491 |
#, php-format
|
5492 |
msgid "%s Settings"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: ../modules/mycred-module-settings.php:334
|
5496 |
msgid "Adjust your core or add-on settings."
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: ../modules/mycred-module-settings.php:339
|
5500 |
msgid "Core Settings"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: ../modules/mycred-module-settings.php:341
|
5504 |
msgid "Name"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: ../modules/mycred-module-settings.php:346
|
5508 |
#, php-format
|
5509 |
msgid "Accessible though the %singular% template tag."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: ../modules/mycred-module-settings.php:351
|
5513 |
msgid "Accessible though the %plural% template tag."
|
5514 |
msgstr ""
|
5515 |
|
5516 |
+
#: ../modules/mycred-module-settings.php:354
|
5517 |
msgid "Tip"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
+
#: ../modules/mycred-module-settings.php:354
|
5521 |
msgid ""
|
5522 |
"Adding an underscore at the beginning of template tag for names will return "
|
5523 |
"them in lowercase. i.e. %_singular%"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: ../modules/mycred-module-settings.php:372
|
5527 |
msgid "Separator"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: ../modules/mycred-module-settings.php:379
|
5531 |
msgid "Edit Settings"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: ../modules/mycred-module-settings.php:381 ../modules/mycred-module-settings.
|
5535 |
+
#: php:386
|
5536 |
msgid "Capability to check for."
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: ../modules/mycred-module-settings.php:384
|
5540 |
msgid "Edit Users %plural%"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: ../modules/mycred-module-settings.php:408
|
5544 |
msgid "Comma separated list of user ids to exclude. No spaces allowed!"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: ../modules/mycred-module-settings.php:428
|
5548 |
msgid "Management"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
+
#: ../modules/mycred-module-settings.php:430
|
5552 |
msgid "The Log"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: ../modules/mycred-module-settings.php:433
|
5556 |
msgid "Table Name"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: ../modules/mycred-module-settings.php:442
|
5560 |
msgid "Empty Log"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: ../modules/mycred-module-settings.php:448
|
5564 |
msgid "User Meta Key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: ../modules/mycred-module-settings.php:457
|
5568 |
msgid "Set all to zero"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: ../modules/mycred-module-settings.php:457
|
5572 |
msgid "CSV Export"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: ../modules/mycred-module-settings.php:478
|
5576 |
msgid "Default"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: ../modules/mycred-module-settings.php:481 ../modules/mycred-module-settings.
|
5580 |
+
#: php:500 ../modules/mycred-module-settings.php:522
|
5581 |
msgid "Meta Key"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
+
#: ../modules/mycred-module-settings.php:519
|
5585 |
msgid "Add New Type"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: ../modules/mycred-module-settings.php:524
|
5589 |
msgid "A unique ID for this type."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: ../modules/mycred-module-settings.php:529
|
5593 |
msgid "Menu and page title."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: ../modules/mycred-module-settings.php:532
|
5597 |
msgid "The meta key will define where your users balances are saved."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: ../modules/mycred-module-settings.php:553
|
5601 |
msgid "Identify users by"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: ../modules/mycred-module-settings.php:559
|
5605 |
msgid "User Email"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: ../modules/mycred-module-settings.php:560
|
5609 |
msgid "User Login"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
+
#: ../modules/mycred-module-settings.php:567
|
5613 |
msgid ""
|
5614 |
"Use ID if you intend to use this export as a backup of your current site "
|
5615 |
"while Email is recommended if you want to export to a different site."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: ../modules/mycred-module-settings.php:570
|
5619 |
msgid "Import Log Entry"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: ../modules/mycred-module-settings.php:572
|
5623 |
#, php-format
|
5624 |
msgid ""
|
5625 |
"Optional log entry to use if you intend to import this file in a different "
|
5626 |
"%s installation."
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: ../plugins/mycred-hook-badgeOS.php:18
|
5630 |
msgid "BadgeOS"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: ../plugins/mycred-hook-badgeOS.php:19
|
5634 |
msgid ""
|
5635 |
"Default settings for each BadgeOS Achievement type. These settings may be "
|
5636 |
"overridden for individual achievement type."
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: ../plugins/mycred-hook-badgeOS.php:105
|
5640 |
#, php-format
|
5641 |
msgid ""
|
5642 |
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
5643 |
"feature."
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
|
5647 |
msgid "%plural% to Award"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: ../plugins/mycred-hook-badgeOS.php:122
|
5651 |
msgid "Use zero to disable"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: ../plugins/mycred-hook-badgeOS.php:133
|
5655 |
msgid "Deduction Log Template"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
+
#: ../plugins/mycred-hook-badgeOS.php:278
|
5659 |
#, php-format
|
5660 |
msgid "Default %s for %s"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: ../plugins/mycred-hook-badgeOS.php:284
|
5664 |
msgid "Use zero to disable users gaining %_plural%"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: ../plugins/mycred-hook-badgeOS.php:288
|
5668 |
msgid "Default Log template"
|
5669 |
msgstr ""
|
5670 |
|
modules/mycred-module-buddypress.php
CHANGED
@@ -268,16 +268,26 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
|
|
268 |
/**
|
269 |
* Construct My History Page
|
270 |
* @since 0.1
|
271 |
-
* @version 1.0
|
272 |
*/
|
273 |
public function my_history() {
|
274 |
add_action( 'bp_template_title', array( $this, 'my_history_title' ) );
|
275 |
add_action( 'bp_template_content', array( $this, 'my_history_screen' ) );
|
276 |
add_filter( 'mycred_log_column_headers', array( $this, 'columns' ) );
|
|
|
277 |
|
278 |
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
279 |
}
|
280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
/**
|
282 |
* Adjust Log Columns
|
283 |
* @since 0.1
|
@@ -321,6 +331,9 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
|
|
321 |
'ctype' => $type
|
322 |
);
|
323 |
|
|
|
|
|
|
|
324 |
if ( isset( $bp->canonical_stack['action'] ) && $bp->canonical_stack['action'] != $this->buddypress['history_url'] )
|
325 |
$args['time'] = $bp->canonical_stack['action'];
|
326 |
|
@@ -334,12 +347,28 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
|
|
334 |
<form action="" id="mycred-sort-cred-history-form" method="get" style="display: block; height: 48px; float: right;"><label>Show:</label> <?php mycred_types_select_from_dropdown( 'show-ctype', 'mycred-select-type', $type ); ?> <input type="submit" class="btn btn-large btn-primary button button-large button-primary" value="<?php _e( 'Go', 'mycred' ); ?>" /></form>
|
335 |
<?php endif; ?>
|
336 |
|
|
|
|
|
|
|
|
|
337 |
<div class="wrap" id="myCRED-wrap">
|
338 |
<?php $log->mobile_support(); ?>
|
339 |
|
340 |
<form method="get" action="">
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
<?php $log->display(); ?>
|
342 |
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
</form>
|
344 |
</div>
|
345 |
<?php
|
268 |
/**
|
269 |
* Construct My History Page
|
270 |
* @since 0.1
|
271 |
+
* @version 1.0.1
|
272 |
*/
|
273 |
public function my_history() {
|
274 |
add_action( 'bp_template_title', array( $this, 'my_history_title' ) );
|
275 |
add_action( 'bp_template_content', array( $this, 'my_history_screen' ) );
|
276 |
add_filter( 'mycred_log_column_headers', array( $this, 'columns' ) );
|
277 |
+
add_filter( 'mycred_log_paginate_class', array( $this, 'paginate_class' ) );
|
278 |
|
279 |
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
280 |
}
|
281 |
|
282 |
+
/**
|
283 |
+
* Pagination Styling
|
284 |
+
* @since 1.5.3
|
285 |
+
* @version 1.0
|
286 |
+
*/
|
287 |
+
public function paginate_class( $classes ) {
|
288 |
+
return 'btn btn-default button button-seconday';
|
289 |
+
}
|
290 |
+
|
291 |
/**
|
292 |
* Adjust Log Columns
|
293 |
* @since 0.1
|
331 |
'ctype' => $type
|
332 |
);
|
333 |
|
334 |
+
if ( isset( $_GET['paged'] ) && $_GET['paged'] != '' )
|
335 |
+
$args['paged'] = $_GET['paged'];
|
336 |
+
|
337 |
if ( isset( $bp->canonical_stack['action'] ) && $bp->canonical_stack['action'] != $this->buddypress['history_url'] )
|
338 |
$args['time'] = $bp->canonical_stack['action'];
|
339 |
|
347 |
<form action="" id="mycred-sort-cred-history-form" method="get" style="display: block; height: 48px; float: right;"><label>Show:</label> <?php mycred_types_select_from_dropdown( 'show-ctype', 'mycred-select-type', $type ); ?> <input type="submit" class="btn btn-large btn-primary button button-large button-primary" value="<?php _e( 'Go', 'mycred' ); ?>" /></form>
|
348 |
<?php endif; ?>
|
349 |
|
350 |
+
<style type="text/css">
|
351 |
+
.pagination-links { float: right; }
|
352 |
+
.tablenav { vertical-align: middle; }
|
353 |
+
</style>
|
354 |
<div class="wrap" id="myCRED-wrap">
|
355 |
<?php $log->mobile_support(); ?>
|
356 |
|
357 |
<form method="get" action="">
|
358 |
+
<div class="tablenav top clear clearfix">
|
359 |
+
|
360 |
+
<?php if ( $log->have_entries() && $log->max_num_pages > 1 ) $log->navigation( 'top' ); ?>
|
361 |
+
|
362 |
+
</div>
|
363 |
+
|
364 |
<?php $log->display(); ?>
|
365 |
|
366 |
+
<div class="tablenav bottom clear clearfix">
|
367 |
+
|
368 |
+
<?php if ( $log->have_entries() && $log->max_num_pages > 1 ) $log->navigation( 'bottom' ); ?>
|
369 |
+
|
370 |
+
</div>
|
371 |
+
|
372 |
</form>
|
373 |
</div>
|
374 |
<?php
|
modules/mycred-module-hooks.php
CHANGED
@@ -1869,7 +1869,7 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
|
|
1869 |
/**
|
1870 |
* AJAX Call Handler
|
1871 |
* @since 1.2
|
1872 |
-
* @version 1.1
|
1873 |
*/
|
1874 |
public function ajax_call_video_points() {
|
1875 |
// We must be logged in
|
@@ -1883,7 +1883,6 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
|
|
1883 |
|
1884 |
// Decode the key giving us the video shortcode setup
|
1885 |
// This will prevent users from manipulating the shortcode output
|
1886 |
-
$protect = mycred_protect();
|
1887 |
$setup = mycred_verify_token( $_POST['setup'], 5 );
|
1888 |
if ( $setup === false ) die();
|
1889 |
|
@@ -2158,7 +2157,7 @@ jQuery(function($){
|
|
2158 |
/**
|
2159 |
* Hook for affiliations
|
2160 |
* @since 1.4
|
2161 |
-
* @version 1.
|
2162 |
*/
|
2163 |
if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
2164 |
class myCRED_Hook_Affiliate extends myCRED_Hook {
|
@@ -2213,7 +2212,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2213 |
/**
|
2214 |
* Run
|
2215 |
* @since 1.4
|
2216 |
-
* @version 1.1
|
2217 |
*/
|
2218 |
public function run() {
|
2219 |
// Insert into BuddyPress profile
|
@@ -2222,22 +2221,24 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2222 |
|
2223 |
// Hook into user activation
|
2224 |
if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) )
|
2225 |
-
add_action( '
|
2226 |
|
2227 |
// Register Shortcodes
|
2228 |
-
|
2229 |
-
|
|
|
|
|
2230 |
|
2231 |
// Logged in users do not get points
|
2232 |
if ( is_user_logged_in() && apply_filters( 'mycred_affiliate_allow_members', false ) === false ) return;
|
2233 |
|
2234 |
// Points for visits
|
2235 |
if ( $this->prefs['visit']['creds'] != 0 || $this->prefs['signup']['creds'] != 0 )
|
2236 |
-
add_action( '
|
2237 |
|
2238 |
// Points for signups
|
2239 |
if ( $this->prefs['signup']['creds'] != 0 )
|
2240 |
-
add_action( '
|
2241 |
|
2242 |
}
|
2243 |
|
@@ -2252,6 +2253,19 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2252 |
return $this->core->template_tags_user( $content, $user_id );
|
2253 |
}
|
2254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2255 |
/**
|
2256 |
* Shortcode: Affiliate Link
|
2257 |
* Appends the current users affiliate link to either a given
|
@@ -2259,9 +2273,9 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2259 |
* the set URL is returned. If this is not set, the shortcode
|
2260 |
* will return an empty string.
|
2261 |
* @since 1.4
|
2262 |
-
* @version 1.0
|
2263 |
*/
|
2264 |
-
public function shortcode_affiliate_link( $atts ) {
|
2265 |
extract( shortcode_atts( array(
|
2266 |
'url' => ''
|
2267 |
), $atts ) );
|
@@ -2277,9 +2291,9 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2277 |
* Returns the current users affiliate ID. Returns an empty
|
2278 |
* string if the user is not logged in.
|
2279 |
* @since 1.4
|
2280 |
-
* @version 1.0
|
2281 |
*/
|
2282 |
-
public function shortcode_affiliate_id( $atts ) {
|
2283 |
if ( ! is_user_logged_in() )
|
2284 |
$ref_id = '';
|
2285 |
else
|
@@ -2291,7 +2305,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2291 |
/**
|
2292 |
* BuddyPress Profile
|
2293 |
* @since 1.4
|
2294 |
-
* @version 1.
|
2295 |
*/
|
2296 |
public function buddypress_profile() {
|
2297 |
// Prep
|
@@ -2309,19 +2323,31 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2309 |
$output .= '<div class="bp-widget mycred">';
|
2310 |
|
2311 |
// Title if set
|
2312 |
-
if (
|
2313 |
$output .= '<h4>' . $this->prefs['buddypress']['title'] . '</h4>';
|
2314 |
|
2315 |
// Table
|
2316 |
-
$output .=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2317 |
|
2318 |
// Description if set
|
2319 |
if ( ! empty( $this->prefs['buddypress']['desc'] ) )
|
2320 |
-
$output .= $this->prefs['buddypress']['desc'];
|
2321 |
|
2322 |
$output .= '</div>';
|
2323 |
}
|
2324 |
|
|
|
2325 |
echo apply_filters( 'mycred_affiliate_bp_profile', $output, $user_id, $users_ref_link, $this );
|
2326 |
}
|
2327 |
|
@@ -2366,12 +2392,6 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2366 |
if ( $this->prefs['signup']['creds'] != 0 && ! headers_sent() )
|
2367 |
setcookie( 'signup_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true ) );
|
2368 |
|
2369 |
-
// Let others play
|
2370 |
-
do_action( 'mycred_affiliate_visit', $user_id, $this );
|
2371 |
-
|
2372 |
-
// Redirect to the URL without the ref key
|
2373 |
-
wp_redirect( remove_query_arg( array( $this->ref_key ) ) );
|
2374 |
-
exit;
|
2375 |
}
|
2376 |
|
2377 |
/**
|
@@ -2436,8 +2456,6 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2436 |
|
2437 |
}
|
2438 |
|
2439 |
-
// Let others play
|
2440 |
-
do_action( 'mycred_affiliate_signup', $new_user_id, $user_id, $this );
|
2441 |
}
|
2442 |
|
2443 |
/**
|
@@ -2634,7 +2652,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2634 |
/**
|
2635 |
* Preference for Affiliate Hook
|
2636 |
* @since 1.4
|
2637 |
-
* @version 1.0
|
2638 |
*/
|
2639 |
public function preferences() {
|
2640 |
$prefs = $this->prefs; ?>
|
@@ -2701,7 +2719,8 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2701 |
<li><?php _e( 'Registrations are disabled.', 'mycred' ); ?>
|
2702 |
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['signup']['creds'] ); ?>" />
|
2703 |
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['signup']['log'] ); ?>" />
|
2704 |
-
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'limit' ) ); ?>" value="<?php echo $prefs['signup']['
|
|
|
2705 |
</li>
|
2706 |
</ol>
|
2707 |
<?php endif; ?>
|
@@ -2746,7 +2765,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
|
2746 |
// Description editor
|
2747 |
wp_editor( $prefs['buddypress']['desc'], $this->field_id( array( 'buddypress' => 'desc' ) ), array(
|
2748 |
'textarea_name' => $this->field_name( array( 'buddypress' => 'desc' ) ),
|
2749 |
-
'textarea_rows' =>
|
2750 |
) );
|
2751 |
?>
|
2752 |
|
1869 |
/**
|
1870 |
* AJAX Call Handler
|
1871 |
* @since 1.2
|
1872 |
+
* @version 1.1.1
|
1873 |
*/
|
1874 |
public function ajax_call_video_points() {
|
1875 |
// We must be logged in
|
1883 |
|
1884 |
// Decode the key giving us the video shortcode setup
|
1885 |
// This will prevent users from manipulating the shortcode output
|
|
|
1886 |
$setup = mycred_verify_token( $_POST['setup'], 5 );
|
1887 |
if ( $setup === false ) die();
|
1888 |
|
2157 |
/**
|
2158 |
* Hook for affiliations
|
2159 |
* @since 1.4
|
2160 |
+
* @version 1.3
|
2161 |
*/
|
2162 |
if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
|
2163 |
class myCRED_Hook_Affiliate extends myCRED_Hook {
|
2212 |
/**
|
2213 |
* Run
|
2214 |
* @since 1.4
|
2215 |
+
* @version 1.2.1
|
2216 |
*/
|
2217 |
public function run() {
|
2218 |
// Insert into BuddyPress profile
|
2221 |
|
2222 |
// Hook into user activation
|
2223 |
if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) )
|
2224 |
+
add_action( 'mycred_bp_user_activated', array( $this, 'verified_signup' ) );
|
2225 |
|
2226 |
// Register Shortcodes
|
2227 |
+
add_filter( 'mycred_affiliate_link_' . $this->mycred_type, array( $this, 'shortcode_affiliate_link' ), 10, 2 );
|
2228 |
+
add_filter( 'mycred_affiliate_id_' . $this->mycred_type, array( $this, 'shortcode_affiliate_id' ), 10, 2 );
|
2229 |
+
|
2230 |
+
add_filter( 'mycred_referral_keys', array( $this, 'add_key' ) );
|
2231 |
|
2232 |
// Logged in users do not get points
|
2233 |
if ( is_user_logged_in() && apply_filters( 'mycred_affiliate_allow_members', false ) === false ) return;
|
2234 |
|
2235 |
// Points for visits
|
2236 |
if ( $this->prefs['visit']['creds'] != 0 || $this->prefs['signup']['creds'] != 0 )
|
2237 |
+
add_action( 'mycred_referred_visit', array( $this, 'site_visits' ) );
|
2238 |
|
2239 |
// Points for signups
|
2240 |
if ( $this->prefs['signup']['creds'] != 0 )
|
2241 |
+
add_action( 'mycred_referred_signup', array( $this, 'site_signup' ) );
|
2242 |
|
2243 |
}
|
2244 |
|
2253 |
return $this->core->template_tags_user( $content, $user_id );
|
2254 |
}
|
2255 |
|
2256 |
+
/**
|
2257 |
+
* Add Referral Key
|
2258 |
+
* @since 1.5.3
|
2259 |
+
* @version 1.0
|
2260 |
+
*/
|
2261 |
+
public function add_key( $keys ) {
|
2262 |
+
if ( ! isset( $_GET[ $this->ref_key ] ) ) return $keys;
|
2263 |
+
|
2264 |
+
if ( ! in_array( $this->ref_key, $keys ) )
|
2265 |
+
$keys[] = $this->ref_key;
|
2266 |
+
return $keys;
|
2267 |
+
}
|
2268 |
+
|
2269 |
/**
|
2270 |
* Shortcode: Affiliate Link
|
2271 |
* Appends the current users affiliate link to either a given
|
2273 |
* the set URL is returned. If this is not set, the shortcode
|
2274 |
* will return an empty string.
|
2275 |
* @since 1.4
|
2276 |
+
* @version 1.0.1
|
2277 |
*/
|
2278 |
+
public function shortcode_affiliate_link( $content = '', $atts ) {
|
2279 |
extract( shortcode_atts( array(
|
2280 |
'url' => ''
|
2281 |
), $atts ) );
|
2291 |
* Returns the current users affiliate ID. Returns an empty
|
2292 |
* string if the user is not logged in.
|
2293 |
* @since 1.4
|
2294 |
+
* @version 1.0.1
|
2295 |
*/
|
2296 |
+
public function shortcode_affiliate_id( $content = '', $atts ) {
|
2297 |
if ( ! is_user_logged_in() )
|
2298 |
$ref_id = '';
|
2299 |
else
|
2305 |
/**
|
2306 |
* BuddyPress Profile
|
2307 |
* @since 1.4
|
2308 |
+
* @version 1.1
|
2309 |
*/
|
2310 |
public function buddypress_profile() {
|
2311 |
// Prep
|
2323 |
$output .= '<div class="bp-widget mycred">';
|
2324 |
|
2325 |
// Title if set
|
2326 |
+
if ( $this->prefs['buddypress']['title'] != '' )
|
2327 |
$output .= '<h4>' . $this->prefs['buddypress']['title'] . '</h4>';
|
2328 |
|
2329 |
// Table
|
2330 |
+
$output .= '<table class="profile-fields">';
|
2331 |
+
$output .= sprintf( '<tr class="field_1 field_ref_link"><td class="label">%s</td><td>%s</td></tr>', __( 'Link', 'mycred' ), $users_ref_link );
|
2332 |
+
|
2333 |
+
// Show Visitor referral count
|
2334 |
+
if ( $this->prefs['visit']['creds'] != 0 )
|
2335 |
+
$output .= sprintf( '<tr class="field_2 field_ref_count_visit"><td class="label">%s</td><td>%s</td></tr>', __( 'Visitors Referred', 'mycred' ), mycred_count_ref_instances( 'visitor_referral', $user_id, $this->mycred_type ) );
|
2336 |
+
|
2337 |
+
// Show Signup referral count
|
2338 |
+
if ( $this->prefs['signup']['creds'] != 0 )
|
2339 |
+
$output .= sprintf( '<tr class="field_3 field_ref_count_signup"><td class="label">%s</td><td>%s</td></tr>', __( 'Signups Referred', 'mycred' ), mycred_count_ref_instances( 'signup_referral', $user_id, $this->mycred_type ) );
|
2340 |
+
|
2341 |
+
$output .= '</table>';
|
2342 |
|
2343 |
// Description if set
|
2344 |
if ( ! empty( $this->prefs['buddypress']['desc'] ) )
|
2345 |
+
$output .= wpautop( wptexturize( $this->prefs['buddypress']['desc'] ) );
|
2346 |
|
2347 |
$output .= '</div>';
|
2348 |
}
|
2349 |
|
2350 |
+
$output = do_shortcode( $output );
|
2351 |
echo apply_filters( 'mycred_affiliate_bp_profile', $output, $user_id, $users_ref_link, $this );
|
2352 |
}
|
2353 |
|
2392 |
if ( $this->prefs['signup']['creds'] != 0 && ! headers_sent() )
|
2393 |
setcookie( 'signup_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true ) );
|
2394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2395 |
}
|
2396 |
|
2397 |
/**
|
2456 |
|
2457 |
}
|
2458 |
|
|
|
|
|
2459 |
}
|
2460 |
|
2461 |
/**
|
2652 |
/**
|
2653 |
* Preference for Affiliate Hook
|
2654 |
* @since 1.4
|
2655 |
+
* @version 1.0.1
|
2656 |
*/
|
2657 |
public function preferences() {
|
2658 |
$prefs = $this->prefs; ?>
|
2719 |
<li><?php _e( 'Registrations are disabled.', 'mycred' ); ?>
|
2720 |
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['signup']['creds'] ); ?>" />
|
2721 |
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['signup']['log'] ); ?>" />
|
2722 |
+
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'limit' ) ); ?>" value="<?php echo $prefs['signup']['limit']; ?>" />
|
2723 |
+
<input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'limit_by' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'limit_by' ) ); ?>" value="<?php echo $prefs['signup']['limit_by']; ?>" />
|
2724 |
</li>
|
2725 |
</ol>
|
2726 |
<?php endif; ?>
|
2765 |
// Description editor
|
2766 |
wp_editor( $prefs['buddypress']['desc'], $this->field_id( array( 'buddypress' => 'desc' ) ), array(
|
2767 |
'textarea_name' => $this->field_name( array( 'buddypress' => 'desc' ) ),
|
2768 |
+
'textarea_rows' => 10
|
2769 |
) );
|
2770 |
?>
|
2771 |
|
modules/mycred-module-settings.php
CHANGED
@@ -599,7 +599,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) {
|
|
599 |
* Sanititze Settings
|
600 |
* @filter 'mycred_save_core_prefs'
|
601 |
* @since 0.1
|
602 |
-
* @version 1.2.
|
603 |
*/
|
604 |
public function sanitize_settings( $post ) {
|
605 |
$new_data = array();
|
@@ -677,6 +677,19 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) {
|
|
677 |
'list' => sanitize_text_field( $post['exclude']['list'] )
|
678 |
);
|
679 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
// User deletions
|
681 |
$new_data['delete_user'] = ( isset( $post['delete_user'] ) ) ? $post['delete_user'] : 0;
|
682 |
|
599 |
* Sanititze Settings
|
600 |
* @filter 'mycred_save_core_prefs'
|
601 |
* @since 0.1
|
602 |
+
* @version 1.2.2
|
603 |
*/
|
604 |
public function sanitize_settings( $post ) {
|
605 |
$new_data = array();
|
677 |
'list' => sanitize_text_field( $post['exclude']['list'] )
|
678 |
);
|
679 |
|
680 |
+
// Remove Exclude users balances
|
681 |
+
if ( $new_data['exclude']['list'] != '' ) {
|
682 |
+
$excluded_ids = explode( ',', $new_data['exclude']['list'] );
|
683 |
+
if ( ! empty( $excluded_ids ) ) {
|
684 |
+
foreach ( $exclude_ids as $user_id ) {
|
685 |
+
$user_id = absint( trim( $user_id ) );
|
686 |
+
if ( $user_id == 0 ) continue;
|
687 |
+
mycred_delete_user_meta( $user_id, $this->mycred_type );
|
688 |
+
mycred_delete_user_meta( $user_id, $this->mycred_type, '_total' );
|
689 |
+
}
|
690 |
+
}
|
691 |
+
}
|
692 |
+
|
693 |
// User deletions
|
694 |
$new_data['delete_user'] = ( isset( $post['delete_user'] ) ) ? $post['delete_user'] : 0;
|
695 |
|
mycred.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: myCRED
|
4 |
* Plugin URI: http://mycred.me
|
5 |
* Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
|
6 |
-
* Version: 1.5.
|
7 |
* Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
|
8 |
* Author: Gabriel S Merovingi
|
9 |
* Author URI: http://www.merovingi.com
|
@@ -20,7 +20,7 @@
|
|
20 |
* BuddyPress Compatible: yes
|
21 |
* Forum URI: http://mycred.me/support/forums/
|
22 |
*/
|
23 |
-
define( 'myCRED_VERSION', '1.5.
|
24 |
define( 'myCRED_SLUG', 'mycred' );
|
25 |
define( 'myCRED_NAME', '<strong>my</strong>CRED' );
|
26 |
|
@@ -188,6 +188,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
|
|
188 |
$mycred_types = mycred_get_types();
|
189 |
|
190 |
require_once( myCRED_INCLUDES_DIR . 'mycred-shortcodes.php' );
|
|
|
191 |
|
192 |
// Load Translation
|
193 |
$locale = apply_filters( 'plugin_locale', get_locale(), 'mycred' );
|
@@ -300,7 +301,7 @@ endif;
|
|
300 |
/**
|
301 |
* Init
|
302 |
* @since 1.3
|
303 |
-
* @version 1.2
|
304 |
*/
|
305 |
if ( ! function_exists( 'mycred_init' ) ) :
|
306 |
function mycred_init()
|
@@ -323,6 +324,12 @@ if ( ! function_exists( 'mycred_init' ) ) :
|
|
323 |
add_shortcode( 'mycred_total_balance', 'mycred_render_shortcode_total' );
|
324 |
add_shortcode( 'mycred_exchange', 'mycred_render_shortcode_exchange' );
|
325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
// Let others play
|
327 |
do_action( 'mycred_init' );
|
328 |
}
|
@@ -773,13 +780,14 @@ endif;
|
|
773 |
/**
|
774 |
* Reset Key
|
775 |
* @since 1.3
|
776 |
-
* @version 1.
|
777 |
*/
|
778 |
if ( ! function_exists( 'mycred_reset_key' ) ) :
|
779 |
function mycred_reset_key()
|
780 |
{
|
781 |
$protect = mycred_protect();
|
782 |
-
$protect
|
|
|
783 |
}
|
784 |
endif;
|
785 |
|
3 |
* Plugin Name: myCRED
|
4 |
* Plugin URI: http://mycred.me
|
5 |
* Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
|
6 |
+
* Version: 1.5.3
|
7 |
* Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
|
8 |
* Author: Gabriel S Merovingi
|
9 |
* Author URI: http://www.merovingi.com
|
20 |
* BuddyPress Compatible: yes
|
21 |
* Forum URI: http://mycred.me/support/forums/
|
22 |
*/
|
23 |
+
define( 'myCRED_VERSION', '1.5.3' );
|
24 |
define( 'myCRED_SLUG', 'mycred' );
|
25 |
define( 'myCRED_NAME', '<strong>my</strong>CRED' );
|
26 |
|
188 |
$mycred_types = mycred_get_types();
|
189 |
|
190 |
require_once( myCRED_INCLUDES_DIR . 'mycred-shortcodes.php' );
|
191 |
+
require_once( myCRED_INCLUDES_DIR . 'mycred-referrals.php' );
|
192 |
|
193 |
// Load Translation
|
194 |
$locale = apply_filters( 'plugin_locale', get_locale(), 'mycred' );
|
301 |
/**
|
302 |
* Init
|
303 |
* @since 1.3
|
304 |
+
* @version 1.2.1
|
305 |
*/
|
306 |
if ( ! function_exists( 'mycred_init' ) ) :
|
307 |
function mycred_init()
|
324 |
add_shortcode( 'mycred_total_balance', 'mycred_render_shortcode_total' );
|
325 |
add_shortcode( 'mycred_exchange', 'mycred_render_shortcode_exchange' );
|
326 |
|
327 |
+
// Referral System
|
328 |
+
mycred_load_referral_program();
|
329 |
+
|
330 |
+
add_shortcode( 'mycred_affiliate_link', 'mycred_render_affiliate_link' );
|
331 |
+
add_shortcode( 'mycred_affiliate_id', 'mycred_render_affiliate_id' );
|
332 |
+
|
333 |
// Let others play
|
334 |
do_action( 'mycred_init' );
|
335 |
}
|
780 |
/**
|
781 |
* Reset Key
|
782 |
* @since 1.3
|
783 |
+
* @version 1.1
|
784 |
*/
|
785 |
if ( ! function_exists( 'mycred_reset_key' ) ) :
|
786 |
function mycred_reset_key()
|
787 |
{
|
788 |
$protect = mycred_protect();
|
789 |
+
if ( $protect !== false )
|
790 |
+
$protect->reset_key();
|
791 |
}
|
792 |
endif;
|
793 |
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== myCRED ===
|
2 |
Contributors: designbymerovingi
|
3 |
-
Tags:points, tokens, credit, management, reward, charge, community, contest,
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -11,6 +11,9 @@ myCRED is an adaptive points management system that lets you award / charge your
|
|
11 |
|
12 |
== Description ==
|
13 |
|
|
|
|
|
|
|
14 |
**If you are using [YOOtheme's Radience Theme](http://yootheme.com/component/blog/2012/04/02/radiance-theme), please make sure you backup your database before installing myCRED.**
|
15 |
|
16 |
I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
|
@@ -45,7 +48,7 @@ If you are comfortable with PHP or have some experience with customising your Wo
|
|
45 |
|
46 |
== Installation ==
|
47 |
|
48 |
-
**
|
49 |
|
50 |
[myCRED Codex - Setup Guides](http://codex.mycred.me/get-started/)
|
51 |
|
@@ -102,8 +105,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
|
|
102 |
|
103 |
== Upgrade Notice ==
|
104 |
|
105 |
-
= 1.5.
|
106 |
-
|
107 |
|
108 |
|
109 |
== Other Notes ==
|
@@ -117,7 +120,7 @@ Important bug fixes and new version of the Banking add-on.
|
|
117 |
= Language Contributors =
|
118 |
* Swedish - Gabriel S Merovingi
|
119 |
* French - Chouf1 [Dan - BuddyPress France](http://bp-fr.net/)
|
120 |
-
* Persian - Mani Akhtar
|
121 |
* Spanish - Rob Row [Website](http://robertrowshan.com)
|
122 |
* Russian - Skladchik
|
123 |
* Chinese - Changmeng Hu
|
@@ -126,17 +129,21 @@ Important bug fixes and new version of the Banking add-on.
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
= 1.5.2 =
|
130 |
-
|
131 |
-
* NEW - Added new mycred_delete_option function.
|
132 |
-
* FIX - Sell Content profit share should delete a user override instead of saving an empty value.
|
133 |
-
* FIX - Log entries and log filters are redirecting to main point type.
|
134 |
-
* FIX - Daily visit hook is not awarding points.'
|
135 |
-
* FIX - Parsing WooCommerce log entries while WooCommerce is disabled causes fatal error.
|
136 |
-
* TWEAK - Adjusted the mycred_history shortcode to allow showing all log entries and not just the current users. Also updated the codex to reflect the changes.
|
137 |
-
* TWEAK - Added ID to the BuddyPress points history filter form (if using multiple point types).
|
138 |
-
* TWEAK - Added mycred_badge to the uninstaller script.
|
139 |
-
* TWEAK - Adjusted the mycred_transfer shortcode processing function to allow easier customisations.
|
140 |
|
141 |
= 1.5.1 =
|
142 |
http://mycred.me/support/changelog/
|
1 |
=== myCRED ===
|
2 |
Contributors: designbymerovingi
|
3 |
+
Tags:points, tokens, credit, management, reward, charge, community, contest, buddypress, jetpack, bbpress, simple press, woocommerce, marketpress, wp e-commerce, gravity forms, share-this
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.0
|
6 |
+
Stable tag: 1.5.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
> #### Plugin Support
|
15 |
+
> Free support is offered Monday - Friday 9 - 5 (UTC+1). Please note that myCRED has it's own [support forum](http://mycred.me/support/forums/) which is prioritised over the wordpress.org support forum!
|
16 |
+
|
17 |
**If you are using [YOOtheme's Radience Theme](http://yootheme.com/component/blog/2012/04/02/radiance-theme), please make sure you backup your database before installing myCRED.**
|
18 |
|
19 |
I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
|
48 |
|
49 |
== Installation ==
|
50 |
|
51 |
+
**myCRED Guides**
|
52 |
|
53 |
[myCRED Codex - Setup Guides](http://codex.mycred.me/get-started/)
|
54 |
|
105 |
|
106 |
== Upgrade Notice ==
|
107 |
|
108 |
+
= 1.5.3 =
|
109 |
+
BadgeOS Hook update, referral hook update and minor bug fixes.
|
110 |
|
111 |
|
112 |
== Other Notes ==
|
120 |
= Language Contributors =
|
121 |
* Swedish - Gabriel S Merovingi
|
122 |
* French - Chouf1 [Dan - BuddyPress France](http://bp-fr.net/)
|
123 |
+
* Persian - Mani Akhtar
|
124 |
* Spanish - Rob Row [Website](http://robertrowshan.com)
|
125 |
* Russian - Skladchik
|
126 |
* Chinese - Changmeng Hu
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 1.5.3 =
|
133 |
+
* FIX - mycred_total_balance shortcode is not working correctly.
|
134 |
+
* NEW - Added support for pagination for the mycred_history shortcode.
|
135 |
+
* NEW - Added support for pagination for the BuddyPress points history page.
|
136 |
+
* NEW - Added support for multiple point types for the Referral hook.
|
137 |
+
* FIX - Changed how mcrypt library check is done during activation.
|
138 |
+
* NEW - Added new MYCRED_DISABLE_PROTECTION constant to disable the use of the mcrypt library.
|
139 |
+
* FIX - Adjusted Events Manager to prevent crash when using an older version of the Pro plugin.
|
140 |
+
* NEW - Added support for multiple point types for the BadgeOS hook.
|
141 |
+
* TWEAK - myCRED should not do anything with toolbar if DOING_AJAX.
|
142 |
+
* NEW - Added new function to count log entries based on reference and reference ids.
|
143 |
+
* UPDATE - Updated the Spanish Translation. (Thanks Rob)
|
144 |
+
|
145 |
= 1.5.2 =
|
146 |
+
http://mycred.me/support/changelog/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
|
148 |
= 1.5.1 =
|
149 |
http://mycred.me/support/changelog/
|