Version Description
- Corrigido erros na tela de configuraes do plugin.
- Corrigido os campos de estado e pas na tela de edio de usurio no administrador do WordPress.
=
Download this release
Release Info
| Developer | claudiosanches |
| Plugin | |
| Version | 3.4.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.4.0 to 3.4.1
- includes/admin/class-wc-ecfb-admin.php +1 -3
- includes/admin/class-wc-ecfb-customer.php +35 -100
- includes/admin/class-wc-ecfb-order.php +12 -12
- includes/admin/class-wc-ecfb-settings.php +1 -1
- languages/woocommerce-extra-checkout-fields-for-brazil-pt_BR.mo +0 -0
- languages/woocommerce-extra-checkout-fields-for-brazil-pt_BR.po +167 -213
- languages/woocommerce-extra-checkout-fields-for-brazil.pot +145 -187
- readme.txt +11 -7
- woocommerce-extra-checkout-fields-for-brazil.php +2 -2
includes/admin/class-wc-ecfb-admin.php
CHANGED
|
@@ -23,11 +23,9 @@ class Extra_Checkout_Fields_For_Brazil_Admin {
|
|
| 23 |
*/
|
| 24 |
public function admin_scripts() {
|
| 25 |
$screen = get_current_screen();
|
|
|
|
| 26 |
|
| 27 |
if ( 'shop_order' == $screen->id ) {
|
| 28 |
-
|
| 29 |
-
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
| 30 |
-
|
| 31 |
// Get plugin settings.
|
| 32 |
$settings = get_option( 'wcbcf_settings' );
|
| 33 |
|
| 23 |
*/
|
| 24 |
public function admin_scripts() {
|
| 25 |
$screen = get_current_screen();
|
| 26 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
| 27 |
|
| 28 |
if ( 'shop_order' == $screen->id ) {
|
|
|
|
|
|
|
|
|
|
| 29 |
// Get plugin settings.
|
| 30 |
$settings = get_option( 'wcbcf_settings' );
|
| 31 |
|
includes/admin/class-wc-ecfb-customer.php
CHANGED
|
@@ -25,32 +25,24 @@ class Extra_Checkout_Fields_For_Brazil_Customer {
|
|
| 25 |
* @return array Custom fields.
|
| 26 |
*/
|
| 27 |
public function customer_meta_fields( $fields ) {
|
| 28 |
-
unset( $fields );
|
| 29 |
-
|
| 30 |
// Get plugin settings.
|
| 31 |
$settings = get_option( 'wcbcf_settings' );
|
| 32 |
|
| 33 |
// Billing fields.
|
| 34 |
-
$
|
| 35 |
-
$
|
| 36 |
-
|
| 37 |
-
'description' => ''
|
| 38 |
-
);
|
| 39 |
-
$fields['billing']['fields']['billing_last_name'] = array(
|
| 40 |
-
'label' => __( 'Last name', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 41 |
-
'description' => ''
|
| 42 |
-
);
|
| 43 |
|
| 44 |
if ( 0 != $settings['person_type'] ) {
|
| 45 |
|
| 46 |
if ( 1 == $settings['person_type'] || 2 == $settings['person_type'] ) {
|
| 47 |
-
$
|
| 48 |
'label' => __( 'CPF', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 49 |
'description' => ''
|
| 50 |
);
|
| 51 |
|
| 52 |
if ( isset( $settings['rg'] ) ) {
|
| 53 |
-
$
|
| 54 |
'label' => __( 'RG', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 55 |
'description' => ''
|
| 56 |
);
|
|
@@ -58,137 +50,80 @@ class Extra_Checkout_Fields_For_Brazil_Customer {
|
|
| 58 |
}
|
| 59 |
|
| 60 |
if ( 1 == $settings['person_type'] || 3 == $settings['person_type'] ) {
|
| 61 |
-
$
|
| 62 |
-
|
| 63 |
-
'description' => ''
|
| 64 |
-
);
|
| 65 |
-
$fields['billing']['fields']['billing_cnpj'] = array(
|
| 66 |
'label' => __( 'CNPJ', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 67 |
'description' => ''
|
| 68 |
);
|
| 69 |
|
| 70 |
if ( isset( $settings['ie'] ) ) {
|
| 71 |
-
$
|
| 72 |
'label' => __( 'State Registration', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 73 |
'description' => ''
|
| 74 |
);
|
| 75 |
}
|
| 76 |
}
|
| 77 |
} else {
|
| 78 |
-
$
|
| 79 |
-
'label' => __( 'Company', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 80 |
-
'description' => ''
|
| 81 |
-
);
|
| 82 |
}
|
| 83 |
|
| 84 |
if ( isset( $settings['birthdate_sex'] ) ) {
|
| 85 |
-
$
|
| 86 |
'label' => __( 'Birthdate', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 87 |
'description' => ''
|
| 88 |
);
|
| 89 |
-
$
|
| 90 |
'label' => __( 'Sex', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 91 |
'description' => ''
|
| 92 |
);
|
| 93 |
}
|
| 94 |
|
| 95 |
-
$
|
| 96 |
-
|
| 97 |
-
'description' => __( '2 letter Country code', 'woocommerce-extra-checkout-fields-for-brazil' )
|
| 98 |
-
);
|
| 99 |
-
$fields['billing']['fields']['billing_postcode'] = array(
|
| 100 |
-
'label' => __( 'Postcode', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 101 |
-
'description' => ''
|
| 102 |
-
);
|
| 103 |
-
$fields['billing']['fields']['billing_address_1'] = array(
|
| 104 |
-
'label' => __( 'Address 1', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 105 |
-
'description' => ''
|
| 106 |
-
);
|
| 107 |
-
$fields['billing']['fields']['billing_number'] = array(
|
| 108 |
'label' => __( 'Number', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 109 |
'description' => ''
|
| 110 |
);
|
| 111 |
-
$
|
| 112 |
-
|
| 113 |
-
'description' => ''
|
| 114 |
-
);
|
| 115 |
-
$fields['billing']['fields']['billing_neighborhood'] = array(
|
| 116 |
'label' => __( 'Neighborhood', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 117 |
'description' => ''
|
| 118 |
);
|
| 119 |
-
$
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
$
|
| 124 |
-
'label' => __( 'State', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 125 |
-
'description' => __( 'State code', 'woocommerce-extra-checkout-fields-for-brazil' )
|
| 126 |
-
);
|
| 127 |
-
$fields['billing']['fields']['billing_phone'] = array(
|
| 128 |
-
'label' => __( 'Telephone', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 129 |
-
'description' => ''
|
| 130 |
-
);
|
| 131 |
|
| 132 |
if ( isset( $settings['cell_phone'] ) ) {
|
| 133 |
-
$
|
| 134 |
'label' => __( 'Cell Phone', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 135 |
'description' => ''
|
| 136 |
);
|
| 137 |
}
|
| 138 |
|
| 139 |
-
$
|
| 140 |
-
'label' => __( 'Email', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 141 |
-
'description' => ''
|
| 142 |
-
);
|
| 143 |
|
| 144 |
// Shipping fields.
|
| 145 |
-
$
|
| 146 |
-
$
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
$
|
| 151 |
-
'label' => __( 'Last name', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 152 |
-
'description' => ''
|
| 153 |
-
);
|
| 154 |
-
$fields['shipping']['fields']['shipping_company'] = array(
|
| 155 |
-
'label' => __( 'Company', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 156 |
-
'description' => ''
|
| 157 |
-
);
|
| 158 |
-
$fields['shipping']['fields']['shipping_country'] = array(
|
| 159 |
-
'label' => __( 'Country', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 160 |
-
'description' => __( '2 letter Country code', 'woocommerce-extra-checkout-fields-for-brazil' )
|
| 161 |
-
);
|
| 162 |
-
$fields['shipping']['fields']['shipping_postcode'] = array(
|
| 163 |
-
'label' => __( 'Postcode', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 164 |
-
'description' => ''
|
| 165 |
-
);
|
| 166 |
-
$fields['shipping']['fields']['shipping_address_1'] = array(
|
| 167 |
-
'label' => __( 'Address 1', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 168 |
-
'description' => ''
|
| 169 |
-
);
|
| 170 |
-
$fields['shipping']['fields']['shipping_number'] = array(
|
| 171 |
'label' => __( 'Number', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 172 |
'description' => ''
|
| 173 |
);
|
| 174 |
-
$
|
| 175 |
-
|
| 176 |
-
'description' => ''
|
| 177 |
-
);
|
| 178 |
-
$fields['shipping']['fields']['shipping_neighborhood'] = array(
|
| 179 |
'label' => __( 'Neighborhood', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 180 |
'description' => ''
|
| 181 |
);
|
| 182 |
-
$
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
$fields['shipping']['fields']['shipping_state'] = array(
|
| 187 |
-
'label' => __( 'State', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 188 |
-
'description' => __( 'State code', 'woocommerce-extra-checkout-fields-for-brazil' )
|
| 189 |
-
);
|
| 190 |
|
| 191 |
-
$new_fields = apply_filters( 'wcbcf_customer_meta_fields', $
|
| 192 |
|
| 193 |
return $new_fields;
|
| 194 |
}
|
| 25 |
* @return array Custom fields.
|
| 26 |
*/
|
| 27 |
public function customer_meta_fields( $fields ) {
|
|
|
|
|
|
|
| 28 |
// Get plugin settings.
|
| 29 |
$settings = get_option( 'wcbcf_settings' );
|
| 30 |
|
| 31 |
// Billing fields.
|
| 32 |
+
$new_fields['billing']['title'] = __( 'Customer Billing Address', 'woocommerce-extra-checkout-fields-for-brazil' );
|
| 33 |
+
$new_fields['billing']['fields']['billing_first_name'] = $fields['billing']['fields']['billing_first_name'];
|
| 34 |
+
$new_fields['billing']['fields']['billing_last_name'] = $fields['billing']['fields']['billing_last_name'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
if ( 0 != $settings['person_type'] ) {
|
| 37 |
|
| 38 |
if ( 1 == $settings['person_type'] || 2 == $settings['person_type'] ) {
|
| 39 |
+
$new_fields['billing']['fields']['billing_cpf'] = array(
|
| 40 |
'label' => __( 'CPF', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 41 |
'description' => ''
|
| 42 |
);
|
| 43 |
|
| 44 |
if ( isset( $settings['rg'] ) ) {
|
| 45 |
+
$new_fields['billing']['fields']['billing_rg'] = array(
|
| 46 |
'label' => __( 'RG', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 47 |
'description' => ''
|
| 48 |
);
|
| 50 |
}
|
| 51 |
|
| 52 |
if ( 1 == $settings['person_type'] || 3 == $settings['person_type'] ) {
|
| 53 |
+
$new_fields['billing']['fields']['billing_company'] = $fields['billing']['fields']['billing_company'];
|
| 54 |
+
$new_fields['billing']['fields']['billing_cnpj'] = array(
|
|
|
|
|
|
|
|
|
|
| 55 |
'label' => __( 'CNPJ', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 56 |
'description' => ''
|
| 57 |
);
|
| 58 |
|
| 59 |
if ( isset( $settings['ie'] ) ) {
|
| 60 |
+
$new_fields['billing']['fields']['billing_ie'] = array(
|
| 61 |
'label' => __( 'State Registration', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 62 |
'description' => ''
|
| 63 |
);
|
| 64 |
}
|
| 65 |
}
|
| 66 |
} else {
|
| 67 |
+
$new_fields['billing']['fields']['billing_company'] = $fields['billing']['fields']['billing_company'];
|
|
|
|
|
|
|
|
|
|
| 68 |
}
|
| 69 |
|
| 70 |
if ( isset( $settings['birthdate_sex'] ) ) {
|
| 71 |
+
$new_fields['billing']['fields']['billing_birthdate'] = array(
|
| 72 |
'label' => __( 'Birthdate', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 73 |
'description' => ''
|
| 74 |
);
|
| 75 |
+
$new_fields['billing']['fields']['billing_sex'] = array(
|
| 76 |
'label' => __( 'Sex', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 77 |
'description' => ''
|
| 78 |
);
|
| 79 |
}
|
| 80 |
|
| 81 |
+
$new_fields['billing']['fields']['billing_address_1'] = $fields['billing']['fields']['billing_address_1'];
|
| 82 |
+
$new_fields['billing']['fields']['billing_number'] = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
'label' => __( 'Number', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 84 |
'description' => ''
|
| 85 |
);
|
| 86 |
+
$new_fields['billing']['fields']['billing_address_2'] = $fields['billing']['fields']['billing_address_2'];
|
| 87 |
+
$new_fields['billing']['fields']['billing_neighborhood'] = array(
|
|
|
|
|
|
|
|
|
|
| 88 |
'label' => __( 'Neighborhood', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 89 |
'description' => ''
|
| 90 |
);
|
| 91 |
+
$new_fields['billing']['fields']['billing_city'] = $fields['billing']['fields']['billing_city'];
|
| 92 |
+
$new_fields['billing']['fields']['billing_postcode'] = $fields['billing']['fields']['billing_postcode'];
|
| 93 |
+
$new_fields['billing']['fields']['billing_country'] = $fields['billing']['fields']['billing_country'];
|
| 94 |
+
$new_fields['billing']['fields']['billing_state'] = $fields['billing']['fields']['billing_state'];
|
| 95 |
+
$new_fields['billing']['fields']['billing_phone'] = $fields['billing']['fields']['billing_phone'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
|
| 97 |
if ( isset( $settings['cell_phone'] ) ) {
|
| 98 |
+
$new_fields['billing']['fields']['billing_cellphone'] = array(
|
| 99 |
'label' => __( 'Cell Phone', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 100 |
'description' => ''
|
| 101 |
);
|
| 102 |
}
|
| 103 |
|
| 104 |
+
$new_fields['billing']['fields']['billing_email'] = $fields['billing']['fields']['billing_email'];
|
|
|
|
|
|
|
|
|
|
| 105 |
|
| 106 |
// Shipping fields.
|
| 107 |
+
$new_fields['shipping']['title'] = __( 'Customer Shipping Address', 'woocommerce-extra-checkout-fields-for-brazil' );
|
| 108 |
+
$new_fields['shipping']['fields']['shipping_first_name'] = $fields['shipping']['fields']['shipping_first_name'];
|
| 109 |
+
$new_fields['shipping']['fields']['shipping_last_name'] = $fields['shipping']['fields']['shipping_last_name'];
|
| 110 |
+
$new_fields['shipping']['fields']['shipping_company'] = $fields['shipping']['fields']['shipping_company'];
|
| 111 |
+
$new_fields['shipping']['fields']['shipping_address_1'] = $fields['shipping']['fields']['shipping_address_1'];
|
| 112 |
+
$new_fields['shipping']['fields']['shipping_number'] = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
'label' => __( 'Number', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 114 |
'description' => ''
|
| 115 |
);
|
| 116 |
+
$new_fields['shipping']['fields']['shipping_address_2'] = $fields['shipping']['fields']['shipping_address_2'];
|
| 117 |
+
$new_fields['shipping']['fields']['shipping_neighborhood'] = array(
|
|
|
|
|
|
|
|
|
|
| 118 |
'label' => __( 'Neighborhood', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 119 |
'description' => ''
|
| 120 |
);
|
| 121 |
+
$new_fields['shipping']['fields']['shipping_city'] = $fields['shipping']['fields']['shipping_city'];
|
| 122 |
+
$new_fields['shipping']['fields']['shipping_postcode'] = $fields['shipping']['fields']['shipping_postcode'];
|
| 123 |
+
$new_fields['shipping']['fields']['shipping_country'] = $fields['shipping']['fields']['shipping_country'];
|
| 124 |
+
$new_fields['shipping']['fields']['shipping_state'] = $fields['shipping']['fields']['shipping_state'];
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
|
| 126 |
+
$new_fields = apply_filters( 'wcbcf_customer_meta_fields', $new_fields );
|
| 127 |
|
| 128 |
return $new_fields;
|
| 129 |
}
|
includes/admin/class-wc-ecfb-order.php
CHANGED
|
@@ -263,42 +263,42 @@ class Extra_Checkout_Fields_For_Brazil_Order {
|
|
| 263 |
|
| 264 |
// Person type information.
|
| 265 |
if ( ( 1 == $order->billing_persontype && 1 == $settings['person_type'] ) || 2 == $settings['person_type'] ) {
|
| 266 |
-
$html .= '<strong>' . __( 'CPF', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_cpf . '<br />';
|
| 267 |
|
| 268 |
if ( isset( $settings['rg'] ) ) {
|
| 269 |
-
$html .= '<strong>' . __( 'RG', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_rg . '<br />';
|
| 270 |
}
|
| 271 |
}
|
| 272 |
|
| 273 |
if ( ( 2 == $order->billing_persontype && 1 == $settings['person_type'] ) || 3 == $settings['person_type'] ) {
|
| 274 |
-
$html .= '<strong>' . __( 'Company Name', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_company . '<br />';
|
| 275 |
-
$html .= '<strong>' . __( 'CNPJ', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_cnpj . '<br />';
|
| 276 |
|
| 277 |
if ( isset( $settings['ie'] ) ) {
|
| 278 |
-
$html .= '<strong>' . __( 'State Registration', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_ie . '<br />';
|
| 279 |
}
|
| 280 |
}
|
| 281 |
} else {
|
| 282 |
-
$html .= '<strong>' . __( 'Company', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_company . '<br />';
|
| 283 |
}
|
| 284 |
|
| 285 |
if ( isset( $settings['birthdate_sex'] ) ) {
|
| 286 |
|
| 287 |
// Birthdate information.
|
| 288 |
-
$html .= '<strong>' . __( 'Birthdate', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_birthdate . '<br />';
|
| 289 |
|
| 290 |
// Sex Information.
|
| 291 |
-
$html .= '<strong>' . __( 'Sex', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_sex . '<br />';
|
| 292 |
}
|
| 293 |
|
| 294 |
-
$html .= '<strong>' . __( 'Phone', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_phone . '<br />';
|
| 295 |
|
| 296 |
// Cell Phone Information.
|
| 297 |
-
if (
|
| 298 |
-
$html .= '<strong>' . __( 'Cell Phone', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_cellphone . '<br />';
|
| 299 |
}
|
| 300 |
|
| 301 |
-
$html .= '<strong>' . __( 'Email', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . $order->billing_email . '<br />';
|
| 302 |
|
| 303 |
$html .= '</p>';
|
| 304 |
|
| 263 |
|
| 264 |
// Person type information.
|
| 265 |
if ( ( 1 == $order->billing_persontype && 1 == $settings['person_type'] ) || 2 == $settings['person_type'] ) {
|
| 266 |
+
$html .= '<strong>' . __( 'CPF', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_cpf ) . '<br />';
|
| 267 |
|
| 268 |
if ( isset( $settings['rg'] ) ) {
|
| 269 |
+
$html .= '<strong>' . __( 'RG', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_rg ) . '<br />';
|
| 270 |
}
|
| 271 |
}
|
| 272 |
|
| 273 |
if ( ( 2 == $order->billing_persontype && 1 == $settings['person_type'] ) || 3 == $settings['person_type'] ) {
|
| 274 |
+
$html .= '<strong>' . __( 'Company Name', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_company ) . '<br />';
|
| 275 |
+
$html .= '<strong>' . __( 'CNPJ', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_cnpj ) . '<br />';
|
| 276 |
|
| 277 |
if ( isset( $settings['ie'] ) ) {
|
| 278 |
+
$html .= '<strong>' . __( 'State Registration', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_ie ) . '<br />';
|
| 279 |
}
|
| 280 |
}
|
| 281 |
} else {
|
| 282 |
+
$html .= '<strong>' . __( 'Company', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_company ) . '<br />';
|
| 283 |
}
|
| 284 |
|
| 285 |
if ( isset( $settings['birthdate_sex'] ) ) {
|
| 286 |
|
| 287 |
// Birthdate information.
|
| 288 |
+
$html .= '<strong>' . __( 'Birthdate', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_birthdate ) . '<br />';
|
| 289 |
|
| 290 |
// Sex Information.
|
| 291 |
+
$html .= '<strong>' . __( 'Sex', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_sex ) . '<br />';
|
| 292 |
}
|
| 293 |
|
| 294 |
+
$html .= '<strong>' . __( 'Phone', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_phone ) . '<br />';
|
| 295 |
|
| 296 |
// Cell Phone Information.
|
| 297 |
+
if ( ! empty( $order->billing_cellphone ) ) {
|
| 298 |
+
$html .= '<strong>' . __( 'Cell Phone', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . esc_html( $order->billing_cellphone ) . '<br />';
|
| 299 |
}
|
| 300 |
|
| 301 |
+
$html .= '<strong>' . __( 'Email', 'woocommerce-extra-checkout-fields-for-brazil' ) . ': </strong>' . make_clickable( esc_html( $order->billing_email ) ) . '<br />';
|
| 302 |
|
| 303 |
$html .= '</p>';
|
| 304 |
|
includes/admin/class-wc-ecfb-settings.php
CHANGED
|
@@ -74,7 +74,7 @@ class Extra_Checkout_Fields_For_Brazil_Settings {
|
|
| 74 |
// Person Type is Required option.
|
| 75 |
add_settings_field(
|
| 76 |
'only_brazil',
|
| 77 |
-
__( 'Person Type is
|
| 78 |
array( $this, 'checkbox_element_callback' ),
|
| 79 |
$option,
|
| 80 |
'options_section',
|
| 74 |
// Person Type is Required option.
|
| 75 |
add_settings_field(
|
| 76 |
'only_brazil',
|
| 77 |
+
__( 'Person Type is required only in Brazil?', 'woocommerce-extra-checkout-fields-for-brazil' ),
|
| 78 |
array( $this, 'checkbox_element_callback' ),
|
| 79 |
$option,
|
| 80 |
'options_section',
|
languages/woocommerce-extra-checkout-fields-for-brazil-pt_BR.mo
CHANGED
|
Binary file
|
languages/woocommerce-extra-checkout-fields-for-brazil-pt_BR.po
CHANGED
|
@@ -1,10 +1,9 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: WooCommerce Extra Checkout Fields for Brazil v3.3.0\n"
|
| 4 |
-
"Report-Msgid-Bugs-To:
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"PO-Revision-Date: 2015-08-18 20:29-0300\n"
|
| 8 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 9 |
"Language-Team: \n"
|
| 10 |
"Language: pt_BR\n"
|
|
@@ -21,34 +20,22 @@ msgstr ""
|
|
| 21 |
"X-Poedit-SearchPath-0: .\n"
|
| 22 |
|
| 23 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 24 |
-
#: includes/admin/class-wc-ecfb-admin.php:
|
| 25 |
msgid "Load the customer extras data?"
|
| 26 |
msgstr "Carregar informações adicionais do cliente?"
|
| 27 |
|
| 28 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 29 |
-
#: includes/admin/class-wc-ecfb-admin.php:
|
| 30 |
msgid "Also copy the data of number and neighborhood?"
|
| 31 |
msgstr "Copiar também as informações de número e bairro?"
|
| 32 |
|
| 33 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 34 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 35 |
msgid "Customer Billing Address"
|
| 36 |
msgstr "Endereço de Cobrança do Cliente"
|
| 37 |
|
| 38 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 39 |
-
#: includes/admin/class-wc-ecfb-customer.php:36
|
| 40 |
-
#: includes/admin/class-wc-ecfb-customer.php:147
|
| 41 |
-
msgid "First name"
|
| 42 |
-
msgstr "Nome"
|
| 43 |
-
|
| 44 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 45 |
#: includes/admin/class-wc-ecfb-customer.php:40
|
| 46 |
-
#: includes/admin/class-wc-ecfb-customer.php:151
|
| 47 |
-
msgid "Last name"
|
| 48 |
-
msgstr "Sobrenome"
|
| 49 |
-
|
| 50 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 51 |
-
#: includes/admin/class-wc-ecfb-customer.php:48
|
| 52 |
#: includes/admin/class-wc-ecfb-order.php:58
|
| 53 |
#: includes/admin/class-wc-ecfb-order.php:266
|
| 54 |
#: includes/class-wc-ecfb-front-end.php:150
|
|
@@ -59,7 +46,7 @@ msgid "CPF"
|
|
| 59 |
msgstr "CPF"
|
| 60 |
|
| 61 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 62 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 63 |
#: includes/admin/class-wc-ecfb-order.php:62
|
| 64 |
#: includes/admin/class-wc-ecfb-order.php:269
|
| 65 |
#: includes/class-wc-ecfb-front-end.php:158
|
|
@@ -68,15 +55,7 @@ msgid "RG"
|
|
| 68 |
msgstr "RG"
|
| 69 |
|
| 70 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 71 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 72 |
-
#: includes/admin/class-wc-ecfb-order.php:69
|
| 73 |
-
#: includes/admin/class-wc-ecfb-order.php:274
|
| 74 |
-
#: includes/class-wc-ecfb-front-end.php:177
|
| 75 |
-
msgid "Company Name"
|
| 76 |
-
msgstr "Razão Social"
|
| 77 |
-
|
| 78 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 79 |
-
#: includes/admin/class-wc-ecfb-customer.php:66
|
| 80 |
#: includes/admin/class-wc-ecfb-order.php:72
|
| 81 |
#: includes/admin/class-wc-ecfb-order.php:275
|
| 82 |
#: includes/class-wc-ecfb-front-end.php:187
|
|
@@ -87,7 +66,7 @@ msgid "CNPJ"
|
|
| 87 |
msgstr "CNPJ"
|
| 88 |
|
| 89 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 90 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 91 |
#: includes/admin/class-wc-ecfb-order.php:76
|
| 92 |
#: includes/admin/class-wc-ecfb-order.php:278
|
| 93 |
#: includes/class-wc-ecfb-front-end.php:194
|
|
@@ -96,19 +75,7 @@ msgid "State Registration"
|
|
| 96 |
msgstr "Inscrição Estadual"
|
| 97 |
|
| 98 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 99 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 100 |
-
#: includes/admin/class-wc-ecfb-customer.php:155
|
| 101 |
-
#: includes/admin/class-wc-ecfb-order.php:83
|
| 102 |
-
#: includes/admin/class-wc-ecfb-order.php:169
|
| 103 |
-
#: includes/admin/class-wc-ecfb-order.php:282
|
| 104 |
-
#: includes/class-wc-ecfb-front-end.php:213
|
| 105 |
-
#: includes/class-wc-ecfb-front-end.php:400
|
| 106 |
-
#: includes/class-wc-ecfb-front-end.php:514
|
| 107 |
-
msgid "Company"
|
| 108 |
-
msgstr "Empresa"
|
| 109 |
-
|
| 110 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 111 |
-
#: includes/admin/class-wc-ecfb-customer.php:86
|
| 112 |
#: includes/admin/class-wc-ecfb-order.php:90
|
| 113 |
#: includes/admin/class-wc-ecfb-order.php:288
|
| 114 |
#: includes/class-wc-ecfb-front-end.php:224
|
|
@@ -116,7 +83,7 @@ msgid "Birthdate"
|
|
| 116 |
msgstr "Data de Nascimento"
|
| 117 |
|
| 118 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 119 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 120 |
#: includes/admin/class-wc-ecfb-order.php:93
|
| 121 |
#: includes/admin/class-wc-ecfb-order.php:291
|
| 122 |
#: includes/class-wc-ecfb-front-end.php:234
|
|
@@ -124,40 +91,8 @@ msgid "Sex"
|
|
| 124 |
msgstr "Sexo"
|
| 125 |
|
| 126 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 127 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 128 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 129 |
-
#: includes/admin/class-wc-ecfb-order.php:122
|
| 130 |
-
#: includes/admin/class-wc-ecfb-order.php:197
|
| 131 |
-
#: includes/class-wc-ecfb-front-end.php:250
|
| 132 |
-
#: includes/class-wc-ecfb-front-end.php:408
|
| 133 |
-
msgid "Country"
|
| 134 |
-
msgstr "País"
|
| 135 |
-
|
| 136 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 137 |
-
#: includes/admin/class-wc-ecfb-customer.php:97
|
| 138 |
-
#: includes/admin/class-wc-ecfb-customer.php:160
|
| 139 |
-
msgid "2 letter Country code"
|
| 140 |
-
msgstr "Código de duas letras"
|
| 141 |
-
|
| 142 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 143 |
-
#: includes/admin/class-wc-ecfb-customer.php:100
|
| 144 |
-
#: includes/admin/class-wc-ecfb-customer.php:163
|
| 145 |
-
#: includes/admin/class-wc-ecfb-order.php:130
|
| 146 |
-
#: includes/admin/class-wc-ecfb-order.php:205
|
| 147 |
-
msgid "Postcode"
|
| 148 |
-
msgstr "CEP"
|
| 149 |
-
|
| 150 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 151 |
-
#: includes/admin/class-wc-ecfb-customer.php:104
|
| 152 |
-
#: includes/admin/class-wc-ecfb-customer.php:167
|
| 153 |
-
#: includes/admin/class-wc-ecfb-order.php:98
|
| 154 |
-
#: includes/admin/class-wc-ecfb-order.php:173
|
| 155 |
-
msgid "Address 1"
|
| 156 |
-
msgstr "Endereço"
|
| 157 |
-
|
| 158 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 159 |
-
#: includes/admin/class-wc-ecfb-customer.php:108
|
| 160 |
-
#: includes/admin/class-wc-ecfb-customer.php:171
|
| 161 |
#: includes/admin/class-wc-ecfb-order.php:102
|
| 162 |
#: includes/admin/class-wc-ecfb-order.php:177
|
| 163 |
#: includes/class-wc-ecfb-front-end.php:276
|
|
@@ -166,16 +101,8 @@ msgid "Number"
|
|
| 166 |
msgstr "Número"
|
| 167 |
|
| 168 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 169 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 170 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 171 |
-
#: includes/admin/class-wc-ecfb-order.php:106
|
| 172 |
-
#: includes/admin/class-wc-ecfb-order.php:181
|
| 173 |
-
msgid "Address 2"
|
| 174 |
-
msgstr "Complemento"
|
| 175 |
-
|
| 176 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 177 |
-
#: includes/admin/class-wc-ecfb-customer.php:116
|
| 178 |
-
#: includes/admin/class-wc-ecfb-customer.php:179
|
| 179 |
#: includes/admin/class-wc-ecfb-order.php:110
|
| 180 |
#: includes/admin/class-wc-ecfb-order.php:185
|
| 181 |
#: includes/class-wc-ecfb-front-end.php:292
|
|
@@ -184,39 +111,7 @@ msgid "Neighborhood"
|
|
| 184 |
msgstr "Bairro"
|
| 185 |
|
| 186 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 187 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 188 |
-
#: includes/admin/class-wc-ecfb-customer.php:183
|
| 189 |
-
#: includes/admin/class-wc-ecfb-order.php:114
|
| 190 |
-
#: includes/admin/class-wc-ecfb-order.php:189
|
| 191 |
-
#: includes/class-wc-ecfb-front-end.php:300
|
| 192 |
-
#: includes/class-wc-ecfb-front-end.php:457
|
| 193 |
-
msgid "City"
|
| 194 |
-
msgstr "Cidade"
|
| 195 |
-
|
| 196 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 197 |
-
#: includes/admin/class-wc-ecfb-customer.php:124
|
| 198 |
-
#: includes/admin/class-wc-ecfb-customer.php:187
|
| 199 |
-
#: includes/admin/class-wc-ecfb-order.php:118
|
| 200 |
-
#: includes/admin/class-wc-ecfb-order.php:193
|
| 201 |
-
#: includes/class-wc-ecfb-front-end.php:86
|
| 202 |
-
#: includes/class-wc-ecfb-front-end.php:309
|
| 203 |
-
#: includes/class-wc-ecfb-front-end.php:466
|
| 204 |
-
msgid "State"
|
| 205 |
-
msgstr "Estado"
|
| 206 |
-
|
| 207 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 208 |
-
#: includes/admin/class-wc-ecfb-customer.php:125
|
| 209 |
-
#: includes/admin/class-wc-ecfb-customer.php:188
|
| 210 |
-
msgid "State code"
|
| 211 |
-
msgstr "UF"
|
| 212 |
-
|
| 213 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 214 |
-
#: includes/admin/class-wc-ecfb-customer.php:128
|
| 215 |
-
msgid "Telephone"
|
| 216 |
-
msgstr "Telefone"
|
| 217 |
-
|
| 218 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 219 |
-
#: includes/admin/class-wc-ecfb-customer.php:134
|
| 220 |
#: includes/admin/class-wc-ecfb-order.php:140
|
| 221 |
#: includes/admin/class-wc-ecfb-order.php:298
|
| 222 |
#: includes/class-wc-ecfb-front-end.php:328
|
|
@@ -224,16 +119,7 @@ msgid "Cell Phone"
|
|
| 224 |
msgstr "Celular"
|
| 225 |
|
| 226 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 227 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 228 |
-
#: includes/admin/class-wc-ecfb-order.php:145
|
| 229 |
-
#: includes/admin/class-wc-ecfb-order.php:301
|
| 230 |
-
#: includes/class-wc-ecfb-front-end.php:336
|
| 231 |
-
#: includes/class-wc-ecfb-front-end.php:356
|
| 232 |
-
msgid "Email"
|
| 233 |
-
msgstr "E-mail"
|
| 234 |
-
|
| 235 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 236 |
-
#: includes/admin/class-wc-ecfb-customer.php:145
|
| 237 |
msgid "Customer Shipping Address"
|
| 238 |
msgstr "Endereço de Envio do Cliente"
|
| 239 |
|
|
@@ -279,12 +165,72 @@ msgstr "Pessoa Física"
|
|
| 279 |
msgid "Legal Person"
|
| 280 |
msgstr "Pessoa Jurídica"
|
| 281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 282 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 283 |
#: includes/admin/class-wc-ecfb-order.php:126
|
| 284 |
#: includes/admin/class-wc-ecfb-order.php:201
|
| 285 |
msgid "Select a country…"
|
| 286 |
msgstr "Selecionar País…"
|
| 287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 288 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 289 |
#: includes/admin/class-wc-ecfb-order.php:135
|
| 290 |
#: includes/admin/class-wc-ecfb-order.php:294
|
|
@@ -293,6 +239,14 @@ msgstr "Selecionar País…"
|
|
| 293 |
msgid "Phone"
|
| 294 |
msgstr "Telefone"
|
| 295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 296 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 297 |
#: includes/admin/class-wc-ecfb-order.php:250
|
| 298 |
#: includes/admin/class-wc-ecfb-order.php:253
|
|
@@ -498,6 +452,88 @@ msgstr "Verifica se o CNPJ é válido."
|
|
| 498 |
msgid "required"
|
| 499 |
msgstr "obrigatório"
|
| 500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 501 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 502 |
#: includes/class-wc-ecfb-front-end.php:115
|
| 503 |
#: includes/class-wc-ecfb-front-end.php:384
|
|
@@ -557,16 +593,6 @@ msgctxt "placeholder"
|
|
| 557 |
msgid "Birthdate"
|
| 558 |
msgstr "Data de Nascimento"
|
| 559 |
|
| 560 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 561 |
-
#: includes/class-wc-ecfb-front-end.php:240
|
| 562 |
-
msgid "Female"
|
| 563 |
-
msgstr "Feminino"
|
| 564 |
-
|
| 565 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 566 |
-
#: includes/class-wc-ecfb-front-end.php:241
|
| 567 |
-
msgid "Male"
|
| 568 |
-
msgstr "Masculino"
|
| 569 |
-
|
| 570 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 571 |
#: includes/class-wc-ecfb-front-end.php:251
|
| 572 |
#: includes/class-wc-ecfb-front-end.php:409
|
|
@@ -574,12 +600,6 @@ msgctxt "placeholder"
|
|
| 574 |
msgid "Country"
|
| 575 |
msgstr "País"
|
| 576 |
|
| 577 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 578 |
-
#: includes/class-wc-ecfb-front-end.php:259
|
| 579 |
-
#: includes/class-wc-ecfb-front-end.php:416
|
| 580 |
-
msgid "Post Code"
|
| 581 |
-
msgstr "CEP"
|
| 582 |
-
|
| 583 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 584 |
#: includes/class-wc-ecfb-front-end.php:260
|
| 585 |
#: includes/class-wc-ecfb-front-end.php:417
|
|
@@ -601,12 +621,6 @@ msgctxt "placeholder"
|
|
| 601 |
msgid "Number"
|
| 602 |
msgstr "Número"
|
| 603 |
|
| 604 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 605 |
-
#: includes/class-wc-ecfb-front-end.php:285
|
| 606 |
-
#: includes/class-wc-ecfb-front-end.php:442
|
| 607 |
-
msgid "Address line 2"
|
| 608 |
-
msgstr "Complemento"
|
| 609 |
-
|
| 610 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 611 |
#: includes/class-wc-ecfb-front-end.php:286
|
| 612 |
#: includes/class-wc-ecfb-front-end.php:443
|
|
@@ -654,63 +668,3 @@ msgstr "Celular"
|
|
| 654 |
msgctxt "placeholder"
|
| 655 |
msgid "Email"
|
| 656 |
msgstr "E-mail"
|
| 657 |
-
|
| 658 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 659 |
-
#: includes/class-wc-ecfb-front-end.php:493
|
| 660 |
-
#: includes/class-wc-ecfb-front-end.php:499
|
| 661 |
-
#: includes/class-wc-ecfb-front-end.php:507
|
| 662 |
-
#: includes/class-wc-ecfb-front-end.php:514
|
| 663 |
-
#: includes/class-wc-ecfb-front-end.php:518
|
| 664 |
-
#: includes/class-wc-ecfb-front-end.php:526
|
| 665 |
-
msgid "is a required field"
|
| 666 |
-
msgstr "é um campo obrigatório"
|
| 667 |
-
|
| 668 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 669 |
-
#: includes/class-wc-ecfb-front-end.php:503
|
| 670 |
-
#: includes/class-wc-ecfb-front-end.php:522
|
| 671 |
-
msgid "is not valid"
|
| 672 |
-
msgstr "é inválido"
|
| 673 |
-
|
| 674 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 675 |
-
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 676 |
-
msgid "WooCommerce Extra Checkout Fields for Brazil depends on %s to work!"
|
| 677 |
-
msgstr ""
|
| 678 |
-
"WooCommerce Extra Checkout Fields for Brazil depende do %s para funcionar!"
|
| 679 |
-
|
| 680 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 681 |
-
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 682 |
-
msgid "WooCommerce"
|
| 683 |
-
msgstr "WooCommerce"
|
| 684 |
-
|
| 685 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 686 |
-
#. Plugin Name of the plugin/theme
|
| 687 |
-
msgid "WooCommerce Extra Checkout Fields for Brazil"
|
| 688 |
-
msgstr "WooCommerce Extra Checkout Fields for Brazil"
|
| 689 |
-
|
| 690 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 691 |
-
#. Plugin URI of the plugin/theme
|
| 692 |
-
msgid ""
|
| 693 |
-
"https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 694 |
-
msgstr ""
|
| 695 |
-
"https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 696 |
-
|
| 697 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 698 |
-
#. Description of the plugin/theme
|
| 699 |
-
msgid ""
|
| 700 |
-
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 701 |
-
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 702 |
-
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 703 |
-
msgstr ""
|
| 704 |
-
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 705 |
-
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 706 |
-
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 707 |
-
|
| 708 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 709 |
-
#. Author of the plugin/theme
|
| 710 |
-
msgid "Claudio Sanches"
|
| 711 |
-
msgstr "Claudio Sanches"
|
| 712 |
-
|
| 713 |
-
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 714 |
-
#. Author URI of the plugin/theme
|
| 715 |
-
msgid "http://claudiosmweb.com/"
|
| 716 |
-
msgstr "http://claudiosmweb.com/"
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: WooCommerce Extra Checkout Fields for Brazil v3.3.0\n"
|
| 4 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 5 |
+
"POT-Creation-Date: 2015-09-08 02:40:32+00:00\n"
|
| 6 |
+
"PO-Revision-Date: 2015-09-07 23:41-0300\n"
|
|
|
|
| 7 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: pt_BR\n"
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 23 |
+
#: includes/admin/class-wc-ecfb-admin.php:43
|
| 24 |
msgid "Load the customer extras data?"
|
| 25 |
msgstr "Carregar informações adicionais do cliente?"
|
| 26 |
|
| 27 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 28 |
+
#: includes/admin/class-wc-ecfb-admin.php:44
|
| 29 |
msgid "Also copy the data of number and neighborhood?"
|
| 30 |
msgstr "Copiar também as informações de número e bairro?"
|
| 31 |
|
| 32 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 33 |
+
#: includes/admin/class-wc-ecfb-customer.php:32
|
| 34 |
msgid "Customer Billing Address"
|
| 35 |
msgstr "Endereço de Cobrança do Cliente"
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 38 |
#: includes/admin/class-wc-ecfb-customer.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
#: includes/admin/class-wc-ecfb-order.php:58
|
| 40 |
#: includes/admin/class-wc-ecfb-order.php:266
|
| 41 |
#: includes/class-wc-ecfb-front-end.php:150
|
| 46 |
msgstr "CPF"
|
| 47 |
|
| 48 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 49 |
+
#: includes/admin/class-wc-ecfb-customer.php:46
|
| 50 |
#: includes/admin/class-wc-ecfb-order.php:62
|
| 51 |
#: includes/admin/class-wc-ecfb-order.php:269
|
| 52 |
#: includes/class-wc-ecfb-front-end.php:158
|
| 55 |
msgstr "RG"
|
| 56 |
|
| 57 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 58 |
+
#: includes/admin/class-wc-ecfb-customer.php:55
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
#: includes/admin/class-wc-ecfb-order.php:72
|
| 60 |
#: includes/admin/class-wc-ecfb-order.php:275
|
| 61 |
#: includes/class-wc-ecfb-front-end.php:187
|
| 66 |
msgstr "CNPJ"
|
| 67 |
|
| 68 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 69 |
+
#: includes/admin/class-wc-ecfb-customer.php:61
|
| 70 |
#: includes/admin/class-wc-ecfb-order.php:76
|
| 71 |
#: includes/admin/class-wc-ecfb-order.php:278
|
| 72 |
#: includes/class-wc-ecfb-front-end.php:194
|
| 75 |
msgstr "Inscrição Estadual"
|
| 76 |
|
| 77 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 78 |
+
#: includes/admin/class-wc-ecfb-customer.php:72
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
#: includes/admin/class-wc-ecfb-order.php:90
|
| 80 |
#: includes/admin/class-wc-ecfb-order.php:288
|
| 81 |
#: includes/class-wc-ecfb-front-end.php:224
|
| 83 |
msgstr "Data de Nascimento"
|
| 84 |
|
| 85 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 86 |
+
#: includes/admin/class-wc-ecfb-customer.php:76
|
| 87 |
#: includes/admin/class-wc-ecfb-order.php:93
|
| 88 |
#: includes/admin/class-wc-ecfb-order.php:291
|
| 89 |
#: includes/class-wc-ecfb-front-end.php:234
|
| 91 |
msgstr "Sexo"
|
| 92 |
|
| 93 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 94 |
+
#: includes/admin/class-wc-ecfb-customer.php:83
|
| 95 |
+
#: includes/admin/class-wc-ecfb-customer.php:113
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
#: includes/admin/class-wc-ecfb-order.php:102
|
| 97 |
#: includes/admin/class-wc-ecfb-order.php:177
|
| 98 |
#: includes/class-wc-ecfb-front-end.php:276
|
| 101 |
msgstr "Número"
|
| 102 |
|
| 103 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 104 |
+
#: includes/admin/class-wc-ecfb-customer.php:88
|
| 105 |
+
#: includes/admin/class-wc-ecfb-customer.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: includes/admin/class-wc-ecfb-order.php:110
|
| 107 |
#: includes/admin/class-wc-ecfb-order.php:185
|
| 108 |
#: includes/class-wc-ecfb-front-end.php:292
|
| 111 |
msgstr "Bairro"
|
| 112 |
|
| 113 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 114 |
+
#: includes/admin/class-wc-ecfb-customer.php:99
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
#: includes/admin/class-wc-ecfb-order.php:140
|
| 116 |
#: includes/admin/class-wc-ecfb-order.php:298
|
| 117 |
#: includes/class-wc-ecfb-front-end.php:328
|
| 119 |
msgstr "Celular"
|
| 120 |
|
| 121 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 122 |
+
#: includes/admin/class-wc-ecfb-customer.php:107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
msgid "Customer Shipping Address"
|
| 124 |
msgstr "Endereço de Envio do Cliente"
|
| 125 |
|
| 165 |
msgid "Legal Person"
|
| 166 |
msgstr "Pessoa Jurídica"
|
| 167 |
|
| 168 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 169 |
+
#: includes/admin/class-wc-ecfb-order.php:69
|
| 170 |
+
#: includes/admin/class-wc-ecfb-order.php:274
|
| 171 |
+
#: includes/class-wc-ecfb-front-end.php:177
|
| 172 |
+
msgid "Company Name"
|
| 173 |
+
msgstr "Razão Social"
|
| 174 |
+
|
| 175 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 176 |
+
#: includes/admin/class-wc-ecfb-order.php:83
|
| 177 |
+
#: includes/admin/class-wc-ecfb-order.php:169
|
| 178 |
+
#: includes/admin/class-wc-ecfb-order.php:282
|
| 179 |
+
#: includes/class-wc-ecfb-front-end.php:213
|
| 180 |
+
#: includes/class-wc-ecfb-front-end.php:400
|
| 181 |
+
#: includes/class-wc-ecfb-front-end.php:514
|
| 182 |
+
msgid "Company"
|
| 183 |
+
msgstr "Empresa"
|
| 184 |
+
|
| 185 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 186 |
+
#: includes/admin/class-wc-ecfb-order.php:98
|
| 187 |
+
#: includes/admin/class-wc-ecfb-order.php:173
|
| 188 |
+
msgid "Address 1"
|
| 189 |
+
msgstr "Endereço"
|
| 190 |
+
|
| 191 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 192 |
+
#: includes/admin/class-wc-ecfb-order.php:106
|
| 193 |
+
#: includes/admin/class-wc-ecfb-order.php:181
|
| 194 |
+
msgid "Address 2"
|
| 195 |
+
msgstr "Complemento"
|
| 196 |
+
|
| 197 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 198 |
+
#: includes/admin/class-wc-ecfb-order.php:114
|
| 199 |
+
#: includes/admin/class-wc-ecfb-order.php:189
|
| 200 |
+
#: includes/class-wc-ecfb-front-end.php:300
|
| 201 |
+
#: includes/class-wc-ecfb-front-end.php:457
|
| 202 |
+
msgid "City"
|
| 203 |
+
msgstr "Cidade"
|
| 204 |
+
|
| 205 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 206 |
+
#: includes/admin/class-wc-ecfb-order.php:118
|
| 207 |
+
#: includes/admin/class-wc-ecfb-order.php:193
|
| 208 |
+
#: includes/class-wc-ecfb-front-end.php:86
|
| 209 |
+
#: includes/class-wc-ecfb-front-end.php:309
|
| 210 |
+
#: includes/class-wc-ecfb-front-end.php:466
|
| 211 |
+
msgid "State"
|
| 212 |
+
msgstr "Estado"
|
| 213 |
+
|
| 214 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 215 |
+
#: includes/admin/class-wc-ecfb-order.php:122
|
| 216 |
+
#: includes/admin/class-wc-ecfb-order.php:197
|
| 217 |
+
#: includes/class-wc-ecfb-front-end.php:250
|
| 218 |
+
#: includes/class-wc-ecfb-front-end.php:408
|
| 219 |
+
msgid "Country"
|
| 220 |
+
msgstr "País"
|
| 221 |
+
|
| 222 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 223 |
#: includes/admin/class-wc-ecfb-order.php:126
|
| 224 |
#: includes/admin/class-wc-ecfb-order.php:201
|
| 225 |
msgid "Select a country…"
|
| 226 |
msgstr "Selecionar País…"
|
| 227 |
|
| 228 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 229 |
+
#: includes/admin/class-wc-ecfb-order.php:130
|
| 230 |
+
#: includes/admin/class-wc-ecfb-order.php:205
|
| 231 |
+
msgid "Postcode"
|
| 232 |
+
msgstr "CEP"
|
| 233 |
+
|
| 234 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 235 |
#: includes/admin/class-wc-ecfb-order.php:135
|
| 236 |
#: includes/admin/class-wc-ecfb-order.php:294
|
| 239 |
msgid "Phone"
|
| 240 |
msgstr "Telefone"
|
| 241 |
|
| 242 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 243 |
+
#: includes/admin/class-wc-ecfb-order.php:145
|
| 244 |
+
#: includes/admin/class-wc-ecfb-order.php:301
|
| 245 |
+
#: includes/class-wc-ecfb-front-end.php:336
|
| 246 |
+
#: includes/class-wc-ecfb-front-end.php:356
|
| 247 |
+
msgid "Email"
|
| 248 |
+
msgstr "E-mail"
|
| 249 |
+
|
| 250 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 251 |
#: includes/admin/class-wc-ecfb-order.php:250
|
| 252 |
#: includes/admin/class-wc-ecfb-order.php:253
|
| 452 |
msgid "required"
|
| 453 |
msgstr "obrigatório"
|
| 454 |
|
| 455 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 456 |
+
#: includes/class-wc-ecfb-front-end.php:240
|
| 457 |
+
msgid "Female"
|
| 458 |
+
msgstr "Feminino"
|
| 459 |
+
|
| 460 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 461 |
+
#: includes/class-wc-ecfb-front-end.php:241
|
| 462 |
+
msgid "Male"
|
| 463 |
+
msgstr "Masculino"
|
| 464 |
+
|
| 465 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 466 |
+
#: includes/class-wc-ecfb-front-end.php:259
|
| 467 |
+
#: includes/class-wc-ecfb-front-end.php:416
|
| 468 |
+
msgid "Post Code"
|
| 469 |
+
msgstr "CEP"
|
| 470 |
+
|
| 471 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 472 |
+
#: includes/class-wc-ecfb-front-end.php:285
|
| 473 |
+
#: includes/class-wc-ecfb-front-end.php:442
|
| 474 |
+
msgid "Address line 2"
|
| 475 |
+
msgstr "Complemento"
|
| 476 |
+
|
| 477 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 478 |
+
#: includes/class-wc-ecfb-front-end.php:493
|
| 479 |
+
#: includes/class-wc-ecfb-front-end.php:499
|
| 480 |
+
#: includes/class-wc-ecfb-front-end.php:507
|
| 481 |
+
#: includes/class-wc-ecfb-front-end.php:514
|
| 482 |
+
#: includes/class-wc-ecfb-front-end.php:518
|
| 483 |
+
#: includes/class-wc-ecfb-front-end.php:526
|
| 484 |
+
msgid "is a required field"
|
| 485 |
+
msgstr "é um campo obrigatório"
|
| 486 |
+
|
| 487 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 488 |
+
#: includes/class-wc-ecfb-front-end.php:503
|
| 489 |
+
#: includes/class-wc-ecfb-front-end.php:522
|
| 490 |
+
msgid "is not valid"
|
| 491 |
+
msgstr "é inválido"
|
| 492 |
+
|
| 493 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 494 |
+
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 495 |
+
msgid "WooCommerce Extra Checkout Fields for Brazil depends on %s to work!"
|
| 496 |
+
msgstr ""
|
| 497 |
+
"WooCommerce Extra Checkout Fields for Brazil depende do %s para funcionar!"
|
| 498 |
+
|
| 499 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 500 |
+
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 501 |
+
msgid "WooCommerce"
|
| 502 |
+
msgstr "WooCommerce"
|
| 503 |
+
|
| 504 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 505 |
+
#. Plugin Name of the plugin/theme
|
| 506 |
+
msgid "WooCommerce Extra Checkout Fields for Brazil"
|
| 507 |
+
msgstr "WooCommerce Extra Checkout Fields for Brazil"
|
| 508 |
+
|
| 509 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 510 |
+
#. Plugin URI of the plugin/theme
|
| 511 |
+
msgid ""
|
| 512 |
+
"https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 513 |
+
msgstr ""
|
| 514 |
+
"https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 515 |
+
|
| 516 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 517 |
+
#. Description of the plugin/theme
|
| 518 |
+
msgid ""
|
| 519 |
+
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 520 |
+
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 521 |
+
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 522 |
+
msgstr ""
|
| 523 |
+
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 524 |
+
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 525 |
+
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 526 |
+
|
| 527 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 528 |
+
#. Author of the plugin/theme
|
| 529 |
+
msgid "Claudio Sanches"
|
| 530 |
+
msgstr "Claudio Sanches"
|
| 531 |
+
|
| 532 |
+
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 533 |
+
#. Author URI of the plugin/theme
|
| 534 |
+
msgid "http://claudiosmweb.com/"
|
| 535 |
+
msgstr "http://claudiosmweb.com/"
|
| 536 |
+
|
| 537 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 538 |
#: includes/class-wc-ecfb-front-end.php:115
|
| 539 |
#: includes/class-wc-ecfb-front-end.php:384
|
| 593 |
msgid "Birthdate"
|
| 594 |
msgstr "Data de Nascimento"
|
| 595 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 596 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 597 |
#: includes/class-wc-ecfb-front-end.php:251
|
| 598 |
#: includes/class-wc-ecfb-front-end.php:409
|
| 600 |
msgid "Country"
|
| 601 |
msgstr "País"
|
| 602 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 603 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 604 |
#: includes/class-wc-ecfb-front-end.php:260
|
| 605 |
#: includes/class-wc-ecfb-front-end.php:417
|
| 621 |
msgid "Number"
|
| 622 |
msgstr "Número"
|
| 623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 624 |
# @ woocommerce-extra-checkout-fields-for-brazil
|
| 625 |
#: includes/class-wc-ecfb-front-end.php:286
|
| 626 |
#: includes/class-wc-ecfb-front-end.php:443
|
| 668 |
msgctxt "placeholder"
|
| 669 |
msgid "Email"
|
| 670 |
msgstr "E-mail"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-extra-checkout-fields-for-brazil.pot
CHANGED
|
@@ -1,41 +1,31 @@
|
|
| 1 |
-
# Copyright (C) 2015
|
| 2 |
-
# This file is distributed under the
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: WooCommerce Extra Checkout Fields for Brazil 3.4.0\n"
|
| 6 |
-
"Report-Msgid-Bugs-To:
|
| 7 |
-
"
|
| 8 |
-
"POT-Creation-Date: 2015-08-18 23:28:45+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
-
"Content-Type: text/plain; charset=
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
| 13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
-
"Language-Team: LANGUAGE <
|
|
|
|
| 15 |
|
| 16 |
-
#: includes/admin/class-wc-ecfb-admin.php:
|
| 17 |
msgid "Load the customer extras data?"
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
-
#: includes/admin/class-wc-ecfb-admin.php:
|
| 21 |
msgid "Also copy the data of number and neighborhood?"
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 25 |
msgid "Customer Billing Address"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
-
#: includes/admin/class-wc-ecfb-customer.php:36
|
| 29 |
-
#: includes/admin/class-wc-ecfb-customer.php:147
|
| 30 |
-
msgid "First name"
|
| 31 |
-
msgstr ""
|
| 32 |
-
|
| 33 |
#: includes/admin/class-wc-ecfb-customer.php:40
|
| 34 |
-
#: includes/admin/class-wc-ecfb-customer.php:151
|
| 35 |
-
msgid "Last name"
|
| 36 |
-
msgstr ""
|
| 37 |
-
|
| 38 |
-
#: includes/admin/class-wc-ecfb-customer.php:48
|
| 39 |
#: includes/admin/class-wc-ecfb-order.php:58
|
| 40 |
#: includes/admin/class-wc-ecfb-order.php:266
|
| 41 |
#: includes/class-wc-ecfb-front-end.php:150
|
|
@@ -45,7 +35,7 @@ msgstr ""
|
|
| 45 |
msgid "CPF"
|
| 46 |
msgstr ""
|
| 47 |
|
| 48 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 49 |
#: includes/admin/class-wc-ecfb-order.php:62
|
| 50 |
#: includes/admin/class-wc-ecfb-order.php:269
|
| 51 |
#: includes/class-wc-ecfb-front-end.php:158
|
|
@@ -53,14 +43,7 @@ msgstr ""
|
|
| 53 |
msgid "RG"
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 57 |
-
#: includes/admin/class-wc-ecfb-order.php:69
|
| 58 |
-
#: includes/admin/class-wc-ecfb-order.php:274
|
| 59 |
-
#: includes/class-wc-ecfb-front-end.php:177
|
| 60 |
-
msgid "Company Name"
|
| 61 |
-
msgstr ""
|
| 62 |
-
|
| 63 |
-
#: includes/admin/class-wc-ecfb-customer.php:66
|
| 64 |
#: includes/admin/class-wc-ecfb-order.php:72
|
| 65 |
#: includes/admin/class-wc-ecfb-order.php:275
|
| 66 |
#: includes/class-wc-ecfb-front-end.php:187
|
|
@@ -70,7 +53,7 @@ msgstr ""
|
|
| 70 |
msgid "CNPJ"
|
| 71 |
msgstr ""
|
| 72 |
|
| 73 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 74 |
#: includes/admin/class-wc-ecfb-order.php:76
|
| 75 |
#: includes/admin/class-wc-ecfb-order.php:278
|
| 76 |
#: includes/class-wc-ecfb-front-end.php:194
|
|
@@ -78,61 +61,22 @@ msgstr ""
|
|
| 78 |
msgid "State Registration"
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 82 |
-
#: includes/admin/class-wc-ecfb-customer.php:155
|
| 83 |
-
#: includes/admin/class-wc-ecfb-order.php:83
|
| 84 |
-
#: includes/admin/class-wc-ecfb-order.php:169
|
| 85 |
-
#: includes/admin/class-wc-ecfb-order.php:282
|
| 86 |
-
#: includes/class-wc-ecfb-front-end.php:213
|
| 87 |
-
#: includes/class-wc-ecfb-front-end.php:400
|
| 88 |
-
#: includes/class-wc-ecfb-front-end.php:514
|
| 89 |
-
msgid "Company"
|
| 90 |
-
msgstr ""
|
| 91 |
-
|
| 92 |
-
#: includes/admin/class-wc-ecfb-customer.php:86
|
| 93 |
#: includes/admin/class-wc-ecfb-order.php:90
|
| 94 |
#: includes/admin/class-wc-ecfb-order.php:288
|
| 95 |
#: includes/class-wc-ecfb-front-end.php:224
|
| 96 |
msgid "Birthdate"
|
| 97 |
msgstr ""
|
| 98 |
|
| 99 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 100 |
#: includes/admin/class-wc-ecfb-order.php:93
|
| 101 |
#: includes/admin/class-wc-ecfb-order.php:291
|
| 102 |
#: includes/class-wc-ecfb-front-end.php:234
|
| 103 |
msgid "Sex"
|
| 104 |
msgstr ""
|
| 105 |
|
| 106 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 107 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 108 |
-
#: includes/admin/class-wc-ecfb-order.php:122
|
| 109 |
-
#: includes/admin/class-wc-ecfb-order.php:197
|
| 110 |
-
#: includes/class-wc-ecfb-front-end.php:250
|
| 111 |
-
#: includes/class-wc-ecfb-front-end.php:408
|
| 112 |
-
msgid "Country"
|
| 113 |
-
msgstr ""
|
| 114 |
-
|
| 115 |
-
#: includes/admin/class-wc-ecfb-customer.php:97
|
| 116 |
-
#: includes/admin/class-wc-ecfb-customer.php:160
|
| 117 |
-
msgid "2 letter Country code"
|
| 118 |
-
msgstr ""
|
| 119 |
-
|
| 120 |
-
#: includes/admin/class-wc-ecfb-customer.php:100
|
| 121 |
-
#: includes/admin/class-wc-ecfb-customer.php:163
|
| 122 |
-
#: includes/admin/class-wc-ecfb-order.php:130
|
| 123 |
-
#: includes/admin/class-wc-ecfb-order.php:205
|
| 124 |
-
msgid "Postcode"
|
| 125 |
-
msgstr ""
|
| 126 |
-
|
| 127 |
-
#: includes/admin/class-wc-ecfb-customer.php:104
|
| 128 |
-
#: includes/admin/class-wc-ecfb-customer.php:167
|
| 129 |
-
#: includes/admin/class-wc-ecfb-order.php:98
|
| 130 |
-
#: includes/admin/class-wc-ecfb-order.php:173
|
| 131 |
-
msgid "Address 1"
|
| 132 |
-
msgstr ""
|
| 133 |
-
|
| 134 |
-
#: includes/admin/class-wc-ecfb-customer.php:108
|
| 135 |
-
#: includes/admin/class-wc-ecfb-customer.php:171
|
| 136 |
#: includes/admin/class-wc-ecfb-order.php:102
|
| 137 |
#: includes/admin/class-wc-ecfb-order.php:177
|
| 138 |
#: includes/class-wc-ecfb-front-end.php:276
|
|
@@ -140,15 +84,8 @@ msgstr ""
|
|
| 140 |
msgid "Number"
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 144 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 145 |
-
#: includes/admin/class-wc-ecfb-order.php:106
|
| 146 |
-
#: includes/admin/class-wc-ecfb-order.php:181
|
| 147 |
-
msgid "Address 2"
|
| 148 |
-
msgstr ""
|
| 149 |
-
|
| 150 |
-
#: includes/admin/class-wc-ecfb-customer.php:116
|
| 151 |
-
#: includes/admin/class-wc-ecfb-customer.php:179
|
| 152 |
#: includes/admin/class-wc-ecfb-order.php:110
|
| 153 |
#: includes/admin/class-wc-ecfb-order.php:185
|
| 154 |
#: includes/class-wc-ecfb-front-end.php:292
|
|
@@ -156,50 +93,14 @@ msgstr ""
|
|
| 156 |
msgid "Neighborhood"
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 160 |
-
#: includes/admin/class-wc-ecfb-customer.php:183
|
| 161 |
-
#: includes/admin/class-wc-ecfb-order.php:114
|
| 162 |
-
#: includes/admin/class-wc-ecfb-order.php:189
|
| 163 |
-
#: includes/class-wc-ecfb-front-end.php:300
|
| 164 |
-
#: includes/class-wc-ecfb-front-end.php:457
|
| 165 |
-
msgid "City"
|
| 166 |
-
msgstr ""
|
| 167 |
-
|
| 168 |
-
#: includes/admin/class-wc-ecfb-customer.php:124
|
| 169 |
-
#: includes/admin/class-wc-ecfb-customer.php:187
|
| 170 |
-
#: includes/admin/class-wc-ecfb-order.php:118
|
| 171 |
-
#: includes/admin/class-wc-ecfb-order.php:193
|
| 172 |
-
#: includes/class-wc-ecfb-front-end.php:86
|
| 173 |
-
#: includes/class-wc-ecfb-front-end.php:309
|
| 174 |
-
#: includes/class-wc-ecfb-front-end.php:466
|
| 175 |
-
msgid "State"
|
| 176 |
-
msgstr ""
|
| 177 |
-
|
| 178 |
-
#: includes/admin/class-wc-ecfb-customer.php:125
|
| 179 |
-
#: includes/admin/class-wc-ecfb-customer.php:188
|
| 180 |
-
msgid "State code"
|
| 181 |
-
msgstr ""
|
| 182 |
-
|
| 183 |
-
#: includes/admin/class-wc-ecfb-customer.php:128
|
| 184 |
-
msgid "Telephone"
|
| 185 |
-
msgstr ""
|
| 186 |
-
|
| 187 |
-
#: includes/admin/class-wc-ecfb-customer.php:134
|
| 188 |
#: includes/admin/class-wc-ecfb-order.php:140
|
| 189 |
#: includes/admin/class-wc-ecfb-order.php:298
|
| 190 |
#: includes/class-wc-ecfb-front-end.php:328
|
| 191 |
msgid "Cell Phone"
|
| 192 |
msgstr ""
|
| 193 |
|
| 194 |
-
#: includes/admin/class-wc-ecfb-customer.php:
|
| 195 |
-
#: includes/admin/class-wc-ecfb-order.php:145
|
| 196 |
-
#: includes/admin/class-wc-ecfb-order.php:301
|
| 197 |
-
#: includes/class-wc-ecfb-front-end.php:336
|
| 198 |
-
#: includes/class-wc-ecfb-front-end.php:356
|
| 199 |
-
msgid "Email"
|
| 200 |
-
msgstr ""
|
| 201 |
-
|
| 202 |
-
#: includes/admin/class-wc-ecfb-customer.php:145
|
| 203 |
msgid "Customer Shipping Address"
|
| 204 |
msgstr ""
|
| 205 |
|
|
@@ -239,11 +140,63 @@ msgstr ""
|
|
| 239 |
msgid "Legal Person"
|
| 240 |
msgstr ""
|
| 241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
#: includes/admin/class-wc-ecfb-order.php:126
|
| 243 |
#: includes/admin/class-wc-ecfb-order.php:201
|
| 244 |
msgid "Select a country…"
|
| 245 |
msgstr ""
|
| 246 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 247 |
#: includes/admin/class-wc-ecfb-order.php:135
|
| 248 |
#: includes/admin/class-wc-ecfb-order.php:294
|
| 249 |
#: includes/class-wc-ecfb-front-end.php:320
|
|
@@ -251,6 +204,13 @@ msgstr ""
|
|
| 251 |
msgid "Phone"
|
| 252 |
msgstr ""
|
| 253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 254 |
#: includes/admin/class-wc-ecfb-order.php:250
|
| 255 |
#: includes/admin/class-wc-ecfb-order.php:253
|
| 256 |
#: includes/admin/class-wc-ecfb-order.php:327
|
|
@@ -378,8 +338,7 @@ msgid "Enable Address Autocomplete:"
|
|
| 378 |
msgstr ""
|
| 379 |
|
| 380 |
#: includes/admin/class-wc-ecfb-settings.php:190
|
| 381 |
-
msgid ""
|
| 382 |
-
"If checked automatically complete the address fields based on the zip code."
|
| 383 |
msgstr ""
|
| 384 |
|
| 385 |
#: includes/admin/class-wc-ecfb-settings.php:197
|
|
@@ -406,6 +365,69 @@ msgstr ""
|
|
| 406 |
msgid "required"
|
| 407 |
msgstr ""
|
| 408 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 409 |
#: includes/class-wc-ecfb-front-end.php:115
|
| 410 |
#: includes/class-wc-ecfb-front-end.php:384
|
| 411 |
msgctxt "placeholder"
|
|
@@ -456,25 +478,12 @@ msgctxt "placeholder"
|
|
| 456 |
msgid "Birthdate"
|
| 457 |
msgstr ""
|
| 458 |
|
| 459 |
-
#: includes/class-wc-ecfb-front-end.php:240
|
| 460 |
-
msgid "Female"
|
| 461 |
-
msgstr ""
|
| 462 |
-
|
| 463 |
-
#: includes/class-wc-ecfb-front-end.php:241
|
| 464 |
-
msgid "Male"
|
| 465 |
-
msgstr ""
|
| 466 |
-
|
| 467 |
#: includes/class-wc-ecfb-front-end.php:251
|
| 468 |
#: includes/class-wc-ecfb-front-end.php:409
|
| 469 |
msgctxt "placeholder"
|
| 470 |
msgid "Country"
|
| 471 |
msgstr ""
|
| 472 |
|
| 473 |
-
#: includes/class-wc-ecfb-front-end.php:259
|
| 474 |
-
#: includes/class-wc-ecfb-front-end.php:416
|
| 475 |
-
msgid "Post Code"
|
| 476 |
-
msgstr ""
|
| 477 |
-
|
| 478 |
#: includes/class-wc-ecfb-front-end.php:260
|
| 479 |
#: includes/class-wc-ecfb-front-end.php:417
|
| 480 |
msgctxt "placeholder"
|
|
@@ -493,11 +502,6 @@ msgctxt "placeholder"
|
|
| 493 |
msgid "Number"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/class-wc-ecfb-front-end.php:285
|
| 497 |
-
#: includes/class-wc-ecfb-front-end.php:442
|
| 498 |
-
msgid "Address line 2"
|
| 499 |
-
msgstr ""
|
| 500 |
-
|
| 501 |
#: includes/class-wc-ecfb-front-end.php:286
|
| 502 |
#: includes/class-wc-ecfb-front-end.php:443
|
| 503 |
msgctxt "placeholder"
|
|
@@ -537,50 +541,4 @@ msgstr ""
|
|
| 537 |
#: includes/class-wc-ecfb-front-end.php:357
|
| 538 |
msgctxt "placeholder"
|
| 539 |
msgid "Email"
|
| 540 |
-
msgstr ""
|
| 541 |
-
|
| 542 |
-
#: includes/class-wc-ecfb-front-end.php:493
|
| 543 |
-
#: includes/class-wc-ecfb-front-end.php:499
|
| 544 |
-
#: includes/class-wc-ecfb-front-end.php:507
|
| 545 |
-
#: includes/class-wc-ecfb-front-end.php:514
|
| 546 |
-
#: includes/class-wc-ecfb-front-end.php:518
|
| 547 |
-
#: includes/class-wc-ecfb-front-end.php:526
|
| 548 |
-
msgid "is a required field"
|
| 549 |
-
msgstr ""
|
| 550 |
-
|
| 551 |
-
#: includes/class-wc-ecfb-front-end.php:503
|
| 552 |
-
#: includes/class-wc-ecfb-front-end.php:522
|
| 553 |
-
msgid "is not valid"
|
| 554 |
-
msgstr ""
|
| 555 |
-
|
| 556 |
-
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 557 |
-
msgid "WooCommerce Extra Checkout Fields for Brazil depends on %s to work!"
|
| 558 |
-
msgstr ""
|
| 559 |
-
|
| 560 |
-
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 561 |
-
msgid "WooCommerce"
|
| 562 |
-
msgstr ""
|
| 563 |
-
|
| 564 |
-
#. Plugin Name of the plugin/theme
|
| 565 |
-
msgid "WooCommerce Extra Checkout Fields for Brazil"
|
| 566 |
-
msgstr ""
|
| 567 |
-
|
| 568 |
-
#. Plugin URI of the plugin/theme
|
| 569 |
-
msgid ""
|
| 570 |
-
"https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 571 |
-
msgstr ""
|
| 572 |
-
|
| 573 |
-
#. Description of the plugin/theme
|
| 574 |
-
msgid ""
|
| 575 |
-
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 576 |
-
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 577 |
-
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 578 |
-
msgstr ""
|
| 579 |
-
|
| 580 |
-
#. Author of the plugin/theme
|
| 581 |
-
msgid "Claudio Sanches"
|
| 582 |
-
msgstr ""
|
| 583 |
-
|
| 584 |
-
#. Author URI of the plugin/theme
|
| 585 |
-
msgid "http://claudiosmweb.com/"
|
| 586 |
-
msgstr ""
|
| 1 |
+
# Copyright (C) 2015 Claudio Sanches
|
| 2 |
+
# This file is distributed under the GPL-2.0+.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: WooCommerce Extra Checkout Fields for Brazil 3.4.0\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 7 |
+
"POT-Creation-Date: 2015-09-08 02:40:32+00:00\n"
|
|
|
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
+
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
| 14 |
+
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
| 15 |
|
| 16 |
+
#: includes/admin/class-wc-ecfb-admin.php:43
|
| 17 |
msgid "Load the customer extras data?"
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
+
#: includes/admin/class-wc-ecfb-admin.php:44
|
| 21 |
msgid "Also copy the data of number and neighborhood?"
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
+
#: includes/admin/class-wc-ecfb-customer.php:32
|
| 25 |
msgid "Customer Billing Address"
|
| 26 |
msgstr ""
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
#: includes/admin/class-wc-ecfb-customer.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
#: includes/admin/class-wc-ecfb-order.php:58
|
| 30 |
#: includes/admin/class-wc-ecfb-order.php:266
|
| 31 |
#: includes/class-wc-ecfb-front-end.php:150
|
| 35 |
msgid "CPF"
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
+
#: includes/admin/class-wc-ecfb-customer.php:46
|
| 39 |
#: includes/admin/class-wc-ecfb-order.php:62
|
| 40 |
#: includes/admin/class-wc-ecfb-order.php:269
|
| 41 |
#: includes/class-wc-ecfb-front-end.php:158
|
| 43 |
msgid "RG"
|
| 44 |
msgstr ""
|
| 45 |
|
| 46 |
+
#: includes/admin/class-wc-ecfb-customer.php:55
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
#: includes/admin/class-wc-ecfb-order.php:72
|
| 48 |
#: includes/admin/class-wc-ecfb-order.php:275
|
| 49 |
#: includes/class-wc-ecfb-front-end.php:187
|
| 53 |
msgid "CNPJ"
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
+
#: includes/admin/class-wc-ecfb-customer.php:61
|
| 57 |
#: includes/admin/class-wc-ecfb-order.php:76
|
| 58 |
#: includes/admin/class-wc-ecfb-order.php:278
|
| 59 |
#: includes/class-wc-ecfb-front-end.php:194
|
| 61 |
msgid "State Registration"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: includes/admin/class-wc-ecfb-customer.php:72
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
#: includes/admin/class-wc-ecfb-order.php:90
|
| 66 |
#: includes/admin/class-wc-ecfb-order.php:288
|
| 67 |
#: includes/class-wc-ecfb-front-end.php:224
|
| 68 |
msgid "Birthdate"
|
| 69 |
msgstr ""
|
| 70 |
|
| 71 |
+
#: includes/admin/class-wc-ecfb-customer.php:76
|
| 72 |
#: includes/admin/class-wc-ecfb-order.php:93
|
| 73 |
#: includes/admin/class-wc-ecfb-order.php:291
|
| 74 |
#: includes/class-wc-ecfb-front-end.php:234
|
| 75 |
msgid "Sex"
|
| 76 |
msgstr ""
|
| 77 |
|
| 78 |
+
#: includes/admin/class-wc-ecfb-customer.php:83
|
| 79 |
+
#: includes/admin/class-wc-ecfb-customer.php:113
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
#: includes/admin/class-wc-ecfb-order.php:102
|
| 81 |
#: includes/admin/class-wc-ecfb-order.php:177
|
| 82 |
#: includes/class-wc-ecfb-front-end.php:276
|
| 84 |
msgid "Number"
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
+
#: includes/admin/class-wc-ecfb-customer.php:88
|
| 88 |
+
#: includes/admin/class-wc-ecfb-customer.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
#: includes/admin/class-wc-ecfb-order.php:110
|
| 90 |
#: includes/admin/class-wc-ecfb-order.php:185
|
| 91 |
#: includes/class-wc-ecfb-front-end.php:292
|
| 93 |
msgid "Neighborhood"
|
| 94 |
msgstr ""
|
| 95 |
|
| 96 |
+
#: includes/admin/class-wc-ecfb-customer.php:99
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
#: includes/admin/class-wc-ecfb-order.php:140
|
| 98 |
#: includes/admin/class-wc-ecfb-order.php:298
|
| 99 |
#: includes/class-wc-ecfb-front-end.php:328
|
| 100 |
msgid "Cell Phone"
|
| 101 |
msgstr ""
|
| 102 |
|
| 103 |
+
#: includes/admin/class-wc-ecfb-customer.php:107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
msgid "Customer Shipping Address"
|
| 105 |
msgstr ""
|
| 106 |
|
| 140 |
msgid "Legal Person"
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
+
#: includes/admin/class-wc-ecfb-order.php:69
|
| 144 |
+
#: includes/admin/class-wc-ecfb-order.php:274
|
| 145 |
+
#: includes/class-wc-ecfb-front-end.php:177
|
| 146 |
+
msgid "Company Name"
|
| 147 |
+
msgstr ""
|
| 148 |
+
|
| 149 |
+
#: includes/admin/class-wc-ecfb-order.php:83
|
| 150 |
+
#: includes/admin/class-wc-ecfb-order.php:169
|
| 151 |
+
#: includes/admin/class-wc-ecfb-order.php:282
|
| 152 |
+
#: includes/class-wc-ecfb-front-end.php:213
|
| 153 |
+
#: includes/class-wc-ecfb-front-end.php:400
|
| 154 |
+
#: includes/class-wc-ecfb-front-end.php:514
|
| 155 |
+
msgid "Company"
|
| 156 |
+
msgstr ""
|
| 157 |
+
|
| 158 |
+
#: includes/admin/class-wc-ecfb-order.php:98
|
| 159 |
+
#: includes/admin/class-wc-ecfb-order.php:173
|
| 160 |
+
msgid "Address 1"
|
| 161 |
+
msgstr ""
|
| 162 |
+
|
| 163 |
+
#: includes/admin/class-wc-ecfb-order.php:106
|
| 164 |
+
#: includes/admin/class-wc-ecfb-order.php:181
|
| 165 |
+
msgid "Address 2"
|
| 166 |
+
msgstr ""
|
| 167 |
+
|
| 168 |
+
#: includes/admin/class-wc-ecfb-order.php:114
|
| 169 |
+
#: includes/admin/class-wc-ecfb-order.php:189
|
| 170 |
+
#: includes/class-wc-ecfb-front-end.php:300
|
| 171 |
+
#: includes/class-wc-ecfb-front-end.php:457
|
| 172 |
+
msgid "City"
|
| 173 |
+
msgstr ""
|
| 174 |
+
|
| 175 |
+
#: includes/admin/class-wc-ecfb-order.php:118
|
| 176 |
+
#: includes/admin/class-wc-ecfb-order.php:193
|
| 177 |
+
#: includes/class-wc-ecfb-front-end.php:86
|
| 178 |
+
#: includes/class-wc-ecfb-front-end.php:309
|
| 179 |
+
#: includes/class-wc-ecfb-front-end.php:466
|
| 180 |
+
msgid "State"
|
| 181 |
+
msgstr ""
|
| 182 |
+
|
| 183 |
+
#: includes/admin/class-wc-ecfb-order.php:122
|
| 184 |
+
#: includes/admin/class-wc-ecfb-order.php:197
|
| 185 |
+
#: includes/class-wc-ecfb-front-end.php:250
|
| 186 |
+
#: includes/class-wc-ecfb-front-end.php:408
|
| 187 |
+
msgid "Country"
|
| 188 |
+
msgstr ""
|
| 189 |
+
|
| 190 |
#: includes/admin/class-wc-ecfb-order.php:126
|
| 191 |
#: includes/admin/class-wc-ecfb-order.php:201
|
| 192 |
msgid "Select a country…"
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
+
#: includes/admin/class-wc-ecfb-order.php:130
|
| 196 |
+
#: includes/admin/class-wc-ecfb-order.php:205
|
| 197 |
+
msgid "Postcode"
|
| 198 |
+
msgstr ""
|
| 199 |
+
|
| 200 |
#: includes/admin/class-wc-ecfb-order.php:135
|
| 201 |
#: includes/admin/class-wc-ecfb-order.php:294
|
| 202 |
#: includes/class-wc-ecfb-front-end.php:320
|
| 204 |
msgid "Phone"
|
| 205 |
msgstr ""
|
| 206 |
|
| 207 |
+
#: includes/admin/class-wc-ecfb-order.php:145
|
| 208 |
+
#: includes/admin/class-wc-ecfb-order.php:301
|
| 209 |
+
#: includes/class-wc-ecfb-front-end.php:336
|
| 210 |
+
#: includes/class-wc-ecfb-front-end.php:356
|
| 211 |
+
msgid "Email"
|
| 212 |
+
msgstr ""
|
| 213 |
+
|
| 214 |
#: includes/admin/class-wc-ecfb-order.php:250
|
| 215 |
#: includes/admin/class-wc-ecfb-order.php:253
|
| 216 |
#: includes/admin/class-wc-ecfb-order.php:327
|
| 338 |
msgstr ""
|
| 339 |
|
| 340 |
#: includes/admin/class-wc-ecfb-settings.php:190
|
| 341 |
+
msgid "If checked automatically complete the address fields based on the zip code."
|
|
|
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
#: includes/admin/class-wc-ecfb-settings.php:197
|
| 365 |
msgid "required"
|
| 366 |
msgstr ""
|
| 367 |
|
| 368 |
+
#: includes/class-wc-ecfb-front-end.php:240
|
| 369 |
+
msgid "Female"
|
| 370 |
+
msgstr ""
|
| 371 |
+
|
| 372 |
+
#: includes/class-wc-ecfb-front-end.php:241
|
| 373 |
+
msgid "Male"
|
| 374 |
+
msgstr ""
|
| 375 |
+
|
| 376 |
+
#: includes/class-wc-ecfb-front-end.php:259
|
| 377 |
+
#: includes/class-wc-ecfb-front-end.php:416
|
| 378 |
+
msgid "Post Code"
|
| 379 |
+
msgstr ""
|
| 380 |
+
|
| 381 |
+
#: includes/class-wc-ecfb-front-end.php:285
|
| 382 |
+
#: includes/class-wc-ecfb-front-end.php:442
|
| 383 |
+
msgid "Address line 2"
|
| 384 |
+
msgstr ""
|
| 385 |
+
|
| 386 |
+
#: includes/class-wc-ecfb-front-end.php:493
|
| 387 |
+
#: includes/class-wc-ecfb-front-end.php:499
|
| 388 |
+
#: includes/class-wc-ecfb-front-end.php:507
|
| 389 |
+
#: includes/class-wc-ecfb-front-end.php:514
|
| 390 |
+
#: includes/class-wc-ecfb-front-end.php:518
|
| 391 |
+
#: includes/class-wc-ecfb-front-end.php:526
|
| 392 |
+
msgid "is a required field"
|
| 393 |
+
msgstr ""
|
| 394 |
+
|
| 395 |
+
#: includes/class-wc-ecfb-front-end.php:503
|
| 396 |
+
#: includes/class-wc-ecfb-front-end.php:522
|
| 397 |
+
msgid "is not valid"
|
| 398 |
+
msgstr ""
|
| 399 |
+
|
| 400 |
+
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 401 |
+
msgid "WooCommerce Extra Checkout Fields for Brazil depends on %s to work!"
|
| 402 |
+
msgstr ""
|
| 403 |
+
|
| 404 |
+
#: woocommerce-extra-checkout-fields-for-brazil.php:119
|
| 405 |
+
msgid "WooCommerce"
|
| 406 |
+
msgstr ""
|
| 407 |
+
|
| 408 |
+
#. Plugin Name of the plugin/theme
|
| 409 |
+
msgid "WooCommerce Extra Checkout Fields for Brazil"
|
| 410 |
+
msgstr ""
|
| 411 |
+
|
| 412 |
+
#. Plugin URI of the plugin/theme
|
| 413 |
+
msgid "https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil"
|
| 414 |
+
msgstr ""
|
| 415 |
+
|
| 416 |
+
#. Description of the plugin/theme
|
| 417 |
+
msgid ""
|
| 418 |
+
"Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, "
|
| 419 |
+
"Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail "
|
| 420 |
+
"incorreto e auto preenchimento dos campos de endereço pelo CEP."
|
| 421 |
+
msgstr ""
|
| 422 |
+
|
| 423 |
+
#. Author of the plugin/theme
|
| 424 |
+
msgid "Claudio Sanches"
|
| 425 |
+
msgstr ""
|
| 426 |
+
|
| 427 |
+
#. Author URI of the plugin/theme
|
| 428 |
+
msgid "http://claudiosmweb.com/"
|
| 429 |
+
msgstr ""
|
| 430 |
+
|
| 431 |
#: includes/class-wc-ecfb-front-end.php:115
|
| 432 |
#: includes/class-wc-ecfb-front-end.php:384
|
| 433 |
msgctxt "placeholder"
|
| 478 |
msgid "Birthdate"
|
| 479 |
msgstr ""
|
| 480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 481 |
#: includes/class-wc-ecfb-front-end.php:251
|
| 482 |
#: includes/class-wc-ecfb-front-end.php:409
|
| 483 |
msgctxt "placeholder"
|
| 484 |
msgid "Country"
|
| 485 |
msgstr ""
|
| 486 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 487 |
#: includes/class-wc-ecfb-front-end.php:260
|
| 488 |
#: includes/class-wc-ecfb-front-end.php:417
|
| 489 |
msgctxt "placeholder"
|
| 502 |
msgid "Number"
|
| 503 |
msgstr ""
|
| 504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 505 |
#: includes/class-wc-ecfb-front-end.php:286
|
| 506 |
#: includes/class-wc-ecfb-front-end.php:443
|
| 507 |
msgctxt "placeholder"
|
| 541 |
#: includes/class-wc-ecfb-front-end.php:357
|
| 542 |
msgctxt "placeholder"
|
| 543 |
msgid "Email"
|
| 544 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: claudiosanches
|
|
| 3 |
Donate link: http://claudiosmweb.com/doacoes/
|
| 4 |
Tags: woocommerce, checkout, brazil, cpf, cpnj, rg, ie
|
| 5 |
Requires at least: 3.5
|
| 6 |
-
Tested up to: 4.
|
| 7 |
-
Stable tag: 3.4.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -20,7 +20,7 @@ A partir da versão 3.1.0 é feita integração também com a [API](http://docs.
|
|
| 20 |
|
| 21 |
= Compatibilidade =
|
| 22 |
|
| 23 |
-
Compatível com as versões 2.2.x, 2.3.x e 2.
|
| 24 |
|
| 25 |
Funciona com os plugins:
|
| 26 |
|
|
@@ -77,6 +77,11 @@ Você pode contribuir com código-fonte em nossa página no [GitHub](https://git
|
|
| 77 |
|
| 78 |
== Changelog ==
|
| 79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
= 3.4.0 - 2015/08/18 =
|
| 81 |
|
| 82 |
* Adicionado suporte para WooCommerce 2.4.
|
|
@@ -232,11 +237,10 @@ Você pode contribuir com código-fonte em nossa página no [GitHub](https://git
|
|
| 232 |
|
| 233 |
== Upgrade Notice ==
|
| 234 |
|
| 235 |
-
= 3.4.
|
| 236 |
|
| 237 |
-
*
|
| 238 |
-
*
|
| 239 |
-
* Corrigida integração com a API do WooCommerce quando é usado filtros para campos.
|
| 240 |
|
| 241 |
== License ==
|
| 242 |
|
| 3 |
Donate link: http://claudiosmweb.com/doacoes/
|
| 4 |
Tags: woocommerce, checkout, brazil, cpf, cpnj, rg, ie
|
| 5 |
Requires at least: 3.5
|
| 6 |
+
Tested up to: 4.4
|
| 7 |
+
Stable tag: 3.4.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 20 |
|
| 21 |
= Compatibilidade =
|
| 22 |
|
| 23 |
+
Compatível com as versões 2.2.x, 2.3.x, 2.4.x e 2.5.x do WooCommerce.
|
| 24 |
|
| 25 |
Funciona com os plugins:
|
| 26 |
|
| 77 |
|
| 78 |
== Changelog ==
|
| 79 |
|
| 80 |
+
= 3.4.1 - 2015/09/07 =
|
| 81 |
+
|
| 82 |
+
* Corrigido erros na tela de configurações do plugin.
|
| 83 |
+
* Corrigido os campos de estado e país na tela de edição de usuário no administrador do WordPress.
|
| 84 |
+
|
| 85 |
= 3.4.0 - 2015/08/18 =
|
| 86 |
|
| 87 |
* Adicionado suporte para WooCommerce 2.4.
|
| 237 |
|
| 238 |
== Upgrade Notice ==
|
| 239 |
|
| 240 |
+
= 3.4.1 =
|
| 241 |
|
| 242 |
+
* Corrigido erros na tela de configurações do plugin.
|
| 243 |
+
* Corrigido os campos de estado e país na tela de edição de usuário no administrador do WordPress.
|
|
|
|
| 244 |
|
| 245 |
== License ==
|
| 246 |
|
woocommerce-extra-checkout-fields-for-brazil.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: WooCommerce Extra Checkout Fields for Brazil
|
| 4 |
* Plugin URI: https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil
|
| 5 |
* Description: Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail incorreto e auto preenchimento dos campos de endereço pelo CEP.
|
| 6 |
-
* Version: 3.4.
|
| 7 |
* Author: Claudio Sanches
|
| 8 |
* Author URI: http://claudiosmweb.com/
|
| 9 |
* Text Domain: woocommerce-extra-checkout-fields-for-brazil
|
|
@@ -29,7 +29,7 @@ class Extra_Checkout_Fields_For_Brazil {
|
|
| 29 |
*
|
| 30 |
* @var string
|
| 31 |
*/
|
| 32 |
-
const VERSION = '3.4.
|
| 33 |
|
| 34 |
/**
|
| 35 |
* Instance of this class.
|
| 3 |
* Plugin Name: WooCommerce Extra Checkout Fields for Brazil
|
| 4 |
* Plugin URI: https://github.com/claudiosmweb/woocommerce-extra-checkout-fields-for-brazil
|
| 5 |
* Description: Adiciona novos campos para Pessoa Física ou Jurídica, Data de Nascimento, Sexo, Número, Bairro e Celular. Além de máscaras em campos, aviso de e-mail incorreto e auto preenchimento dos campos de endereço pelo CEP.
|
| 6 |
+
* Version: 3.4.1
|
| 7 |
* Author: Claudio Sanches
|
| 8 |
* Author URI: http://claudiosmweb.com/
|
| 9 |
* Text Domain: woocommerce-extra-checkout-fields-for-brazil
|
| 29 |
*
|
| 30 |
* @var string
|
| 31 |
*/
|
| 32 |
+
const VERSION = '3.4.1';
|
| 33 |
|
| 34 |
/**
|
| 35 |
* Instance of this class.
|
