diff --git a/README.md b/README.md
index 743db4d..a7f4e0d 100644
--- a/README.md
+++ b/README.md
@@ -89,16 +89,6 @@ Currently we have the plugin configured so it can be translated and the followin
* sv_SE - Swedish in Sweden (thanks to [Sebastian Johnsson](http://www.agiley.se/) for contributing)
* tr_TR - Turkish in Turkey (thanks to [Hakan E.](http://kazancexpert.com/) for contributing)
-If your language is not listed above, feel free to create a translation. Here are the basic steps:
-
-1. Copy "mailchimp_i18n-en_US.po" to "mailchimp_i18n-LANG_COUNTRY.po" - fill in LANG and COUNTRY with whatever you use for WPLANG in wp-config.php
-2. Grab a translation editor. [POedit](http://www.poedit.net/) works for us
-3. Translate each line - if you need some context, open up mailchimp.php and search for the line number or text
-4. [Fork](http://help.github.com/fork-a-repo/) the [repository on github](https://github.com/mailchimp/wordpress)
-5. [Clone](http://help.github.com/remotes/#clone) the _develop_ branch
-6. Add the appropriately named files to the /po/ directory and edit the /readme.txt to include how you'd like to be attributed
-7. Make a [pull request](http://help.github.com/send-pull-requests/)
-
## Support Level
**Active:** Mailchimp is actively working on this, and we expect to continue work for the foreseeable future including keeping tested up to the most recent version of WordPress. Bug reports, feature requests, questions, and pull requests are welcome.
diff --git a/includes/blocks/mailchimp/block.json b/includes/blocks/mailchimp/block.json
index ab89575..0f2fe71 100644
--- a/includes/blocks/mailchimp/block.json
+++ b/includes/blocks/mailchimp/block.json
@@ -35,7 +35,7 @@
"text": true
}
},
- "textdomain": "mailchimp_i18n",
+ "textdomain": "mailchimp",
"editorScript": "file:./index.js",
"render": "file:./markup.php",
"editorStyle": "file:./editor.css"
diff --git a/includes/blocks/mailchimp/edit.js b/includes/blocks/mailchimp/edit.js
index b83b450..3083d59 100644
--- a/includes/blocks/mailchimp/edit.js
+++ b/includes/blocks/mailchimp/edit.js
@@ -31,8 +31,8 @@ export const BlockEdit = ({ isSelected }) => {
{isSelected || isDisallowedThemeSSR ? (
{
>
{__(
"Head over here if you'd like to adjust your settings.",
- 'mailchimp_i18n',
+ 'mailchimp',
)}
diff --git a/lib/mailchimp/mailchimp.php b/lib/mailchimp/mailchimp.php
index 07f9273..a310ba0 100644
--- a/lib/mailchimp/mailchimp.php
+++ b/lib/mailchimp/mailchimp.php
@@ -50,8 +50,8 @@ public function __construct( $api_key ) {
throw new Exception(
esc_html(
sprintf(
- // translators: placeholder is an api key
- __( 'Invalid API Key: %s', 'mailchimp_i18n' ),
+ /* translators: %s: api key */
+ __( 'Invalid API Key: %s', 'mailchimp' ),
$api_key
)
)
diff --git a/mailchimp.php b/mailchimp.php
index 4dba8f7..636ba20 100644
--- a/mailchimp.php
+++ b/mailchimp.php
@@ -3,6 +3,7 @@
* Plugin Name: Mailchimp
* Plugin URI: https://mailchimp.com/help/connect-or-disconnect-list-subscribe-for-wordpress/
* Description: Add a Mailchimp signup form widget to your WordPress site.
+ * Text Domain: mailchimp
* Version: 1.5.8
* Requires at least: 6.1
* Requires PHP: 7.0
@@ -60,16 +61,11 @@
/**
* Do the following plugin setup steps here
*
- * Internationalization
* Resource (JS & CSS) enqueuing
*
* @return void
*/
function mailchimp_sf_plugin_init() {
- // Internationalize the plugin
- $textdomain = 'mailchimp_i18n';
- $locale = apply_filters( 'plugin_locale', get_locale(), $textdomain );
- load_textdomain( 'mailchimp_i18n', MCSF_LANG_DIR . $textdomain . '-' . $locale . '.mo' );
// Remove Sopresto check. If user does not have API key, make them authenticate.
@@ -91,7 +87,7 @@ function mailchimp_sf_plugin_init() {
*/
function mailchimp_sf_plugin_action_links( $links ) {
$settings_page = add_query_arg( array( 'page' => 'mailchimp_sf_options' ), admin_url( 'admin.php' ) );
- $settings_link = '' . esc_html__( 'Settings', 'mailchimp_i18n' ) . ' ';
+ $settings_link = '' . esc_html__( 'Settings', 'mailchimp' ) . ' ';
array_unshift( $links, $settings_link );
return $links;
}
@@ -203,8 +199,8 @@ function mailchimp_sf_main_css() {
function mailchimp_sf_add_pages() {
// Add settings page for users who can edit plugins
add_menu_page(
- __( 'Mailchimp Setup', 'mailchimp_i18n' ),
- __( 'Mailchimp', 'mailchimp_i18n' ),
+ esc_html__( 'Mailchimp Setup', 'mailchimp' ),
+ esc_html__( 'Mailchimp', 'mailchimp' ),
MCSF_CAP_THRESHOLD,
'mailchimp_sf_options',
'mailchimp_sf_setup_page',
@@ -482,8 +478,8 @@ function mailchimp_sf_global_msg( $msg = null ) {
* @return void
*/
function mailchimp_sf_set_form_defaults( $list_name = '' ) {
- update_option( 'mc_header_content', __( 'Sign up for', 'mailchimp_i18n' ) . ' ' . $list_name );
- update_option( 'mc_submit_text', __( 'Subscribe', 'mailchimp_i18n' ) );
+ update_option( 'mc_header_content', esc_html__( 'Sign up for', 'mailchimp' ) . ' ' . $list_name );
+ update_option( 'mc_submit_text', esc_html__( 'Subscribe', 'mailchimp' ) );
update_option( 'mc_use_datepicker', 'on' );
update_option( 'mc_custom_style', 'off' );
@@ -511,64 +507,64 @@ function mailchimp_sf_save_general_form_settings() {
// IF NOT DEV MODE
if ( isset( $_POST['mc_use_javascript'] ) ) {
update_option( 'mc_use_javascript', 'on' );
- $msg = '' . __( 'Fancy Javascript submission turned On!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Fancy Javascript submission turned On!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_javascript' ) !== 'off' ) {
update_option( 'mc_use_javascript', 'off' );
- $msg = '' . __( 'Fancy Javascript submission turned Off!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Fancy Javascript submission turned Off!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
if ( isset( $_POST['mc_use_datepicker'] ) ) {
update_option( 'mc_use_datepicker', 'on' );
- $msg = '' . __( 'Datepicker turned On!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Datepicker turned On!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_datepicker' ) !== 'off' ) {
update_option( 'mc_use_datepicker', 'off' );
- $msg = '' . __( 'Datepicker turned Off!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Datepicker turned Off!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
/*Enable double optin toggle*/
if ( isset( $_POST['mc_double_optin'] ) ) {
update_option( 'mc_double_optin', true );
- $msg = '' . __( 'Double opt-in turned On!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Double opt-in turned On!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_double_optin' ) !== false ) {
update_option( 'mc_double_optin', false );
- $msg = '' . __( 'Double opt-in turned Off!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Double opt-in turned Off!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
/* NUKE the CSS! */
if ( isset( $_POST['mc_nuke_all_styles'] ) ) {
update_option( 'mc_nuke_all_styles', true );
- $msg = '' . __( 'Mailchimp CSS turned Off!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Mailchimp CSS turned Off!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_nuke_all_styles' ) !== false ) {
update_option( 'mc_nuke_all_styles', false );
- $msg = '' . __( 'Mailchimp CSS turned On!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Mailchimp CSS turned On!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
/* Update existing */
if ( isset( $_POST['mc_update_existing'] ) ) {
update_option( 'mc_update_existing', true );
- $msg = '' . __( 'Update existing subscribers turned On!' ) . '
';
+ $msg = '' . esc_html__( 'Update existing subscribers turned On!' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_update_existing' ) !== false ) {
update_option( 'mc_update_existing', false );
- $msg = '' . __( 'Update existing subscribers turned Off!' ) . '
';
+ $msg = '' . esc_html__( 'Update existing subscribers turned Off!' ) . '
';
mailchimp_sf_global_msg( $msg );
}
if ( isset( $_POST['mc_use_unsub_link'] ) ) {
update_option( 'mc_use_unsub_link', 'on' );
- $msg = '' . __( 'Unsubscribe link turned On!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Unsubscribe link turned On!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_unsub_link' ) !== 'off' ) {
update_option( 'mc_use_unsub_link', 'off' );
- $msg = '' . __( 'Unsubscribe link turned Off!', 'mailchimp_i18n' ) . '
';
+ $msg = '' . esc_html__( 'Unsubscribe link turned Off!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
@@ -626,7 +622,7 @@ function mailchimp_sf_save_general_form_settings() {
}
}
- $msg = '' . esc_html( __( 'Successfully Updated your List Subscribe Form Settings!', 'mailchimp_i18n' ) ) . '
';
+ $msg = '' . esc_html__( 'Successfully Updated your List Subscribe Form Settings!', 'mailchimp' ) . '
';
mailchimp_sf_global_msg( $msg );
}
@@ -684,18 +680,19 @@ function mailchimp_sf_change_list_if_necessary() {
$igs_text = ' ';
if ( is_array( $igs ) ) {
- // translators: placeholder is a count (number)
- $igs_text .= sprintf( __( 'and %s Sets of Interest Groups', 'mailchimp_i18n' ), count( $igs ) );
+ /* translators: %s: count (number) */
+ $igs_text .= sprintf( esc_html__( 'and %s Sets of Interest Groups', 'mailchimp' ), count( $igs ) );
}
$msg = '' .
sprintf(
- // translators: placeholder is a count (number)
- __( 'Success! Loaded and saved the info for %d Merge Variables', 'mailchimp_i18n' ) . $igs_text,
+ /* translators: %s: count (number) */
+ __( 'Success! Loaded and saved the info for %d Merge Variables', 'mailchimp' ) . $igs_text,
count( $mv )
) . ' ' .
- __( 'from your list' ) . ' "' . $list_name . '" ' .
- __( 'Now you should either Turn On the Mailchimp Widget or change your options below, then turn it on.', 'mailchimp_i18n' ) . '
';
+ esc_html__( 'from your list' ) . ' "' . $list_name . '" ' .
+ esc_html__( 'Now you should either Turn On the Mailchimp Widget or change your options below, then turn it on.', 'mailchimp' ) . '
';
+
mailchimp_sf_global_msg( $msg );
}
}
@@ -738,7 +735,7 @@ function mailchimp_sf_get_merge_vars( $list_id, $new_list ) {
function mailchimp_sf_add_email_field( $merge ) {
$email = array(
'tag' => 'EMAIL',
- 'name' => __( 'Email Address', 'mailchimp_i18n' ),
+ 'name' => esc_html__( 'Email Address', 'mailchimp' ),
'type' => 'email',
'required' => true,
'public' => true,
@@ -896,17 +893,17 @@ function mailchimp_sf_signup_submit() {
'%s ',
wp_kses(
sprintf(
- // translators: first placeholder is email address, second is url
+ /* translators: 1: email address 2: url */
__(
'We encountered a problem adding %1$s to the list. Please sign up here. ',
- 'mailchimp_i18n'
+ 'mailchimp'
),
esc_html( $email ),
esc_url( $url )
),
[
'a' => [
- 'href',
+ 'href' => [],
],
]
)
@@ -920,7 +917,7 @@ function mailchimp_sf_signup_submit() {
// If update existing is turned off and the subscriber exists, error out.
if ( get_option( 'mc_update_existing' ) === false && 'subscribed' === $status ) {
- $msg = 'This email address is already subscribed to the list.';
+ $msg = esc_html__( 'This email address is already subscribed to the list.', 'mailchimp' );
$error = new WP_Error( 'mailchimp-update-existing', $msg );
mailchimp_sf_global_msg( '' . $msg . ' ' );
return false;
@@ -937,10 +934,10 @@ function mailchimp_sf_signup_submit() {
}
if ( 'subscribed' === $retval['status'] ) {
- $esc = __( 'Success, you\'ve been signed up.', 'mailchimp_i18n' );
+ $esc = esc_html__( 'Success, you\'ve been signed up.', 'mailchimp' );
$msg = "{$esc} ";
} else {
- $esc = __( 'Success, you\'ve been signed up! Please look for our confirmation email.', 'mailchimp_i18n' );
+ $esc = esc_html__( 'Success, you\'ve been signed up! Please look for our confirmation email.', 'mailchimp' );
$msg = "{$esc} ";
}
@@ -1044,8 +1041,8 @@ function mailchimp_sf_merge_submit( $mv ) {
}
if ( 'Y' === $mv_var['required'] && trim( $opt_val ) === '' ) {
- // translators: placeholder is field name
- $message = sprintf( __( 'You must fill in %s.', 'mailchimp_i18n' ), esc_html( $mv_var['name'] ) );
+ /* translators: %s: field name */
+ $message = sprintf( esc_html__( 'You must fill in %s.', 'mailchimp' ), esc_html( $mv_var['name'] ) );
$error = new WP_Error( 'missing_required_field', $message );
return $error;
} elseif ( 'EMAIL' !== $tag ) {
@@ -1076,8 +1073,8 @@ function mailchimp_sf_merge_validate_phone( $opt_val, $data ) {
}
if ( ! preg_match( '/[0-9]{0,3}-[0-9]{0,3}-[0-9]{0,4}/A', $opt_val ) ) {
- // translators: placeholder is field name
- $message = sprintf( __( '%s must consist of only numbers', 'mailchimp_i18n' ), esc_html( $data['name'] ) );
+ /* translators: %s: field name */
+ $message = sprintf( esc_html__( '%s must consist of only numbers', 'mailchimp' ), esc_html( $data['name'] ) );
$error = new WP_Error( 'mc_phone_validation', $message );
return $error;
}
@@ -1095,8 +1092,8 @@ function mailchimp_sf_merge_validate_phone( $opt_val, $data ) {
function mailchimp_sf_merge_validate_address( $opt_val, $data ) {
if ( 'Y' === $data['required'] ) {
if ( empty( $opt_val['addr1'] ) || empty( $opt_val['city'] ) ) {
- // translators: placeholder is field name
- $message = sprintf( __( 'You must fill in %s.', 'mailchimp_i18n' ), esc_html( $data['name'] ) );
+ /* translators: %s: field name */
+ $message = sprintf( esc_html__( 'You must fill in %s.', 'mailchimp' ), esc_html( $data['name'] ) );
$error = new WP_Error( 'invalid_address_merge', $message );
return $error;
}
@@ -1222,7 +1219,7 @@ function mailchimp_sf_verify_key( $api ) {
update_option( 'mc_datacenter', $api->datacenter );
} else {
- $msg = __( 'API Key must belong to "Owner", "Admin", or "Manager."', 'mailchimp_i18n' );
+ $msg = esc_html__( 'API Key must belong to "Owner", "Admin", or "Manager."', 'mailchimp' );
return new WP_Error( 'mc-invalid-role', $msg );
}
}
@@ -1315,12 +1312,6 @@ function mailchimp_sf_where_am_i() {
// Define our complete filesystem path
define( 'MCSF_DIR', $mscf_dir );
- /**
- * Lang location needs to be relative *from* ABSPATH,
- * so strip it out of our language dir location
- */
- define( 'MCSF_LANG_DIR', trailingslashit( MCSF_DIR ) . 'po/' );
-
// Define our complete URL to the plugin folder
define( 'MCSF_URL', $mscf_url );
}
diff --git a/mailchimp_widget.php b/mailchimp_widget.php
index b34c9bb..0e490db 100644
--- a/mailchimp_widget.php
+++ b/mailchimp_widget.php
@@ -30,7 +30,7 @@ function mailchimp_sf_signup_form( $args = array() ) {
echo wp_kses(
__(
'Sorry, there was a problem loading your Mailchimp details. Please navigate to Settings and click Mailchimp Setup to try again.',
- 'mailchimp_i18n'
+ 'mailchimp'
),
[
'strong' => [],
@@ -197,7 +197,7 @@ function mailchimp_sf_signup_form( $args = array() ) {
if ( $num_fields > 1 ) {
?>
- * =
+ * =
@@ -262,7 +262,7 @@ function mailchimp_sf_signup_form( $args = array() ) {
$host = 'http://' . $api->datacenter . '.list-manage.com';
?>
' . __( 'Street Address', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'Street Address', 'mailchimp' ) . '
- ' . __( 'Address Line 2', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'Address Line 2', 'mailchimp' ) . '
- ' . __( 'City', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'City', 'mailchimp' ) . '
- ' . __( 'State', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'State', 'mailchimp' ) . '
- ' . __( 'Zip / Postal', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'Zip / Postal', 'mailchimp' ) . '
- ' . __( 'Country', 'mailchimp_i18n' ) . '
+ ' . esc_html__( 'Country', 'mailchimp' ) . '
';
foreach ( $countries as $country_code => $country_name ) {
$html .= '
@@ -503,9 +503,9 @@ class Mailchimp_SF_Widget extends WP_Widget /* phpcs:ignore Universal.Files.Sepa
*/
public function __construct() {
$widget_ops = array(
- 'description' => __( 'Displays a Mailchimp Subscribe box', 'mailchimp_i18n' ),
+ 'description' => __( 'Displays a Mailchimp Subscribe box', 'mailchimp' ),
);
- parent::__construct( 'Mailchimp_SF_Widget', __( 'Mailchimp Widget', 'mailchimp_i18n' ), $widget_ops );
+ parent::__construct( 'Mailchimp_SF_Widget', __( 'Mailchimp Widget', 'mailchimp' ), $widget_ops );
}
/**
@@ -530,7 +530,25 @@ public function widget( $args, $instance ) {
*/
public function form( $instance ) {
?>
-Great work! Your widget is ready to go — just head over here if you'd like to adjust your settings.
+
+ over here if you\'d like to adjust your settings.',
+ 'mailchimp'
+ ),
+ esc_url( admin_url( 'admin.php?page=mailchimp_sf_options' ) )
+ ),
+ [
+ 'a' => [
+ 'href' => [],
+ ],
+ ]
+ );
+ ?>
+
__( 'USA', 'mailchimp_i18n' ),
- '286' => __( 'Aaland Islands', 'mailchimp_i18n' ),
- '274' => __( 'Afghanistan', 'mailchimp_i18n' ),
- '2' => __( 'Albania', 'mailchimp_i18n' ),
- '3' => __( 'Algeria', 'mailchimp_i18n' ),
- '178' => __( 'American Samoa', 'mailchimp_i18n' ),
- '4' => __( 'Andorra', 'mailchimp_i18n' ),
- '5' => __( 'Angola', 'mailchimp_i18n' ),
- '176' => __( 'Anguilla', 'mailchimp_i18n' ),
- '175' => __( 'Antigua And Barbuda', 'mailchimp_i18n' ),
- '6' => __( 'Argentina', 'mailchimp_i18n' ),
- '7' => __( 'Armenia', 'mailchimp_i18n' ),
- '179' => __( 'Aruba', 'mailchimp_i18n' ),
- '8' => __( 'Australia', 'mailchimp_i18n' ),
- '9' => __( 'Austria', 'mailchimp_i18n' ),
- '10' => __( 'Azerbaijan', 'mailchimp_i18n' ),
- '11' => __( 'Bahamas', 'mailchimp_i18n' ),
- '12' => __( 'Bahrain', 'mailchimp_i18n' ),
- '13' => __( 'Bangladesh', 'mailchimp_i18n' ),
- '14' => __( 'Barbados', 'mailchimp_i18n' ),
- '15' => __( 'Belarus', 'mailchimp_i18n' ),
- '16' => __( 'Belgium', 'mailchimp_i18n' ),
- '17' => __( 'Belize', 'mailchimp_i18n' ),
- '18' => __( 'Benin', 'mailchimp_i18n' ),
- '19' => __( 'Bermuda', 'mailchimp_i18n' ),
- '20' => __( 'Bhutan', 'mailchimp_i18n' ),
- '21' => __( 'Bolivia', 'mailchimp_i18n' ),
- '22' => __( 'Bosnia and Herzegovina', 'mailchimp_i18n' ),
- '23' => __( 'Botswana', 'mailchimp_i18n' ),
- '24' => __( 'Brazil', 'mailchimp_i18n' ),
- '180' => __( 'Brunei Darussalam', 'mailchimp_i18n' ),
- '25' => __( 'Bulgaria', 'mailchimp_i18n' ),
- '26' => __( 'Burkina Faso', 'mailchimp_i18n' ),
- '27' => __( 'Burundi', 'mailchimp_i18n' ),
- '28' => __( 'Cambodia', 'mailchimp_i18n' ),
- '29' => __( 'Cameroon', 'mailchimp_i18n' ),
- '30' => __( 'Canada', 'mailchimp_i18n' ),
- '31' => __( 'Cape Verde', 'mailchimp_i18n' ),
- '32' => __( 'Cayman Islands', 'mailchimp_i18n' ),
- '33' => __( 'Central African Republic', 'mailchimp_i18n' ),
- '34' => __( 'Chad', 'mailchimp_i18n' ),
- '35' => __( 'Chile', 'mailchimp_i18n' ),
- '36' => __( 'China', 'mailchimp_i18n' ),
- '37' => __( 'Colombia', 'mailchimp_i18n' ),
- '38' => __( 'Congo', 'mailchimp_i18n' ),
- '183' => __( 'Cook Islands', 'mailchimp_i18n' ),
- '268' => __( 'Costa Rica', 'mailchimp_i18n' ),
- '275' => __( 'Cote D\'Ivoire', 'mailchimp_i18n' ),
- '40' => __( 'Croatia', 'mailchimp_i18n' ),
- '276' => __( 'Cuba', 'mailchimp_i18n' ),
- '41' => __( 'Cyprus', 'mailchimp_i18n' ),
- '42' => __( 'Czech Republic', 'mailchimp_i18n' ),
- '43' => __( 'Denmark', 'mailchimp_i18n' ),
- '44' => __( 'Djibouti', 'mailchimp_i18n' ),
- '289' => __( 'Dominica', 'mailchimp_i18n' ),
- '187' => __( 'Dominican Republic', 'mailchimp_i18n' ),
- '233' => __( 'East Timor', 'mailchimp_i18n' ),
- '45' => __( 'Ecuador', 'mailchimp_i18n' ),
- '46' => __( 'Egypt', 'mailchimp_i18n' ),
- '47' => __( 'El Salvador', 'mailchimp_i18n' ),
- '48' => __( 'Equatorial Guinea', 'mailchimp_i18n' ),
- '49' => __( 'Eritrea', 'mailchimp_i18n' ),
- '50' => __( 'Estonia', 'mailchimp_i18n' ),
- '51' => __( 'Ethiopia', 'mailchimp_i18n' ),
- '191' => __( 'Faroe Islands', 'mailchimp_i18n' ),
- '52' => __( 'Fiji', 'mailchimp_i18n' ),
- '53' => __( 'Finland', 'mailchimp_i18n' ),
- '54' => __( 'France', 'mailchimp_i18n' ),
- '277' => __( 'French Polynesia', 'mailchimp_i18n' ),
- '59' => __( 'Germany', 'mailchimp_i18n' ),
- '60' => __( 'Ghana', 'mailchimp_i18n' ),
- '194' => __( 'Gibraltar', 'mailchimp_i18n' ),
- '61' => __( 'Greece', 'mailchimp_i18n' ),
- '195' => __( 'Greenland', 'mailchimp_i18n' ),
- '192' => __( 'Grenada', 'mailchimp_i18n' ),
- '62' => __( 'Guam', 'mailchimp_i18n' ),
- '198' => __( 'Guatemala', 'mailchimp_i18n' ),
- '270' => __( 'Guernsey', 'mailchimp_i18n' ),
- '65' => __( 'Guyana', 'mailchimp_i18n' ),
- '200' => __( 'Haiti', 'mailchimp_i18n' ),
- '66' => __( 'Honduras', 'mailchimp_i18n' ),
- '67' => __( 'Hong Kong', 'mailchimp_i18n' ),
- '68' => __( 'Hungary', 'mailchimp_i18n' ),
- '69' => __( 'Iceland', 'mailchimp_i18n' ),
- '70' => __( 'India', 'mailchimp_i18n' ),
- '71' => __( 'Indonesia', 'mailchimp_i18n' ),
- '278' => __( 'Iran', 'mailchimp_i18n' ),
- '279' => __( 'Iraq', 'mailchimp_i18n' ),
- '74' => __( 'Ireland', 'mailchimp_i18n' ),
- '75' => __( 'Israel', 'mailchimp_i18n' ),
- '76' => __( 'Italy', 'mailchimp_i18n' ),
- '202' => __( 'Jamaica', 'mailchimp_i18n' ),
- '78' => __( 'Japan', 'mailchimp_i18n' ),
- '288' => __( 'Jersey (Channel Islands)', 'mailchimp_i18n' ),
- '79' => __( 'Jordan', 'mailchimp_i18n' ),
- '80' => __( 'Kazakhstan', 'mailchimp_i18n' ),
- '81' => __( 'Kenya', 'mailchimp_i18n' ),
- '82' => __( 'Kuwait', 'mailchimp_i18n' ),
- '83' => __( 'Kyrgyzstan', 'mailchimp_i18n' ),
- '84' => __( 'Lao People\'s Democratic Republic', 'mailchimp_i18n' ),
- '85' => __( 'Latvia', 'mailchimp_i18n' ),
- '86' => __( 'Lebanon', 'mailchimp_i18n' ),
- '281' => __( 'Libya', 'mailchimp_i18n' ),
- '90' => __( 'Liechtenstein', 'mailchimp_i18n' ),
- '91' => __( 'Lithuania', 'mailchimp_i18n' ),
- '92' => __( 'Luxembourg', 'mailchimp_i18n' ),
- '208' => __( 'Macau', 'mailchimp_i18n' ),
- '93' => __( 'Macedonia', 'mailchimp_i18n' ),
- '94' => __( 'Madagascar', 'mailchimp_i18n' ),
- '95' => __( 'Malawi', 'mailchimp_i18n' ),
- '96' => __( 'Malaysia', 'mailchimp_i18n' ),
- '97' => __( 'Maldives', 'mailchimp_i18n' ),
- '98' => __( 'Mali', 'mailchimp_i18n' ),
- '99' => __( 'Malta', 'mailchimp_i18n' ),
- '212' => __( 'Mauritius', 'mailchimp_i18n' ),
- '101' => __( 'Mexico', 'mailchimp_i18n' ),
- '102' => __( 'Moldova, Republic of', 'mailchimp_i18n' ),
- '103' => __( 'Monaco', 'mailchimp_i18n' ),
- '104' => __( 'Mongolia', 'mailchimp_i18n' ),
- '290' => __( 'Montenegro', 'mailchimp_i18n' ),
- '105' => __( 'Morocco', 'mailchimp_i18n' ),
- '106' => __( 'Mozambique', 'mailchimp_i18n' ),
- '242' => __( 'Myanmar', 'mailchimp_i18n' ),
- '107' => __( 'Namibia', 'mailchimp_i18n' ),
- '108' => __( 'Nepal', 'mailchimp_i18n' ),
- '109' => __( 'Netherlands', 'mailchimp_i18n' ),
- '110' => __( 'Netherlands Antilles', 'mailchimp_i18n' ),
- '213' => __( 'New Caledonia', 'mailchimp_i18n' ),
- '111' => __( 'New Zealand', 'mailchimp_i18n' ),
- '112' => __( 'Nicaragua', 'mailchimp_i18n' ),
- '113' => __( 'Niger', 'mailchimp_i18n' ),
- '114' => __( 'Nigeria', 'mailchimp_i18n' ),
- '272' => __( 'North Korea', 'mailchimp_i18n' ),
- '116' => __( 'Norway', 'mailchimp_i18n' ),
- '117' => __( 'Oman', 'mailchimp_i18n' ),
- '118' => __( 'Pakistan', 'mailchimp_i18n' ),
- '222' => __( 'Palau', 'mailchimp_i18n' ),
- '282' => __( 'Palestine', 'mailchimp_i18n' ),
- '119' => __( 'Panama', 'mailchimp_i18n' ),
- '219' => __( 'Papua New Guinea', 'mailchimp_i18n' ),
- '120' => __( 'Paraguay', 'mailchimp_i18n' ),
- '121' => __( 'Peru', 'mailchimp_i18n' ),
- '122' => __( 'Philippines', 'mailchimp_i18n' ),
- '123' => __( 'Poland', 'mailchimp_i18n' ),
- '124' => __( 'Portugal', 'mailchimp_i18n' ),
- '126' => __( 'Qatar', 'mailchimp_i18n' ),
- '58' => __( 'Republic of Georgia', 'mailchimp_i18n' ),
- '128' => __( 'Romania', 'mailchimp_i18n' ),
- '129' => __( 'Russia', 'mailchimp_i18n' ),
- '130' => __( 'Rwanda', 'mailchimp_i18n' ),
- '205' => __( 'Saint Kitts and Nevis', 'mailchimp_i18n' ),
- '206' => __( 'Saint Lucia', 'mailchimp_i18n' ),
- '132' => __( 'Samoa (Independent)', 'mailchimp_i18n' ),
- '227' => __( 'San Marino', 'mailchimp_i18n' ),
- '133' => __( 'Saudi Arabia', 'mailchimp_i18n' ),
- '134' => __( 'Senegal', 'mailchimp_i18n' ),
- '266' => __( 'Serbia', 'mailchimp_i18n' ),
- '135' => __( 'Seychelles', 'mailchimp_i18n' ),
- '137' => __( 'Singapore', 'mailchimp_i18n' ),
- '138' => __( 'Slovakia', 'mailchimp_i18n' ),
- '139' => __( 'Slovenia', 'mailchimp_i18n' ),
- '223' => __( 'Solomon Islands', 'mailchimp_i18n' ),
- '141' => __( 'South Africa', 'mailchimp_i18n' ),
- '142' => __( 'South Korea', 'mailchimp_i18n' ),
- '143' => __( 'Spain', 'mailchimp_i18n' ),
- '144' => __( 'Sri Lanka', 'mailchimp_i18n' ),
- '293' => __( 'Sudan', 'mailchimp_i18n' ),
- '146' => __( 'Suriname', 'mailchimp_i18n' ),
- '147' => __( 'Swaziland', 'mailchimp_i18n' ),
- '148' => __( 'Sweden', 'mailchimp_i18n' ),
- '149' => __( 'Switzerland', 'mailchimp_i18n' ),
- '152' => __( 'Taiwan', 'mailchimp_i18n' ),
- '153' => __( 'Tanzania', 'mailchimp_i18n' ),
- '154' => __( 'Thailand', 'mailchimp_i18n' ),
- '155' => __( 'Togo', 'mailchimp_i18n' ),
- '232' => __( 'Tonga', 'mailchimp_i18n' ),
- '234' => __( 'Trinidad and Tobago', 'mailchimp_i18n' ),
- '156' => __( 'Tunisia', 'mailchimp_i18n' ),
- '157' => __( 'Turkey', 'mailchimp_i18n' ),
- '287' => __( 'Turks & Caicos Islands', 'mailchimp_i18n' ),
- '159' => __( 'Uganda', 'mailchimp_i18n' ),
- '161' => __( 'Ukraine', 'mailchimp_i18n' ),
- '162' => __( 'United Arab Emirates', 'mailchimp_i18n' ),
- '262' => __( 'United Kingdom', 'mailchimp_i18n' ),
- '163' => __( 'Uruguay', 'mailchimp_i18n' ),
- '239' => __( 'Vanuatu', 'mailchimp_i18n' ),
- '166' => __( 'Vatican City State (Holy See)', 'mailchimp_i18n' ),
- '167' => __( 'Venezuela', 'mailchimp_i18n' ),
- '168' => __( 'Vietnam', 'mailchimp_i18n' ),
- '169' => __( 'Virgin Islands (British)', 'mailchimp_i18n' ),
- '238' => __( 'Virgin Islands (U.S.)', 'mailchimp_i18n' ),
- '173' => __( 'Zambia', 'mailchimp_i18n' ),
- '174' => __( 'Zimbabwe', 'mailchimp_i18n' ),
+ '164' => __( 'USA', 'mailchimp' ),
+ '286' => __( 'Aaland Islands', 'mailchimp' ),
+ '274' => __( 'Afghanistan', 'mailchimp' ),
+ '2' => __( 'Albania', 'mailchimp' ),
+ '3' => __( 'Algeria', 'mailchimp' ),
+ '178' => __( 'American Samoa', 'mailchimp' ),
+ '4' => __( 'Andorra', 'mailchimp' ),
+ '5' => __( 'Angola', 'mailchimp' ),
+ '176' => __( 'Anguilla', 'mailchimp' ),
+ '175' => __( 'Antigua And Barbuda', 'mailchimp' ),
+ '6' => __( 'Argentina', 'mailchimp' ),
+ '7' => __( 'Armenia', 'mailchimp' ),
+ '179' => __( 'Aruba', 'mailchimp' ),
+ '8' => __( 'Australia', 'mailchimp' ),
+ '9' => __( 'Austria', 'mailchimp' ),
+ '10' => __( 'Azerbaijan', 'mailchimp' ),
+ '11' => __( 'Bahamas', 'mailchimp' ),
+ '12' => __( 'Bahrain', 'mailchimp' ),
+ '13' => __( 'Bangladesh', 'mailchimp' ),
+ '14' => __( 'Barbados', 'mailchimp' ),
+ '15' => __( 'Belarus', 'mailchimp' ),
+ '16' => __( 'Belgium', 'mailchimp' ),
+ '17' => __( 'Belize', 'mailchimp' ),
+ '18' => __( 'Benin', 'mailchimp' ),
+ '19' => __( 'Bermuda', 'mailchimp' ),
+ '20' => __( 'Bhutan', 'mailchimp' ),
+ '21' => __( 'Bolivia', 'mailchimp' ),
+ '22' => __( 'Bosnia and Herzegovina', 'mailchimp' ),
+ '23' => __( 'Botswana', 'mailchimp' ),
+ '24' => __( 'Brazil', 'mailchimp' ),
+ '180' => __( 'Brunei Darussalam', 'mailchimp' ),
+ '25' => __( 'Bulgaria', 'mailchimp' ),
+ '26' => __( 'Burkina Faso', 'mailchimp' ),
+ '27' => __( 'Burundi', 'mailchimp' ),
+ '28' => __( 'Cambodia', 'mailchimp' ),
+ '29' => __( 'Cameroon', 'mailchimp' ),
+ '30' => __( 'Canada', 'mailchimp' ),
+ '31' => __( 'Cape Verde', 'mailchimp' ),
+ '32' => __( 'Cayman Islands', 'mailchimp' ),
+ '33' => __( 'Central African Republic', 'mailchimp' ),
+ '34' => __( 'Chad', 'mailchimp' ),
+ '35' => __( 'Chile', 'mailchimp' ),
+ '36' => __( 'China', 'mailchimp' ),
+ '37' => __( 'Colombia', 'mailchimp' ),
+ '38' => __( 'Congo', 'mailchimp' ),
+ '183' => __( 'Cook Islands', 'mailchimp' ),
+ '268' => __( 'Costa Rica', 'mailchimp' ),
+ '275' => __( 'Cote D\'Ivoire', 'mailchimp' ),
+ '40' => __( 'Croatia', 'mailchimp' ),
+ '276' => __( 'Cuba', 'mailchimp' ),
+ '41' => __( 'Cyprus', 'mailchimp' ),
+ '42' => __( 'Czech Republic', 'mailchimp' ),
+ '43' => __( 'Denmark', 'mailchimp' ),
+ '44' => __( 'Djibouti', 'mailchimp' ),
+ '289' => __( 'Dominica', 'mailchimp' ),
+ '187' => __( 'Dominican Republic', 'mailchimp' ),
+ '233' => __( 'East Timor', 'mailchimp' ),
+ '45' => __( 'Ecuador', 'mailchimp' ),
+ '46' => __( 'Egypt', 'mailchimp' ),
+ '47' => __( 'El Salvador', 'mailchimp' ),
+ '48' => __( 'Equatorial Guinea', 'mailchimp' ),
+ '49' => __( 'Eritrea', 'mailchimp' ),
+ '50' => __( 'Estonia', 'mailchimp' ),
+ '51' => __( 'Ethiopia', 'mailchimp' ),
+ '191' => __( 'Faroe Islands', 'mailchimp' ),
+ '52' => __( 'Fiji', 'mailchimp' ),
+ '53' => __( 'Finland', 'mailchimp' ),
+ '54' => __( 'France', 'mailchimp' ),
+ '277' => __( 'French Polynesia', 'mailchimp' ),
+ '59' => __( 'Germany', 'mailchimp' ),
+ '60' => __( 'Ghana', 'mailchimp' ),
+ '194' => __( 'Gibraltar', 'mailchimp' ),
+ '61' => __( 'Greece', 'mailchimp' ),
+ '195' => __( 'Greenland', 'mailchimp' ),
+ '192' => __( 'Grenada', 'mailchimp' ),
+ '62' => __( 'Guam', 'mailchimp' ),
+ '198' => __( 'Guatemala', 'mailchimp' ),
+ '270' => __( 'Guernsey', 'mailchimp' ),
+ '65' => __( 'Guyana', 'mailchimp' ),
+ '200' => __( 'Haiti', 'mailchimp' ),
+ '66' => __( 'Honduras', 'mailchimp' ),
+ '67' => __( 'Hong Kong', 'mailchimp' ),
+ '68' => __( 'Hungary', 'mailchimp' ),
+ '69' => __( 'Iceland', 'mailchimp' ),
+ '70' => __( 'India', 'mailchimp' ),
+ '71' => __( 'Indonesia', 'mailchimp' ),
+ '278' => __( 'Iran', 'mailchimp' ),
+ '279' => __( 'Iraq', 'mailchimp' ),
+ '74' => __( 'Ireland', 'mailchimp' ),
+ '75' => __( 'Israel', 'mailchimp' ),
+ '76' => __( 'Italy', 'mailchimp' ),
+ '202' => __( 'Jamaica', 'mailchimp' ),
+ '78' => __( 'Japan', 'mailchimp' ),
+ '288' => __( 'Jersey (Channel Islands)', 'mailchimp' ),
+ '79' => __( 'Jordan', 'mailchimp' ),
+ '80' => __( 'Kazakhstan', 'mailchimp' ),
+ '81' => __( 'Kenya', 'mailchimp' ),
+ '82' => __( 'Kuwait', 'mailchimp' ),
+ '83' => __( 'Kyrgyzstan', 'mailchimp' ),
+ '84' => __( 'Lao People\'s Democratic Republic', 'mailchimp' ),
+ '85' => __( 'Latvia', 'mailchimp' ),
+ '86' => __( 'Lebanon', 'mailchimp' ),
+ '281' => __( 'Libya', 'mailchimp' ),
+ '90' => __( 'Liechtenstein', 'mailchimp' ),
+ '91' => __( 'Lithuania', 'mailchimp' ),
+ '92' => __( 'Luxembourg', 'mailchimp' ),
+ '208' => __( 'Macau', 'mailchimp' ),
+ '93' => __( 'Macedonia', 'mailchimp' ),
+ '94' => __( 'Madagascar', 'mailchimp' ),
+ '95' => __( 'Malawi', 'mailchimp' ),
+ '96' => __( 'Malaysia', 'mailchimp' ),
+ '97' => __( 'Maldives', 'mailchimp' ),
+ '98' => __( 'Mali', 'mailchimp' ),
+ '99' => __( 'Malta', 'mailchimp' ),
+ '212' => __( 'Mauritius', 'mailchimp' ),
+ '101' => __( 'Mexico', 'mailchimp' ),
+ '102' => __( 'Moldova, Republic of', 'mailchimp' ),
+ '103' => __( 'Monaco', 'mailchimp' ),
+ '104' => __( 'Mongolia', 'mailchimp' ),
+ '290' => __( 'Montenegro', 'mailchimp' ),
+ '105' => __( 'Morocco', 'mailchimp' ),
+ '106' => __( 'Mozambique', 'mailchimp' ),
+ '242' => __( 'Myanmar', 'mailchimp' ),
+ '107' => __( 'Namibia', 'mailchimp' ),
+ '108' => __( 'Nepal', 'mailchimp' ),
+ '109' => __( 'Netherlands', 'mailchimp' ),
+ '110' => __( 'Netherlands Antilles', 'mailchimp' ),
+ '213' => __( 'New Caledonia', 'mailchimp' ),
+ '111' => __( 'New Zealand', 'mailchimp' ),
+ '112' => __( 'Nicaragua', 'mailchimp' ),
+ '113' => __( 'Niger', 'mailchimp' ),
+ '114' => __( 'Nigeria', 'mailchimp' ),
+ '272' => __( 'North Korea', 'mailchimp' ),
+ '116' => __( 'Norway', 'mailchimp' ),
+ '117' => __( 'Oman', 'mailchimp' ),
+ '118' => __( 'Pakistan', 'mailchimp' ),
+ '222' => __( 'Palau', 'mailchimp' ),
+ '282' => __( 'Palestine', 'mailchimp' ),
+ '119' => __( 'Panama', 'mailchimp' ),
+ '219' => __( 'Papua New Guinea', 'mailchimp' ),
+ '120' => __( 'Paraguay', 'mailchimp' ),
+ '121' => __( 'Peru', 'mailchimp' ),
+ '122' => __( 'Philippines', 'mailchimp' ),
+ '123' => __( 'Poland', 'mailchimp' ),
+ '124' => __( 'Portugal', 'mailchimp' ),
+ '126' => __( 'Qatar', 'mailchimp' ),
+ '58' => __( 'Republic of Georgia', 'mailchimp' ),
+ '128' => __( 'Romania', 'mailchimp' ),
+ '129' => __( 'Russia', 'mailchimp' ),
+ '130' => __( 'Rwanda', 'mailchimp' ),
+ '205' => __( 'Saint Kitts and Nevis', 'mailchimp' ),
+ '206' => __( 'Saint Lucia', 'mailchimp' ),
+ '132' => __( 'Samoa (Independent)', 'mailchimp' ),
+ '227' => __( 'San Marino', 'mailchimp' ),
+ '133' => __( 'Saudi Arabia', 'mailchimp' ),
+ '134' => __( 'Senegal', 'mailchimp' ),
+ '266' => __( 'Serbia', 'mailchimp' ),
+ '135' => __( 'Seychelles', 'mailchimp' ),
+ '137' => __( 'Singapore', 'mailchimp' ),
+ '138' => __( 'Slovakia', 'mailchimp' ),
+ '139' => __( 'Slovenia', 'mailchimp' ),
+ '223' => __( 'Solomon Islands', 'mailchimp' ),
+ '141' => __( 'South Africa', 'mailchimp' ),
+ '142' => __( 'South Korea', 'mailchimp' ),
+ '143' => __( 'Spain', 'mailchimp' ),
+ '144' => __( 'Sri Lanka', 'mailchimp' ),
+ '293' => __( 'Sudan', 'mailchimp' ),
+ '146' => __( 'Suriname', 'mailchimp' ),
+ '147' => __( 'Swaziland', 'mailchimp' ),
+ '148' => __( 'Sweden', 'mailchimp' ),
+ '149' => __( 'Switzerland', 'mailchimp' ),
+ '152' => __( 'Taiwan', 'mailchimp' ),
+ '153' => __( 'Tanzania', 'mailchimp' ),
+ '154' => __( 'Thailand', 'mailchimp' ),
+ '155' => __( 'Togo', 'mailchimp' ),
+ '232' => __( 'Tonga', 'mailchimp' ),
+ '234' => __( 'Trinidad and Tobago', 'mailchimp' ),
+ '156' => __( 'Tunisia', 'mailchimp' ),
+ '157' => __( 'Turkey', 'mailchimp' ),
+ '287' => __( 'Turks & Caicos Islands', 'mailchimp' ),
+ '159' => __( 'Uganda', 'mailchimp' ),
+ '161' => __( 'Ukraine', 'mailchimp' ),
+ '162' => __( 'United Arab Emirates', 'mailchimp' ),
+ '262' => __( 'United Kingdom', 'mailchimp' ),
+ '163' => __( 'Uruguay', 'mailchimp' ),
+ '239' => __( 'Vanuatu', 'mailchimp' ),
+ '166' => __( 'Vatican City State (Holy See)', 'mailchimp' ),
+ '167' => __( 'Venezuela', 'mailchimp' ),
+ '168' => __( 'Vietnam', 'mailchimp' ),
+ '169' => __( 'Virgin Islands (British)', 'mailchimp' ),
+ '238' => __( 'Virgin Islands (U.S.)', 'mailchimp' ),
+ '173' => __( 'Zambia', 'mailchimp' ),
+ '174' => __( 'Zimbabwe', 'mailchimp' ),
);
}
diff --git a/phpcs-compat.xml b/phpcs-compat.xml
index 5192aca..f425f18 100644
--- a/phpcs-compat.xml
+++ b/phpcs-compat.xml
@@ -11,7 +11,6 @@
*/tests/*
*/node_modules/*
*/vendor/*
- */po/*
diff --git a/po/mailchimp.pot b/po/mailchimp.pot
deleted file mode 100644
index 4d7b9ed..0000000
--- a/po/mailchimp.pot
+++ /dev/null
@@ -1,1288 +0,0 @@
-# Copyright (C) 2016 MailChimp
-# This file is distributed under the same license as the MailChimp package.
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.5.1\n"
-"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp\n"
-"POT-Creation-Date: 2016-08-12 14:29:14+00:00\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-
-#: mailchimp.php:79
-msgid "Settings"
-msgstr ""
-
-#: mailchimp.php:176
-msgid "MailChimp Setup"
-msgstr ""
-
-#: mailchimp.php:399
-msgid "Sign up for"
-msgstr ""
-
-#: mailchimp.php:400
-msgid "Subscribe"
-msgstr ""
-
-#: mailchimp.php:428
-msgid "Monkey Rewards turned On!"
-msgstr ""
-
-#: mailchimp.php:432
-msgid "Monkey Rewards turned Off!"
-msgstr ""
-
-#: mailchimp.php:437
-msgid "Fancy Javascript submission turned On!"
-msgstr ""
-
-#: mailchimp.php:441
-msgid "Fancy Javascript submission turned Off!"
-msgstr ""
-
-#: mailchimp.php:447
-msgid "Datepicker turned On!"
-msgstr ""
-
-#: mailchimp.php:451
-msgid "Datepicker turned Off!"
-msgstr ""
-
-#: mailchimp.php:459
-msgid "Double opt-in turned On!"
-msgstr ""
-
-#: mailchimp.php:463
-msgid "Double opt-in turned Off!"
-msgstr ""
-
-#: mailchimp.php:470
-msgid "MailChimp CSS turned Off!"
-msgstr ""
-
-#: mailchimp.php:474
-msgid "MailChimp CSS turned On!"
-msgstr ""
-
-#: mailchimp.php:480
-msgid "Unsubscribe link turned On!"
-msgstr ""
-
-#: mailchimp.php:486
-msgid "Unsubscribe link turned Off!"
-msgstr ""
-
-#: mailchimp.php:546
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr ""
-
-#: mailchimp.php:599
-msgid "and %s Sets of Interest Groups"
-msgstr ""
-
-#: mailchimp.php:604
-msgid "Success! Loaded and saved the info for %d Merge Variables"
-msgstr ""
-
-#: mailchimp.php:607
-msgid "from your list"
-msgstr ""
-
-#: mailchimp.php:608
-msgid ""
-"Now you should either Turn On the MailChimp Widget or change your options "
-"below, then turn it on."
-msgstr ""
-
-#: mailchimp.php:633
-msgid "Email Address"
-msgstr ""
-
-#: mailchimp.php:755
-msgid "Success, you've been signed up."
-msgstr ""
-
-#: mailchimp.php:758
-msgid "Success, you've been signed up! Please look for our confirmation email."
-msgstr ""
-
-#: mailchimp.php:846 mailchimp.php:885
-msgid "You must fill in %s."
-msgstr ""
-
-#: mailchimp.php:874
-msgid "%s must consist of only numbers"
-msgstr ""
-
-#: mailchimp.php:971
-msgid "API Key must belong to \"Owner\", \"Admin\", or \"Manager.\""
-msgstr ""
-
-#: mailchimp_widget.php:16
-msgid ""
-"Sorry, there was a problem loading your MailChimp details. Please navigate "
-"to Settings and click MailChimp Setup to "
-"try again."
-msgstr ""
-
-#: mailchimp_widget.php:176
-msgid "required field"
-msgstr ""
-
-#: mailchimp_widget.php:216
-msgid "Preferred Format"
-msgstr ""
-
-#: mailchimp_widget.php:219
-msgid "HTML"
-msgstr ""
-
-#: mailchimp_widget.php:220
-msgid "Text"
-msgstr ""
-
-#: mailchimp_widget.php:244
-msgid "unsubscribe from list"
-msgstr ""
-
-#: mailchimp_widget.php:252
-msgid "powered by"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "January"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "February"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "March"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "April"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "May"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "June"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "July"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "August"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "September"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "October"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "November"
-msgstr ""
-
-#: mailchimp_widget.php:388
-msgid "December"
-msgstr ""
-
-#: mailchimp_widget.php:412
-msgid "Street Address"
-msgstr ""
-
-#: mailchimp_widget.php:414
-msgid "Address Line 2"
-msgstr ""
-
-#: mailchimp_widget.php:416
-msgid "City"
-msgstr ""
-
-#: mailchimp_widget.php:418
-msgid "State"
-msgstr ""
-
-#: mailchimp_widget.php:420
-msgid "Zip / Postal"
-msgstr ""
-
-#: mailchimp_widget.php:422
-msgid "Country"
-msgstr ""
-
-#: mailchimp_widget.php:477
-msgid "Displays a MailChimp Subscribe box"
-msgstr ""
-
-#: mailchimp_widget.php:479
-msgid "MailChimp Widget"
-msgstr ""
-
-#: mailchimp_widget.php:494
-msgid "USA"
-msgstr ""
-
-#: mailchimp_widget.php:495
-msgid "Aaland Islands"
-msgstr ""
-
-#: mailchimp_widget.php:496
-msgid "Afghanistan"
-msgstr ""
-
-#: mailchimp_widget.php:497
-msgid "Albania"
-msgstr ""
-
-#: mailchimp_widget.php:498
-msgid "Algeria"
-msgstr ""
-
-#: mailchimp_widget.php:499
-msgid "American Samoa"
-msgstr ""
-
-#: mailchimp_widget.php:500
-msgid "Andorra"
-msgstr ""
-
-#: mailchimp_widget.php:501
-msgid "Angola"
-msgstr ""
-
-#: mailchimp_widget.php:502
-msgid "Anguilla"
-msgstr ""
-
-#: mailchimp_widget.php:503
-msgid "Antigua And Barbuda"
-msgstr ""
-
-#: mailchimp_widget.php:504
-msgid "Argentina"
-msgstr ""
-
-#: mailchimp_widget.php:505
-msgid "Armenia"
-msgstr ""
-
-#: mailchimp_widget.php:506
-msgid "Aruba"
-msgstr ""
-
-#: mailchimp_widget.php:507
-msgid "Australia"
-msgstr ""
-
-#: mailchimp_widget.php:508
-msgid "Austria"
-msgstr ""
-
-#: mailchimp_widget.php:509
-msgid "Azerbaijan"
-msgstr ""
-
-#: mailchimp_widget.php:510
-msgid "Bahamas"
-msgstr ""
-
-#: mailchimp_widget.php:511
-msgid "Bahrain"
-msgstr ""
-
-#: mailchimp_widget.php:512
-msgid "Bangladesh"
-msgstr ""
-
-#: mailchimp_widget.php:513
-msgid "Barbados"
-msgstr ""
-
-#: mailchimp_widget.php:514
-msgid "Belarus"
-msgstr ""
-
-#: mailchimp_widget.php:515
-msgid "Belgium"
-msgstr ""
-
-#: mailchimp_widget.php:516
-msgid "Belize"
-msgstr ""
-
-#: mailchimp_widget.php:517
-msgid "Benin"
-msgstr ""
-
-#: mailchimp_widget.php:518
-msgid "Bermuda"
-msgstr ""
-
-#: mailchimp_widget.php:519
-msgid "Bhutan"
-msgstr ""
-
-#: mailchimp_widget.php:520
-msgid "Bolivia"
-msgstr ""
-
-#: mailchimp_widget.php:521
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#: mailchimp_widget.php:522
-msgid "Botswana"
-msgstr ""
-
-#: mailchimp_widget.php:523
-msgid "Brazil"
-msgstr ""
-
-#: mailchimp_widget.php:524
-msgid "Brunei Darussalam"
-msgstr ""
-
-#: mailchimp_widget.php:525
-msgid "Bulgaria"
-msgstr ""
-
-#: mailchimp_widget.php:526
-msgid "Burkina Faso"
-msgstr ""
-
-#: mailchimp_widget.php:527
-msgid "Burundi"
-msgstr ""
-
-#: mailchimp_widget.php:528
-msgid "Cambodia"
-msgstr ""
-
-#: mailchimp_widget.php:529
-msgid "Cameroon"
-msgstr ""
-
-#: mailchimp_widget.php:530
-msgid "Canada"
-msgstr ""
-
-#: mailchimp_widget.php:531
-msgid "Cape Verde"
-msgstr ""
-
-#: mailchimp_widget.php:532
-msgid "Cayman Islands"
-msgstr ""
-
-#: mailchimp_widget.php:533
-msgid "Central African Republic"
-msgstr ""
-
-#: mailchimp_widget.php:534
-msgid "Chad"
-msgstr ""
-
-#: mailchimp_widget.php:535
-msgid "Chile"
-msgstr ""
-
-#: mailchimp_widget.php:536
-msgid "China"
-msgstr ""
-
-#: mailchimp_widget.php:537
-msgid "Colombia"
-msgstr ""
-
-#: mailchimp_widget.php:538
-msgid "Congo"
-msgstr ""
-
-#: mailchimp_widget.php:539
-msgid "Cook Islands"
-msgstr ""
-
-#: mailchimp_widget.php:540
-msgid "Costa Rica"
-msgstr ""
-
-#: mailchimp_widget.php:541
-msgid "Cote D'Ivoire"
-msgstr ""
-
-#: mailchimp_widget.php:542
-msgid "Croatia"
-msgstr ""
-
-#: mailchimp_widget.php:543
-msgid "Cuba"
-msgstr ""
-
-#: mailchimp_widget.php:544
-msgid "Cyprus"
-msgstr ""
-
-#: mailchimp_widget.php:545
-msgid "Czech Republic"
-msgstr ""
-
-#: mailchimp_widget.php:546
-msgid "Denmark"
-msgstr ""
-
-#: mailchimp_widget.php:547
-msgid "Djibouti"
-msgstr ""
-
-#: mailchimp_widget.php:548
-msgid "Dominica"
-msgstr ""
-
-#: mailchimp_widget.php:549
-msgid "Dominican Republic"
-msgstr ""
-
-#: mailchimp_widget.php:550
-msgid "East Timor"
-msgstr ""
-
-#: mailchimp_widget.php:551
-msgid "Ecuador"
-msgstr ""
-
-#: mailchimp_widget.php:552
-msgid "Egypt"
-msgstr ""
-
-#: mailchimp_widget.php:553
-msgid "El Salvador"
-msgstr ""
-
-#: mailchimp_widget.php:554
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: mailchimp_widget.php:555
-msgid "Eritrea"
-msgstr ""
-
-#: mailchimp_widget.php:556
-msgid "Estonia"
-msgstr ""
-
-#: mailchimp_widget.php:557
-msgid "Ethiopia"
-msgstr ""
-
-#: mailchimp_widget.php:558
-msgid "Faroe Islands"
-msgstr ""
-
-#: mailchimp_widget.php:559
-msgid "Fiji"
-msgstr ""
-
-#: mailchimp_widget.php:560
-msgid "Finland"
-msgstr ""
-
-#: mailchimp_widget.php:561
-msgid "France"
-msgstr ""
-
-#: mailchimp_widget.php:562
-msgid "French Polynesia"
-msgstr ""
-
-#: mailchimp_widget.php:563
-msgid "Germany"
-msgstr ""
-
-#: mailchimp_widget.php:564
-msgid "Ghana"
-msgstr ""
-
-#: mailchimp_widget.php:565
-msgid "Gibraltar"
-msgstr ""
-
-#: mailchimp_widget.php:566
-msgid "Greece"
-msgstr ""
-
-#: mailchimp_widget.php:567
-msgid "Greenland"
-msgstr ""
-
-#: mailchimp_widget.php:568
-msgid "Grenada"
-msgstr ""
-
-#: mailchimp_widget.php:569
-msgid "Guam"
-msgstr ""
-
-#: mailchimp_widget.php:570
-msgid "Guatemala"
-msgstr ""
-
-#: mailchimp_widget.php:571
-msgid "Guernsey"
-msgstr ""
-
-#: mailchimp_widget.php:572
-msgid "Guyana"
-msgstr ""
-
-#: mailchimp_widget.php:573
-msgid "Haiti"
-msgstr ""
-
-#: mailchimp_widget.php:574
-msgid "Honduras"
-msgstr ""
-
-#: mailchimp_widget.php:575
-msgid "Hong Kong"
-msgstr ""
-
-#: mailchimp_widget.php:576
-msgid "Hungary"
-msgstr ""
-
-#: mailchimp_widget.php:577
-msgid "Iceland"
-msgstr ""
-
-#: mailchimp_widget.php:578
-msgid "India"
-msgstr ""
-
-#: mailchimp_widget.php:579
-msgid "Indonesia"
-msgstr ""
-
-#: mailchimp_widget.php:580
-msgid "Iran"
-msgstr ""
-
-#: mailchimp_widget.php:581
-msgid "Iraq"
-msgstr ""
-
-#: mailchimp_widget.php:582
-msgid "Ireland"
-msgstr ""
-
-#: mailchimp_widget.php:583
-msgid "Israel"
-msgstr ""
-
-#: mailchimp_widget.php:584
-msgid "Italy"
-msgstr ""
-
-#: mailchimp_widget.php:585
-msgid "Jamaica"
-msgstr ""
-
-#: mailchimp_widget.php:586
-msgid "Japan"
-msgstr ""
-
-#: mailchimp_widget.php:587
-msgid "Jersey (Channel Islands)"
-msgstr ""
-
-#: mailchimp_widget.php:588
-msgid "Jordan"
-msgstr ""
-
-#: mailchimp_widget.php:589
-msgid "Kazakhstan"
-msgstr ""
-
-#: mailchimp_widget.php:590
-msgid "Kenya"
-msgstr ""
-
-#: mailchimp_widget.php:591
-msgid "Kuwait"
-msgstr ""
-
-#: mailchimp_widget.php:592
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: mailchimp_widget.php:593
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
-#: mailchimp_widget.php:594
-msgid "Latvia"
-msgstr ""
-
-#: mailchimp_widget.php:595
-msgid "Lebanon"
-msgstr ""
-
-#: mailchimp_widget.php:596
-msgid "Libya"
-msgstr ""
-
-#: mailchimp_widget.php:597
-msgid "Liechtenstein"
-msgstr ""
-
-#: mailchimp_widget.php:598
-msgid "Lithuania"
-msgstr ""
-
-#: mailchimp_widget.php:599
-msgid "Luxembourg"
-msgstr ""
-
-#: mailchimp_widget.php:600
-msgid "Macau"
-msgstr ""
-
-#: mailchimp_widget.php:601
-msgid "Macedonia"
-msgstr ""
-
-#: mailchimp_widget.php:602
-msgid "Madagascar"
-msgstr ""
-
-#: mailchimp_widget.php:603
-msgid "Malawi"
-msgstr ""
-
-#: mailchimp_widget.php:604
-msgid "Malaysia"
-msgstr ""
-
-#: mailchimp_widget.php:605
-msgid "Maldives"
-msgstr ""
-
-#: mailchimp_widget.php:606
-msgid "Mali"
-msgstr ""
-
-#: mailchimp_widget.php:607
-msgid "Malta"
-msgstr ""
-
-#: mailchimp_widget.php:608
-msgid "Mauritius"
-msgstr ""
-
-#: mailchimp_widget.php:609
-msgid "Mexico"
-msgstr ""
-
-#: mailchimp_widget.php:610
-msgid "Moldova, Republic of"
-msgstr ""
-
-#: mailchimp_widget.php:611
-msgid "Monaco"
-msgstr ""
-
-#: mailchimp_widget.php:612
-msgid "Mongolia"
-msgstr ""
-
-#: mailchimp_widget.php:613
-msgid "Montenegro"
-msgstr ""
-
-#: mailchimp_widget.php:614
-msgid "Morocco"
-msgstr ""
-
-#: mailchimp_widget.php:615
-msgid "Mozambique"
-msgstr ""
-
-#: mailchimp_widget.php:616
-msgid "Myanmar"
-msgstr ""
-
-#: mailchimp_widget.php:617
-msgid "Namibia"
-msgstr ""
-
-#: mailchimp_widget.php:618
-msgid "Nepal"
-msgstr ""
-
-#: mailchimp_widget.php:619
-msgid "Netherlands"
-msgstr ""
-
-#: mailchimp_widget.php:620
-msgid "Netherlands Antilles"
-msgstr ""
-
-#: mailchimp_widget.php:621
-msgid "New Caledonia"
-msgstr ""
-
-#: mailchimp_widget.php:622
-msgid "New Zealand"
-msgstr ""
-
-#: mailchimp_widget.php:623
-msgid "Nicaragua"
-msgstr ""
-
-#: mailchimp_widget.php:624
-msgid "Niger"
-msgstr ""
-
-#: mailchimp_widget.php:625
-msgid "Nigeria"
-msgstr ""
-
-#: mailchimp_widget.php:626
-msgid "North Korea"
-msgstr ""
-
-#: mailchimp_widget.php:627
-msgid "Norway"
-msgstr ""
-
-#: mailchimp_widget.php:628
-msgid "Oman"
-msgstr ""
-
-#: mailchimp_widget.php:629
-msgid "Pakistan"
-msgstr ""
-
-#: mailchimp_widget.php:630
-msgid "Palau"
-msgstr ""
-
-#: mailchimp_widget.php:631
-msgid "Palestine"
-msgstr ""
-
-#: mailchimp_widget.php:632
-msgid "Panama"
-msgstr ""
-
-#: mailchimp_widget.php:633
-msgid "Papua New Guinea"
-msgstr ""
-
-#: mailchimp_widget.php:634
-msgid "Paraguay"
-msgstr ""
-
-#: mailchimp_widget.php:635
-msgid "Peru"
-msgstr ""
-
-#: mailchimp_widget.php:636
-msgid "Philippines"
-msgstr ""
-
-#: mailchimp_widget.php:637
-msgid "Poland"
-msgstr ""
-
-#: mailchimp_widget.php:638
-msgid "Portugal"
-msgstr ""
-
-#: mailchimp_widget.php:639
-msgid "Qatar"
-msgstr ""
-
-#: mailchimp_widget.php:640
-msgid "Republic of Georgia"
-msgstr ""
-
-#: mailchimp_widget.php:641
-msgid "Romania"
-msgstr ""
-
-#: mailchimp_widget.php:642
-msgid "Russia"
-msgstr ""
-
-#: mailchimp_widget.php:643
-msgid "Rwanda"
-msgstr ""
-
-#: mailchimp_widget.php:644
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#: mailchimp_widget.php:645
-msgid "Saint Lucia"
-msgstr ""
-
-#: mailchimp_widget.php:646
-msgid "Samoa (Independent)"
-msgstr ""
-
-#: mailchimp_widget.php:647
-msgid "San Marino"
-msgstr ""
-
-#: mailchimp_widget.php:648
-msgid "Saudi Arabia"
-msgstr ""
-
-#: mailchimp_widget.php:649
-msgid "Senegal"
-msgstr ""
-
-#: mailchimp_widget.php:650
-msgid "Serbia"
-msgstr ""
-
-#: mailchimp_widget.php:651
-msgid "Seychelles"
-msgstr ""
-
-#: mailchimp_widget.php:652
-msgid "Singapore"
-msgstr ""
-
-#: mailchimp_widget.php:653
-msgid "Slovakia"
-msgstr ""
-
-#: mailchimp_widget.php:654
-msgid "Slovenia"
-msgstr ""
-
-#: mailchimp_widget.php:655
-msgid "Solomon Islands"
-msgstr ""
-
-#: mailchimp_widget.php:656
-msgid "South Africa"
-msgstr ""
-
-#: mailchimp_widget.php:657
-msgid "South Korea"
-msgstr ""
-
-#: mailchimp_widget.php:658
-msgid "Spain"
-msgstr ""
-
-#: mailchimp_widget.php:659
-msgid "Sri Lanka"
-msgstr ""
-
-#: mailchimp_widget.php:660
-msgid "Sudan"
-msgstr ""
-
-#: mailchimp_widget.php:661
-msgid "Suriname"
-msgstr ""
-
-#: mailchimp_widget.php:662
-msgid "Swaziland"
-msgstr ""
-
-#: mailchimp_widget.php:663
-msgid "Sweden"
-msgstr ""
-
-#: mailchimp_widget.php:664
-msgid "Switzerland"
-msgstr ""
-
-#: mailchimp_widget.php:665
-msgid "Taiwan"
-msgstr ""
-
-#: mailchimp_widget.php:666
-msgid "Tanzania"
-msgstr ""
-
-#: mailchimp_widget.php:667
-msgid "Thailand"
-msgstr ""
-
-#: mailchimp_widget.php:668
-msgid "Togo"
-msgstr ""
-
-#: mailchimp_widget.php:669
-msgid "Tonga"
-msgstr ""
-
-#: mailchimp_widget.php:670
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: mailchimp_widget.php:671
-msgid "Tunisia"
-msgstr ""
-
-#: mailchimp_widget.php:672
-msgid "Turkey"
-msgstr ""
-
-#: mailchimp_widget.php:673
-msgid "Turks & Caicos Islands"
-msgstr ""
-
-#: mailchimp_widget.php:674
-msgid "Uganda"
-msgstr ""
-
-#: mailchimp_widget.php:675
-msgid "Ukraine"
-msgstr ""
-
-#: mailchimp_widget.php:676
-msgid "United Arab Emirates"
-msgstr ""
-
-#: mailchimp_widget.php:677
-msgid "United Kingdom"
-msgstr ""
-
-#: mailchimp_widget.php:678
-msgid "Uruguay"
-msgstr ""
-
-#: mailchimp_widget.php:679
-msgid "Vanuatu"
-msgstr ""
-
-#: mailchimp_widget.php:680
-msgid "Vatican City State (Holy See)"
-msgstr ""
-
-#: mailchimp_widget.php:681
-msgid "Venezuela"
-msgstr ""
-
-#: mailchimp_widget.php:682
-msgid "Vietnam"
-msgstr ""
-
-#: mailchimp_widget.php:683
-msgid "Virgin Islands (British)"
-msgstr ""
-
-#: mailchimp_widget.php:684
-msgid "Virgin Islands (U.S.)"
-msgstr ""
-
-#: mailchimp_widget.php:685
-msgid "Zambia"
-msgstr ""
-
-#: mailchimp_widget.php:686
-msgid "Zimbabwe"
-msgstr ""
-
-#: views/setup_page.php:4
-msgid "MailChimp List Setup"
-msgstr ""
-
-#: views/setup_page.php:26
-msgid "Log In"
-msgstr ""
-
-#: views/setup_page.php:27
-msgid ""
-"To get started, we’ll need to access your MailChimp account with an API "
-"Key . Paste your MailChimp API key, and click Connect to "
-"continue.\n"
-msgstr ""
-
-#: views/setup_page.php:33
-msgid "Don't have a MailChimp account?"
-msgstr ""
-
-#: views/setup_page.php:34
-msgid "Try one for Free!"
-msgstr ""
-
-#: views/setup_page.php:43
-msgid "Connect to MailChimp"
-msgstr ""
-
-#: views/setup_page.php:62
-msgid "Notes"
-msgstr ""
-
-#: views/setup_page.php:64
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr ""
-
-#: views/setup_page.php:65
-msgid ""
-"If you change your login to a different account, the info you have setup "
-"below will be erased."
-msgstr ""
-
-#: views/setup_page.php:66
-msgid ""
-"If any of that happens, no biggie - just reconfigure your login and the "
-"items below..."
-msgstr ""
-
-#: views/setup_page.php:78
-msgid "Logged in as"
-msgstr ""
-
-#: views/setup_page.php:84
-msgid "Logout"
-msgstr ""
-
-#: views/setup_page.php:99
-msgid "Your Lists"
-msgstr ""
-
-#: views/setup_page.php:103
-msgid "Please select the MailChimp list you’d like to connect to your form."
-msgstr ""
-
-#: views/setup_page.php:104
-msgid "Note:"
-msgstr ""
-
-#: views/setup_page.php:104
-msgid ""
-"Updating your list will not remove list settings in this plugin, but "
-"changing lists will."
-msgstr ""
-
-#: views/setup_page.php:117
-msgid ""
-"Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a "
-"list before using this tool!"
-msgstr ""
-
-#: views/setup_page.php:130
-msgid "Select A List"
-msgstr ""
-
-#: views/setup_page.php:143
-msgid "Update List"
-msgstr ""
-
-#: views/setup_page.php:164
-msgid "Reset List Options and Select again"
-msgstr ""
-
-#: views/setup_page.php:168
-msgid "Subscribe Form Widget Settings for this List"
-msgstr ""
-
-#: views/setup_page.php:169
-msgid "Selected MailChimp List"
-msgstr ""
-
-#: views/setup_page.php:189
-msgid "Header"
-msgstr ""
-
-#: views/setup_page.php:192 views/setup_page.php:200
-msgid ""
-"Add your own text, HTML markup (including image links), or keep it blank."
-msgstr ""
-
-#: views/setup_page.php:197
-msgid "Sub-header"
-msgstr ""
-
-#: views/setup_page.php:201
-msgid "This will be displayed under the heading and above the form."
-msgstr ""
-
-#: views/setup_page.php:206
-msgid "Submit Button"
-msgstr ""
-
-#: views/setup_page.php:213 views/setup_page.php:242 views/setup_page.php:287
-#: views/setup_page.php:337
-msgid "Update Subscribe Form Settings"
-msgstr ""
-
-#: views/setup_page.php:217
-msgid "Remove CSS"
-msgstr ""
-
-#: views/setup_page.php:217
-msgid ""
-"This will disable all MailChimp CSS, so it’s recommended for WordPress "
-"experts only."
-msgstr ""
-
-#: views/setup_page.php:226
-msgid "Enabled?"
-msgstr ""
-
-#: views/setup_page.php:226
-msgid "Edit the default MailChimp CSS style."
-msgstr ""
-
-#: views/setup_page.php:228
-msgid "Border Width (px)"
-msgstr ""
-
-#: views/setup_page.php:229
-msgid "Set to 0 for no border, do not enter"
-msgstr ""
-
-#: views/setup_page.php:231
-msgid "Border Color"
-msgstr ""
-
-#: views/setup_page.php:232 views/setup_page.php:235 views/setup_page.php:238
-msgid "Do not enter initial"
-msgstr ""
-
-#: views/setup_page.php:234
-msgid "Text Color"
-msgstr ""
-
-#: views/setup_page.php:237
-msgid "Background Color"
-msgstr ""
-
-#: views/setup_page.php:248
-msgid "MonkeyRewards"
-msgstr ""
-
-#: views/setup_page.php:250
-msgid ""
-"We’ll add a \"powered by MailChimp\" link to your form that will help you "
-"earn MonkeyRewards . You can turn it off at any "
-"time."
-msgstr ""
-
-#: views/setup_page.php:255
-msgid "Use JavaScript Support?"
-msgstr ""
-
-#: views/setup_page.php:257
-msgid ""
-"This plugin uses JavaScript submission, and it should degrade gracefully for "
-"users not using JavaScript. It is optional, and you can turn it off at any "
-"time."
-msgstr ""
-
-#: views/setup_page.php:262
-msgid "Use JavaScript Datepicker?"
-msgstr ""
-
-#: views/setup_page.php:264
-msgid "We’ll use the jQuery UI Datepicker for dates."
-msgstr ""
-
-#: views/setup_page.php:269
-msgid "Use Double Opt-In (Recommended)?"
-msgstr ""
-
-#: views/setup_page.php:271
-msgid ""
-"Before new your subscribers are added via the plugin, they'll need to "
-"confirm their email address."
-msgstr ""
-
-#: views/setup_page.php:276
-msgid "Include Unsubscribe link?"
-msgstr ""
-
-#: views/setup_page.php:278
-msgid "We’ll automatically add a link to your list’s unsubscribe form."
-msgstr ""
-
-#: views/setup_page.php:292
-msgid "Merge Fields Included"
-msgstr ""
-
-#: views/setup_page.php:299
-msgid "No Merge Fields found."
-msgstr ""
-
-#: views/setup_page.php:306
-msgid "Name"
-msgstr ""
-
-#: views/setup_page.php:307
-msgid "Tag"
-msgstr ""
-
-#: views/setup_page.php:308
-msgid "Required?"
-msgstr ""
-
-#: views/setup_page.php:309
-msgid "Include?"
-msgstr ""
-
-#: views/setup_page.php:344
-msgid "Group Settings"
-msgstr ""
-
-#: views/setup_page.php:351
-msgid "No Interest Groups Setup for this List"
-msgstr ""
-
-#: views/setup_page.php:363
-msgid "Show?"
-msgstr ""
-
-#: views/setup_page.php:370
-msgid "Input Type"
-msgstr ""
-
-#: views/setup_page.php:374
-msgid "Options"
-msgstr ""
-
-#. #-#-#-#-# plugin.pot (MailChimp 1.5.1) #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#. #-#-#-#-# plugin.pot (MailChimp 1.5.1) #-#-#-#-#
-#. Author of the plugin/theme
-msgid "MailChimp"
-msgstr ""
-
-#. Plugin URI of the plugin/theme
-msgid "http://www.mailchimp.com/plugins/mailchimp-wordpress-plugin/"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"The MailChimp plugin allows you to quickly and easily add a signup form for "
-"your MailChimp list."
-msgstr ""
-
-#. Author URI of the plugin/theme
-msgid "https://mailchimp.com/"
-msgstr ""
diff --git a/po/mailchimp_i18n-bg_BG.mo b/po/mailchimp_i18n-bg_BG.mo
deleted file mode 100644
index f912a13..0000000
Binary files a/po/mailchimp_i18n-bg_BG.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-bg_BG.po b/po/mailchimp_i18n-bg_BG.po
deleted file mode 100644
index 3cac938..0000000
--- a/po/mailchimp_i18n-bg_BG.po
+++ /dev/null
@@ -1,343 +0,0 @@
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-28 17:45-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Трябва да попълните %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Този адрес вече е записан в списъка"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s съдържа невалидно съдържание"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Избрана е невалидна група по интереси"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Този адрес е невалиден"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Поздравления, вие се записахте успешно! Очаквайте потвърдителното писмо!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "задължително поле"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "отпиши се от списъка"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "благодарение на"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Setup"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Докато обновявахме настройките, не успяхме да влезем с вашия акаунт. Ще се наложи отново да се идентифицирате и да настроите списъка си."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp List Setup"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Поздравления! Вашите потребителско име и парола бяха прието! Да продължим напред?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Вашето потребителско име и парола не бяха приети. Моля, проверете ги и опитайте отново!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Сървъра отговори:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Запиши се за"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Записване"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Поздравления! Заредихме и записахме информацията за %d променливи на сливането и %d групи по интереси от вашият списък"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Сега трябва или да включите MailChimp Widget-а или да промените настройките и тогава да го включите."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Успешно изчистихте избора си на списък. Сега трябва да го изберете отново!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards включени!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards изключени!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Регистрация с Fancy Javascript включена!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Регистрация с Javascript изключена!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Връзка за отписване включена!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Връзка за отписване изключена!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Списъка Запиши от настройките беше обновен успешно!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Потребителска информация"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "За да зпочнете да използвате MailChimp за пръв път, трябва да се сдобиете с ваш API ключ. Моля, въведете вашето MailChimp потребителско име и парола в полетата отдолу."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Нямате MailChimp акаунт? Вземете един безплатно! !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Потребителско име"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Парола"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Запиши & Провери"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Бележки"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Промяната на настройките на MailChimp.com може да го накара да спре да работи."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Ако влезете с друг акаунт, информацията, която въведете по-долу ще бъде изгубена."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Ако това се случи не се притеснявайте - просто променете настройките за вход и променливите под тях..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Регистриран като"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Отпиши се"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Вашите списъци"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Моля, изберете списък за който искате да се запишете."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Нямате избран нито един списък! Моля посетете %s, идентифицирайте се и настройте списък преди да използвате този инструмент!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Избери списък"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Обнови списък"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Бележка:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Обновяването на списъка няма да доведе до загуба на настройките отдолу. Ако изберете друг писък обаче - това ще стане."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Изчисти настройките на списъка и избери отново"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Настройки на Subscribe Form Widget-а за този списък"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Избран MailChimp списък"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Обнови настройките на формата за записване"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "включването на тази опция ще добави \"powered by MailChimp\" връзка към вашата форма, която ще ни помогне. Тази настройка може да се включи и изключи по всяко време."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Използвай Javascript поддръжка?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "включвайки тази опция ще използвате Fancy Javascript Submission която няма да се показва на потребителите с изключен JavaScript. Тя е опционална и може да се включи или изключи по всяко време."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Включи връзка за отписване?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "включването на тази опция ще добави връзка към формата за отписване на хост"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Съдържание на хедъра"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Може да попълните с ваш текст, HTML код (включително връзки на изображения) или нищо!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Submit Button text"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Индивидуално стилизиране"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Включено?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Настройки на хедъра (важи само ако няма HTML тагове в горното съдържание на хедъра)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Ширина на рамката"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Задайте 0 за да няма рамка, не въвеждайте px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Цвят на рамка"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "не въвеждайте първоначално # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Настройки на формата"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Включени променливи по сливане"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Няма включени променливи по сливане"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Име"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Етикет"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Задължително?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Включи?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Групи по интереси"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Няма групи по интереси избрани за този списък"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Покажи?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Вид вход"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Настройки"
-
diff --git a/po/mailchimp_i18n-cs_CZ.mo b/po/mailchimp_i18n-cs_CZ.mo
deleted file mode 100644
index 6932e7d..0000000
Binary files a/po/mailchimp_i18n-cs_CZ.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-cs_CZ.po b/po/mailchimp_i18n-cs_CZ.po
deleted file mode 100644
index 3d5ea7a..0000000
--- a/po/mailchimp_i18n-cs_CZ.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.2\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-01-06 15:40-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Peter Kahoun \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Musíte vyplnit pole %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Tato emailová adresa je již na seznamu…"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s není vyplněno správně"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr ""
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Tato e-mailová adresa není platná."
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Objednáno! Podívejte se prosím na potvrzovací e-mail…"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "vyžadované pole"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "odhlásit se"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "poskytuje"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp "
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr ""
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr ""
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr ""
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr ""
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr ""
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Přihlásit se"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr ""
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr ""
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr ""
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr ""
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr ""
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr ""
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr ""
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr ""
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr ""
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr ""
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr ""
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr ""
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr ""
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Jméno"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Heslo"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Uložit a otestovat"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Poznámky"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr ""
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr ""
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr ""
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Přihlášen jako"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Odhlásit se"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Vaše seznamy"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Vyberte prosím seznam, pro který chcete vytvořit formulář."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr ""
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Vyberte seznam"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Aktualizovat seznam"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Poznámka:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Změna za nový seznam zapříčiní ztrátu nastavení níže. Aktualizace seznamu ne."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr ""
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr ""
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr ""
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Aktualizovat nastavení formuláře"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr ""
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr ""
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr ""
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr ""
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr ""
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr ""
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr ""
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr ""
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr ""
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Vlastní vzhled/styl"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Zapnuto?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr ""
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr ""
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr ""
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr ""
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr ""
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Nastavení formuláře"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Zobrazovaná pole"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr ""
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Jméno"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Štítek"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Povinné?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Zobrazit?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Zájmové skupiny"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Tento seznam nemá žádné zájmové skupiny"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Zobrazit?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Typ vstupu"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Možnosti"
-
diff --git a/po/mailchimp_i18n-da_DK.mo b/po/mailchimp_i18n-da_DK.mo
deleted file mode 100644
index 0a990d6..0000000
Binary files a/po/mailchimp_i18n-da_DK.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-da_DK.po b/po/mailchimp_i18n-da_DK.po
deleted file mode 100644
index 002915b..0000000
--- a/po/mailchimp_i18n-da_DK.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-02-09 16:57-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Jan \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Danish\n"
-"X-Poedit-Country: DENMARK\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Du skal udfylde %s,"
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Den email-adresse er allerede tilmeldt"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s har ugyldigt indhold"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "En ugyldigt interessegruppe er valgt"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Den email-adresse er ugyldig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Tillykke. Du er nu tilmeldt. Se efter om du har modtaget en bekræftelsesmail."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "Obligatorisk felt"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Frameld listen"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "Drevet af"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Setup"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Under opgraderingen af plugin setuppet, var det ikke muligt at logge på din konto. Du er nødt til at logge på igen og sætte din liste op."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp Liste Setup"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Tillykke. Vi kunne verificere dit brugernavn og password. Lad os fortsætte..."
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Ups! Vi kunne ikke logge på og verificere dit brugernavn og password. Kontrollér venligst at de er rigtige og prøv igen."
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Serveren meldte:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Tilmeld dig til"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Abbonnér"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Nu skal du enten slå MailChimp Widget til, eller ændre indstillignerne herunder, og derefter slå den til."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Du har nu resat dit listevalg... Nu kan du vælge igen!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards er slået til!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards er slået fra!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript tilmelding er slået til!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript tilmelding er slået fra!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Frameldingslink er slået til!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Frameldingslink er slået fra!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Tilmeldingsindstillingerne er blevet opdateret."
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Login Info"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "For at starte med at bruge MailChimp-plugin'et, skal vi først logge ind og hente din API-nøgle. Skriv venligtst dit brugernavn og password herudner."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Har du ikke en MailChimp Konto ? Få een helt gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Brugernavn"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Password"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Gem og kontrollér"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Noter"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Hvis du ændrer dine instillinger på Mailchimp.com, kan du risikere at dette ikke virker længere."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Hvis du ændrer dit login til en anden konto, vil dit setup herunder blive slettet."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Hvis noget af det sker er det ikke noget problem. Du skal bare rekonfigurere dit login og indstillingerne herunder."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Logget ind som"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Log ud"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Dine Lister"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Vælg venligst den liste du vil lave en tilmeldingsform for."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Ups! Du har ikke defineret nogen lister. Besøg venlgst %s. login og lav en liste før du bruger dette værktø!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Vælg en liste"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Opdatér en liste"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Note:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Hvis du opdaterer din liste vil dine indstillinger ikke blive tabt. Hvis du skifter liste vil de blive tabt."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Nulstil listevalg og vælg igen."
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Denne listes indstillinger for tilmeldingsform-widget"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Valgt MailChimp Liste"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Opdatér indstillinger for tilmeldingsformen"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Hvis denne er slået til bliver der andbragt et \"powered by MailChimp\" -link på din form, så du kan tjene credits. Det er valgfrit, og kan slås til og fra til enhver tid."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Vil du bruge Javascript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Hvis denne er slået til bliver der brugt Fancy Javascript tilmeldiing, og burde aftage pænt for brugere der ikke bruger Javascript. Det er valgfrit, og kan slås til og fra til enhver tid."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Inkludér frameldingslink ?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "Hvis denne er slået til, vil der blive tilføjet et link til din frameldingsform"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Header indhold"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Du kan udfylde denne med din egen tekst, HTML markup (inkl. links til billeder), eller ingenting!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Tilmeldingsknaptekst"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Custom Styling"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Slået til?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Headerinstillinger (bruges kun hvis der ikke er HTML tags i Header Indhold herover)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Kantbredde"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Sættes til 0 hvis kant ikke ønskes. Skriv ikke px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Kantfarve"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "Indtast ikke det første # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Form instillinger"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Flettevariable inkulderede"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Ingen flettevariable fundet."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Navn"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obligatorisk?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Inkludér?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interessegrupper"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Der er ingen interessegrupper til denne liste"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Vis?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Input Type"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Valgmuligheder"
-
diff --git a/po/mailchimp_i18n-de_DE.mo b/po/mailchimp_i18n-de_DE.mo
deleted file mode 100644
index 8ea5966..0000000
Binary files a/po/mailchimp_i18n-de_DE.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-de_DE.po b/po/mailchimp_i18n-de_DE.po
deleted file mode 100644
index ba10d57..0000000
--- a/po/mailchimp_i18n-de_DE.po
+++ /dev/null
@@ -1,362 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:34-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Michael \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: German\n"
-"X-Poedit-Country: GERMANY\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Bitte unbedingt angeben %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Diese E-Mail Adresse ist bereits registriert"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s ist ungültig"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Sie haben eine ungültige Gruppe ausgewählt"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Diese E-Mail Adresse ist ungültig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Sie sind angemeldet! Bitte schauen Sie in Ihrem Postfach nach unserer Bestätigungs-Email "
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "Benötigte Eingabe"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Von der Liste abmelden"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Setup"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Der Setup-Vorgang konnte Sie nicht in Ihrem Account anmelden. Bitte melden Sie sich erneut an, um Ihre Liste einzurichten"
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp List Setup"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Ihr Username und Ihr Passwort wurden erfolgreich überprüft! Wollen wir weiter machen?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Uh-oh, bei der Überprüfung Ihres Usernamens und des Passwortes ist ein Fehler aufgetreten! Bitte überprüfen Sie Ihre Angaben und versuchen es erneut!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Rückmeldung vom Server:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Anmelden zu"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Anmelden"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Die Informationen über %d Merge Variablen und %d Interessen-Gruppen wurden erfolgreich von Ihrer Liste übertragen!"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Sie sollten jetzt das MailChimp Widget aktiveren oder die Optionen anpassen"
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Die Listenauswahl wurde erfolgreich zurückgesetzt... Sie können wieder von vorne starten!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards sind abgeschaltet!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards sind angeschaltet"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Versenden über Javascript ist eingeschaltet"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Versenden über Javascript ist ausgeschaltet"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Der Link zum Abmelden ist angeschaltet"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Der Link zum Abmelden ist abgeschaltet"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Die Einstellungen für das Anmeldeformular wurden erfolgreich gespeichert"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Anmeldeinformationen"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Um Das MailChimp Plugin benutzen zu können, müssen Sie sich zunächst anmelden um Ihren API-Schlüssel zu erhalten. Bitte geben Sie Ihren MailChimp Usernamen und Ihr Passwort ein."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Sie haben noch keinen MailChimp-Account? Hier können Sie sich kostenlos zu einem Account anmelden !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Anwendername"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Passwort"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Speichern und überprüfen"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Hinweise"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Wenn Sie Ihre Einstellungen bei MailChimp.com ändern, kann es zu Störungen kommen."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Falls Sie sich an einem anderen Account anmelden werden alle Informationen unten gelöscht"
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Falls irgendetwas hiervon passiert - kein Problem! Richten Sie ihr Login und die Anaben unten erneut ein..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Angemeldet als"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Abmelden"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Ihre Listen"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Bitte wählen Sie die Liste aus, für die Sie ein Anmeldeformular erstellen möchten."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Uh-oh, Sie haben noch keine Listen definiert! Bitte besuchen Sie %s, melden Sie sich an und richten Sie eine Liste ein um dieses Tool zu benutzen!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Wählen Sie eine Liste aus"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Aktualisieren Sie eine Liste"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Hinweis:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Falls Sie Ihre Listeneinstellung ändern, gehen Ihre Eingaben nicht verloren. Falls Sie eine andere Liste auswählen, gehen Ihre Eingaben verloren."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Setzen Sie Ihre Listen-Einstellungen zurück und wählen Sie erneut"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Einstellung für das Anmelde-Widget für diese Liste"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Ausgewählte MailChimp Liste"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Die Einstellungen für das Anmeldeformular aktualisieren"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Wenn Sie diese Option aktivieren, wird ein \"powered by MailChimp\" Link in Ihrem Formular angezeigt. Mit diesem Link können Sie Credits mit uns verdienen. Die Option kann jederzeit wieder abgeschaltet werden."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Javascript-Unterstützung anwenden?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Mit dieser Option aktivieren Sie das Versenden über Javascript. Besucher, die kein Javascript verwenden, können diese Änderungen nicht erleben. Die Option kann jederzeit ein- oder ausgeschaltet werden."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Einen Link zum Abmelden einfügen?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "Falls Sie diese Option aktivieren, wir ein Link zum Abmelden angezeigt."
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Header Inhalt"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Hier können Sie eigenen Text, HTML (einschliesslich Links zu Bildern) oder auch gar nichts eintragen!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Text für den Schalter \"Versenden\""
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Eigenes Styling"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Aktivieren?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Einstellungen für den Header (nur gültig, wenn Sie keine HTML-Tags in den Headerbereich oben eingetragen haben)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Randbreite"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Geben Sie 0 für keinen Rand ein, verzichten Sie auf die Angabe von strong>px"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Randfarbe"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "Bitte kein # an erster Position eingeben"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Formular einrichten"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Mrge Variablen eingebunden"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Keine Merge Variablen gefunden"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Name"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Notwendig?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Einfügen?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interessen-Gruppen"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Für diese Liste keine Interessengruppen anzeigen"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Anzeigen?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Input Type"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Optionen"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:140
-msgid "Preferred Format"
-msgstr "Bevorzugtes Format"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:143
-msgid "HTML"
-msgstr "HTML"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:144
-msgid "Text"
-msgstr "Text"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:145
-msgid "Mobile"
-msgstr "Mobil"
-
diff --git a/po/mailchimp_i18n-el_GR.mo b/po/mailchimp_i18n-el_GR.mo
deleted file mode 100644
index 1e1fd56..0000000
Binary files a/po/mailchimp_i18n-el_GR.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-el_GR.po b/po/mailchimp_i18n-el_GR.po
deleted file mode 100644
index 2eb04a2..0000000
--- a/po/mailchimp_i18n-el_GR.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-05-03 14:20-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Πρέπει να συμπληρώσετε το %s"
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Αυτή η ηλεκτρονική διεύθυνση αλληλογραφίας είναι ήδη συνδρομητής στη λίστα"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s έχει λανθασμένο περιεχόμενο"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Έχει επιλεγεί λανθασμένη ομάδα ενδιαφέροντος"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Αυτή η διεύθυνση ηλεκτρονικής αλληλογραφίας είναι λανθασμένη"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Η συνδρομή πραγματοποιήθηκε με επιτυχία! Παρακαλούμε ελέγξτε για το ηλεκτρονικό μήνυμα επιβεβαίωσης"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "απαραίτητο πεδίο"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "κατάργηση συνδρομής από τη λίστα"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Εγκατάσταση MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Κατα τη διάρκεια της ενημέρωσης της εγκατάστασης του πρόσθετου, δεν μπορέσαμε να εισέλθουμε στον λογαριασμό σας. Θα χρειαστεί να κάνετε είσοδο στον λογαριασμό σας εκ νέου και να εγκαταστήσετε τη λίστα σας."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Εγκατάσταση λίστας MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Επιτυχία! Έχουμε πιστοποιήσει τον χρήστη και κωδικό πρόσβασης σας! Θέλετε να συνεχίσουμε;"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Ωχ, δεν μπορέσαμε να εισέλθουμε και να πιστοποιήσουμε το χρήστη και κωδικό πρόσβασης. Παρακαλούμε ελέγξτε τα στοιχεία και δοκιμάστε ξανά!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Ο διακομιστής επέστρεψε:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Εγγραφή για"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Συνδρομή"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Επιτυχία! Έγινε φόρτωση και αποθήκευση των πληροφοριών για %d Μεταβλητές Συγχώνευσης και %d Ομάδες Ενδιαφέροντος από την λίστα σας."
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Τώρα θα πρέπει να κάνετε Ενεργοποίηση της Μονάδας του MailChimp ή να αλλάξετε τις επιλογές παρακάτω και μετά να την ενεργοποιήσετε."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Η Επαναφορά της επιλογής Λίστας ολοκληρώθηκε με επιτυχία... Τώρα μπορείτε να επιλέξετε ξανά!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Ενεργοποίηση Monkey Rewards!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Απενεργοποίηση Monkey Rewards!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Ενεργοποίηση υποβολής με φανταχτερό Javascript!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Απενεργοποίηση υποβολής με φανταχτερό Javascript!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Ο σύνδεσμος Κατάργησης Συνδρομής έχει ενεργοποιηθεί!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Ο σύνδεσμος Κατάργησης Συνδρομής έχει απενεργοποιηθεί!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Η Ενημέρωση των Ρυθμίσεων της Φόρμας Συνδρομής σε Λίστα Ολοκληρώθηκε με Επιτυχία!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Πληροφορίες εισόδου"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Για να ξεκινήσετε να χρησιμοποιείτε το πρόσθετο του MailChimp, θα πρέπει να κάνετε είσοδο και να πάρετε το κλειδί API σας. Παρακαλούμε εισάγετε τον χρήστη και τον κωδικό πρόσβασης του λογαριασμού σας στο MailChimp παρακάτω."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Δεν έχετε λογαριασμό MailChimp; Δοκιμάστε έναν Δωρεάν ! "
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Χρήστης"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Κωδικός πρόσβασης"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Αποθήκευση και επαλήθευση"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Σημειώσεις"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Αυτό ενδέχεται να πάψει να λειτουργεί αν αλλάξετε τις ρυθμίσεις σας στο MailChimp.com"
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Εάν αλλάξετε τα στοιχεία εισόδου σε διαφορετικό λογαριασμό, οι πληροφορίες που έχετε καταχωρήσει θα διαγραφούν."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Εάν ένα από αυτά συμβεί, δεν υπάρχει πρόβλημα - απλώς επαναρυθμίσετε τα στοιχεία εισόδου και τα παρακάτω στοιχεία..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Συνδεθήκατε ώς"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Αποσύνδεση"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Οι λίστες σας"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Παρακαλούμε επιλέξτε τη Λίστα για την οποία θέλετε να δημιουργήσετε μία Φόρμα Εγγραφής."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Ωχ, δεν έχετε ορίσει κάποια λίστα! Παρακαλούμε επισκεφτείτε την διεύθυνση %s, κάνετε είσοδο, και κάνετε εγκατάσταση μίας λίστας πριν χρησιμοποιήσετε αυτό το εργαλείο!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Επιλογή μίας λίστας"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Ενημέρωση λίστας"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Σημείωση"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Οι ρυθμίσεις παρακάτω δεν θα χαθούν αν ενημερώσετε τη λίστα σας. Θα χαθούν μόνο αν μεταβείτε σε νέα λίστα."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Επαναφορά Επιλογών Λίστας και Επιλογή ξανά"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Ρυθμίσεις Μονάδας Φόρμας Συνδρομής για αυτή τη Λίστα"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Επιλεγμένη λίστα MailChimp"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Ενημέρωση Ρυθμίσεων Φόρμας Συνδρομής"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "ενεργοποιώντας αυτό θα προσθέσει ένα σύνδεσμο \"powered by MailChimp\" στην φόρμα με τον οποίο θα κερδίζετε πιστώσεις μαζί μας. Είναι προαιρετικό και μπορεί να ενεργοποιηθεί και να απενεργοποιηθεί οποιαδήποτε στιγμή."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Χρήση υποστήριξης Javascript;"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "ενεργοποιώντας αυτό θα χρησιιμοποιήσει την υποβολή με φανταχτερό javascript και δεν θα δημιουργήσει πρόβλημα για τους χρήστες που δεν χρησιμοποιούν javascript. Είναι προαιρετικό και μπορεί να ενεργοποιηθεί και να απενεργοποιηθεί οποιαδήποτε στιγμή."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Συμπερίληψη συνδέσμου Κατάργησης Συνδρομής;"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "ενεργοποιώντας αυτό θα προσθέσει ένα σύνδεσμο στη φόρμα κατάργησης συνδρομής"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Περιεχόμενο κεφαλίδας"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Μπορείτε να εισάγετε σε αυτό το δικό σας Κείμενο, εντολές HTML (συμπεριλαμβανομένου και συνδέσμων εικόνων), ή Τίποτα!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Κείμενο κουμπιού αποστολής"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Παραμετροποιήσιμο στυλ"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Ενεργοποιημένο;"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Ρυθμίσεις Κεφαλίδας (εφαρμόζεται μόνο εφόσον δεν υπάρχουν HTML εντολές στην περιοχή Περιεχόμενο Κεφαλίδας παραπάνω)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Πλάτος περιγράμματος"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Εισάγετε 0 για να μην υπάρχει περίγραμμα, μην εισάγετε px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Χρώμα περιγράμματος"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "μην εισάγετε αρχικό # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Ρυθμίσεις φόρμας"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Συμπεριλήφθηκαν οι Μεταβλητές Συγχώνευσης"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Δεν βρέθηκαν Μεταβλητές Συγχώνευσης."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Όνομα"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Ετικέτα"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Απαιτούμενη;"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Συμπερίληψη;"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Ομάδες Ενδιαφέροντος"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Δεν έχει γίνει Εγκατάσταση Ομάδων Ενδοαφέροντος για αυτή τη Λίστα"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Εμφάνιση;"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Τύπος εισαγωγής"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Επιλογές"
-
diff --git a/po/mailchimp_i18n-en_US.mo b/po/mailchimp_i18n-en_US.mo
deleted file mode 100644
index 9a71bf7..0000000
Binary files a/po/mailchimp_i18n-en_US.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-en_US.po b/po/mailchimp_i18n-en_US.po
deleted file mode 100644
index 5f237cb..0000000
--- a/po/mailchimp_i18n-en_US.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:35-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr ""
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr ""
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr ""
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr ""
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr ""
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr ""
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr ""
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr ""
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr ""
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr ""
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr ""
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr ""
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr ""
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr ""
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr ""
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr ""
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr ""
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr ""
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr ""
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr ""
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr ""
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr ""
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr ""
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr ""
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr ""
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr ""
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr ""
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr ""
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr ""
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr ""
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr ""
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr ""
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr ""
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr ""
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr ""
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr ""
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr ""
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr ""
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr ""
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr ""
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr ""
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr ""
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr ""
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr ""
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr ""
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr ""
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr ""
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr ""
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr ""
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr ""
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr ""
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr ""
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr ""
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr ""
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr ""
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr ""
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr ""
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr ""
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr ""
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr ""
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr ""
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr ""
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr ""
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr ""
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr ""
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr ""
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr ""
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr ""
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr ""
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr ""
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr ""
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr ""
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr ""
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr ""
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr ""
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr ""
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr ""
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr ""
-
diff --git a/po/mailchimp_i18n-es_CL.mo b/po/mailchimp_i18n-es_CL.mo
deleted file mode 100644
index dd82962..0000000
Binary files a/po/mailchimp_i18n-es_CL.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-es_CL.po b/po/mailchimp_i18n-es_CL.po
deleted file mode 100644
index bf4887d..0000000
--- a/po/mailchimp_i18n-es_CL.po
+++ /dev/null
@@ -1,345 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-09-12 17:51-0300\n"
-"Last-Translator: Tomas Genotipo \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Debes llenar %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Esta casilla de correo ya está suscrita a la lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s posee contenido no válido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Se ha seleccionado un Grupo de Interés no válido"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Esta dirección de correo no es válida"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Exito, te has suscrito! Te hemos enviado un correo de confirmación!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "Campo obligatorio"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Darse de baja de la lista"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "Potenciado por"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Mailchimp - Configuración"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Mientras se actualiza la configuración del plugin, no hemos podido acceder a su cuenta. Usted tendrá que ingresar nuevamente y configurar su lista."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Mailchimp List - Configuración"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Exito! Hemos podido verificar su nombre de usuario y contraseña! Continuamos?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Oh-oh, no pudimos entrar al sistema y verificar su nombre de usuario y contraseña. Por favor reviselos y vuelva a intentarlo!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "El servidor ha dicho:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Regístrate para"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Suscribir"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Éxito! Cargada y guardada la información de las Variables Fusionadas de %d y los Grupos de Interés de %d, de su lista"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Ahora usted debe activar el MailChimp Widget, o cambiar sus opciones debajo y luego activarlo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Exitosamente reiniciada su selección en la lista... Ahora debe seleccionar nuevamente"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards activados!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards desactivados!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Solicitud de Fancy Javascript activada!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Solicitud de Fancy Javascript desactivada!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Link para darse de baja activado!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Link para darse de baja desactivado!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Configuración del formulario de la lista de suscripción actualizada exitosamente"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Información de inicio de sesión"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Para comenzar a usar el plugin MailChimp, primero necesitamos que inicie sesión y obtenga su API Key. Por favor ingrese abajo su nombre de usuario de MailChimp y contraseña debajo."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "No posees una cuenta en MailChimp? Consigue una gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Nombre de usuario"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Contraseña"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Guardar y Comprobar"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notas"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Cambiar su configuración en MailChimp.com puede hacer que esto deje de funcionar"
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Si cambia su acceso (login) a una cuenta diferente, la información que ha configurado será borrada."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Si algo de eso sucede, no hay problema - simplemente reconfigure su acceso (login) y los siguientes Ítems ..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Conectado como"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Salir"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Sus Listas"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Por favor, seleccione la lista que desea crear como Formulario de registro"
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oh-oh, no tiene ninguna lista definida! Por favor visite %s, ingrese, y configure una lista antes de usar esta herramienta!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Eliga una lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Actualizar lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Actualizar su lista no causará que la configuración abajo se pierda. Cambiar a una nueva lista si lo hará."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Reiniciar las Opciones de la Lista y Seleccionar nuevamente"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Configuraciones del Widget de Formulario de Suscripción para esta lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista MailChimp Seleccionada"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Actualizar la Configuración del Formulario"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Activar esto ubicará un link \"Implementado gracias a Mailchimp\" en su formulario, con lo que le otorgaremos créditos. Es opcional y puede ser desactivado en cualquier momento."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Usar Soporte Javascript"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Activar esto hará que se solicite al usuario aceptar el uso de código Javascript, y debería facilitarse para los no usuarios de Javascript. Es opcional y puede ser desactivado en cualquier momento."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Incluir enlace para Darse de Baja?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "Activar esto añadirá un enlace a su formulario para darse de baja"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Contenido de la Cabecera (Header)"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Puede completar esto con su propio Texto, Código HTML (Incluyendo en laces de imágenes), o Nada!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Texto del boton Enviar"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Estilo personalizado"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Activar?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Configuración del encabezado (Sólo se aplica si no existen etiquetas HTML en el Contenido del Encabezado arriba)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Ancho del Borde"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Dejar 0 para \"sin bordes\"- No escribir px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "COlor del Borde"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "No escribir inicial # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configuración del formulario"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Fusionar las Variables incluidas"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "No fusionar las variables encontradas"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nombre"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "EtiquetA"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obligatorio?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Incluir?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Grupos de Interés"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "No hay Configuración de Grupos de Interés para esta lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Mostrar?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipo de entrada"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opciones"
-
-
diff --git a/po/mailchimp_i18n-es_ES.mo b/po/mailchimp_i18n-es_ES.mo
deleted file mode 100644
index fd1c6b1..0000000
Binary files a/po/mailchimp_i18n-es_ES.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-es_ES.po b/po/mailchimp_i18n-es_ES.po
deleted file mode 100644
index 660c44d..0000000
--- a/po/mailchimp_i18n-es_ES.po
+++ /dev/null
@@ -1,413 +0,0 @@
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2012-10-23 10:55-0700\n"
-"Last-Translator: Will Castillo \n"
-"Language-Team: Spain Spanish \n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.4\n"
-
-#: mailchimp_includes.php:27 mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Debes rellenar el %s"
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Esa cuenta de correo ya está subscrita a la lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s tiene contenido inválido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Fue seleccionado un Grupo de Interés inválido"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Esa cuenta de correo no es válida"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr ""
-"Enhorabuena! Has sido registrado! Ahora verifica que te ha llegado el correo "
-"de confirmación!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "campo obligatorio"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Darse de baja de la lista"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Configuración Mailchimp"
-
-#: mailchimp.php:150
-msgid ""
-"While upgrading the plugin setup, we were unable to login to your account. "
-"You will need to login again and setup your list."
-msgstr ""
-"Mientras se actualizaba la configuración del plugin, no pudimos ingresar "
-"para verificar tu cuenta. Necesitas iniciar sesión nuevamente y configurar "
-"tu lista."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Configuración de Lista Mailchimp"
-
-#: mailchimp.php:166
-msgid ""
-"Success! We were able to verify your username & password! Let's continue, "
-"shall we?"
-msgstr ""
-"Enhorabuena! Pudimos verificar tu nombre de usuario y clave! Continuamos, "
-"vale?"
-
-#: mailchimp.php:178
-msgid ""
-"Uh-oh, we were unable to login and verify your username & password. Please "
-"check them and try again!"
-msgstr ""
-"Uy, no pudimos ingresar y verificar tu nombre de usuario y clave. Por favor "
-"revisa tus datos de acceso e inténtalo nuevamente!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "El servidor respondió:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Registrarse para"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Subscribirse"
-
-#: mailchimp.php:253
-#, php-format
-msgid ""
-"Success! Loaded and saved the info for %d Merge Variables and %d Interest "
-"Groups from your list"
-msgstr ""
-"Enhorabuena! Se ha cargado y guardado la información para %d Merge Tags y %d "
-"Grupos de Interés de tu lista"
-
-#: mailchimp.php:256
-msgid ""
-"Now you should either Turn On the MailChimp Widget or change your options "
-"below, then turn it on."
-msgstr ""
-"Ahora deberías o bien activar el Widget Mailchimp o bien cambiar tus "
-"opciones abajo y después activarlo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr ""
-"Inicializada exitosamente su selección de Lista... Ahora puedes elegir "
-"nuevamente!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards Activado!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards Desactivado!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Uso de Javascript en el formulario Activado"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Uso de Javascript en el formulario Desactivado"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Enlace de Darse de baja Activado!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Enlace de Darse de baja Desactivado!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr ""
-"Se ha actualizado correctamente la configuración del Formulario de "
-"Subscripción!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Información de Acceso"
-
-#: mailchimp.php:373
-msgid ""
-"To start using the MailChimp plugin, we first need to login and get your API "
-"Key. Please enter your MailChimp username and password below."
-msgstr ""
-"Para comenzar a usar el plugin de Mailchimp, primero necesitas iniciar "
-"sesión y obtener tu clave API. Por favor inserta tu nombre de usuario y "
-"clave."
-
-#: mailchimp.php:375
-msgid ""
-"Don't have a MailChimp account? Try one for Free !"
-msgstr ""
-"No tienes una cuenta en Mailchimp? Regístrate gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Nombre de Usuario"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Clave"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Guardar y Revisar"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notas"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr ""
-"Cambiar su configuración en Mailchimp.com puede provocar fallos de "
-"funcionamiento."
-
-#: mailchimp.php:396
-msgid ""
-"If you change your login to a different account, the info you have setup "
-"below will be erased."
-msgstr ""
-"Si cambias tus datos de inicio de sesión a otra cuenta diferente, la "
-"información que has configurado será eliminada"
-
-#: mailchimp.php:397
-msgid ""
-"If any of that happens, no biggie - just reconfigure your login and the "
-"items below..."
-msgstr ""
-"Si eso sucede, no te preocupes - simplemente reconfigura tu acceso y los "
-"puntos que se encuentran abajo..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Sesión iniciada como"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Cerrar Sesión"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Tus Listas"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr ""
-"Por favor selecciona la Lista para la que deseas crear un Formulario de "
-"Subscripción"
-
-#: mailchimp.php:432
-#, php-format
-msgid ""
-"Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a "
-"list before using this tool!"
-msgstr ""
-"Uy, no tienes listas definidas! Por favor visita %s, accede a su cuenta y "
-"configura una lista antes de utilizar esta herramienta!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Seleccionar Una Lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Actualizar Lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid ""
-"Updating your list will not cause settings below to be lost. Changing to a "
-"new list will."
-msgstr ""
-"Actualizar tu lista no causará que la configuración actual se pierda. "
-"Cambiar a una lista nueva sí lo hará."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Inicializar Opciones de Lista y Seleccionar nuevamente"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr ""
-"Configuración de Opciones de Widget de Formulario de Subscripción para esta "
-"Lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista Mailchimp Seleccionada"
-
-#: mailchimp.php:496 mailchimp.php:569 mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Actualizar Opciones de Formulario de Subscripción"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid ""
-"turning this on will place a \"powered by MailChimp\" link in your form that "
-"will earn you credits with us. It is optional and can be turned on or off at "
-"any time."
-msgstr ""
-"activar esta opción incluirá el enlace \"powered by MailChimp\" en tu "
-"formulario lo cual hará que gane créditos con nosotros. Es opcional y puede "
-"ser activado y desactivado en cualquier momento."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "¿Usar Soporte Javascript?"
-
-#: mailchimp.php:507
-msgid ""
-"turning this on will use fancy javascript submission and should degrade "
-"gracefully for users not using javascript. It is optional and can be turned "
-"on or off at any time."
-msgstr ""
-"activar esta opción evitará el uso de javascript en el formulario y debería "
-"degradarse adecuadamente para usuarios que no lo utilicen. Es opcional y "
-"puede ser activado y desactivado en cualquier momento."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Incluir enlace de Cancelar Suscripción"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr ""
-"activar esta opción agregará un enlace al formulario de Cancelación de "
-"suscripción"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Contenido de la Cabecera"
-
-#: mailchimp.php:520
-msgid ""
-"You can fill this with your own Text, HTML markup (including image links), "
-"or Nothing!"
-msgstr ""
-"Puedes completar esta área con su propio Texto, código HTML (incluyendo "
-"imágenes), o dejarlo en blanco! "
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Texto para botón de aceptar"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Estilo Personalizado"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "¿Activado?"
-
-#: mailchimp.php:537
-msgid ""
-"Header Settings (only applies if there are no HTML tags in the Header "
-"Content area above)"
-msgstr ""
-"Configuración de Cabecera (sólo se aplica si no hay etiquetas HMTL en el "
-"área de Cabecera)"
-
-#: mailchimp.php:538 mailchimp.php:552
-msgid "Border Width"
-msgstr "Ancho de Borde"
-
-#: mailchimp.php:539 mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Indique 0 para no utilizar un borde; no ingrese px !"
-
-#: mailchimp.php:541 mailchimp.php:555
-msgid "Border Color"
-msgstr "Color de Borde"
-
-#: mailchimp.php:542 mailchimp.php:545 mailchimp.php:548 mailchimp.php:556
-#: mailchimp.php:559 mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "No ingreses # al principio"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configuración de Formulario"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Tags incluídas"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "No se encontraron Merge Tags"
-
-#: mailchimp.php:580 mailchimp.php:614
-msgid "Name"
-msgstr "Nombre"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Etiqueta"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "¿Obligatorio?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "¿Incluir?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Grupos de Interés"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "No hay Grupos de Interés creados para esta lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "¿Mostrar?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipo de entrada"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opciones"
diff --git a/po/mailchimp_i18n-es_MX.mo b/po/mailchimp_i18n-es_MX.mo
deleted file mode 100644
index 8a10acf..0000000
Binary files a/po/mailchimp_i18n-es_MX.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-es_MX.po b/po/mailchimp_i18n-es_MX.po
deleted file mode 100644
index 445e9cf..0000000
--- a/po/mailchimp_i18n-es_MX.po
+++ /dev/null
@@ -1,412 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2012-10-23 10:52-0700\n"
-"Last-Translator: Will Castillo \n"
-"Language-Team: LatAm Spanish \n"
-"Language: es_US\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.4\n"
-
-#: mailchimp_includes.php:27 mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Debe llenar el campo %s"
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Esa cuenta de correo ya está suscrita a la lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s tiene contenido inválido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Fue seleccionado un Grupo de Interés inválido"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Esa cuenta de correo es inválida"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr ""
-"Felicitaciones! Has sido registrado! Ahora verifica que te ha llegado el "
-"correo de confirmación!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "campo obligatorio"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Desubscribirse de la lista"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Configuración Mailchimp"
-
-#: mailchimp.php:150
-msgid ""
-"While upgrading the plugin setup, we were unable to login to your account. "
-"You will need to login again and setup your list."
-msgstr ""
-"Mientras se actualizaba la configuración del plugin, no pudimos ingresar y "
-"verificar tu cuenta. Necesitas ingresar nuevamente y configurar tu lista."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Configuración de Lista Mailchimp"
-
-#: mailchimp.php:166
-msgid ""
-"Success! We were able to verify your username & password! Let's continue, "
-"shall we?"
-msgstr ""
-"Felicitaciones! Pudimos verificar tu nombre de usuario y clave! Continuemos, "
-"si?"
-
-#: mailchimp.php:178
-msgid ""
-"Uh-oh, we were unable to login and verify your username & password. Please "
-"check them and try again!"
-msgstr ""
-"Uy, no pudimos ingresar y verificar tu nombre de usuario y clave. Por favor "
-"chequea la información de acceso e inténtalo nuevamente!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "El servidor respondió:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Registrarse para"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Subscribirse"
-
-#: mailchimp.php:253
-#, php-format
-msgid ""
-"Success! Loaded and saved the info for %d Merge Variables and %d Interest "
-"Groups from your list"
-msgstr ""
-"Felicitaiones! Se ha cargado y guardado la información para %d Merge tags y "
-"%d Grupos de Interés "
-
-#: mailchimp.php:256
-msgid ""
-"Now you should either Turn On the MailChimp Widget or change your options "
-"below, then turn it on."
-msgstr ""
-"Ahora debería o bien activar el Widget Mailchimp o bien cambiar sus opciones "
-"abajo y luego activarlo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr ""
-"Selección de Lista inicializada exitósamente... Ahora puedes elegir "
-"nuevamente!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards Activado!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards Desactivado!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Uso de Javascript en el formulario Activado"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Uso de Javascript en el formulario Desactivado"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Enlace de Desubscripción Activado!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Enlace de Desubscripción Desactivado!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr ""
-"Has actualizado la configuración del Formulario de Subscripción de manera "
-"exitosa!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Información de Ingreso"
-
-#: mailchimp.php:373
-msgid ""
-"To start using the MailChimp plugin, we first need to login and get your API "
-"Key. Please enter your MailChimp username and password below."
-msgstr ""
-"Para comenzar a usar el plugin de Mailchimp primero necesitas ingresar al "
-"sitio y obtener tu clave API. Por favor ingresa tu nombre de usuario y clave "
-"abajo."
-
-#: mailchimp.php:375
-msgid ""
-"Don't have a MailChimp account? Try one for Free !"
-msgstr ""
-"No tienes una cuenta en Mailchimp? Registra una gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Nombre de Usuario"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Clave"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Guardar y Revisar"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notas"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr ""
-"Cambiar tu configuración en Mailchimp.com provocará que esto deje de "
-"funcionar."
-
-#: mailchimp.php:396
-msgid ""
-"If you change your login to a different account, the info you have setup "
-"below will be erased."
-msgstr ""
-"Si cambias tu ingreso a otra cuenta diferente, la información que has "
-"configurado abajo será eliminada"
-
-#: mailchimp.php:397
-msgid ""
-"If any of that happens, no biggie - just reconfigure your login and the "
-"items below..."
-msgstr ""
-"Si eso sucede, no te preocupes - simplemente reconfigura tu ingreso y los "
-"items que se encuentran abajo..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Registrado como"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Cerrar Sesión"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Tus Listas"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr ""
-"Por favor seleccion la Lista para la que deseas crear un Formulario de "
-"Subscripción"
-
-#: mailchimp.php:432
-#, php-format
-msgid ""
-"Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a "
-"list before using this tool!"
-msgstr ""
-"Uy, no tienes listas definidas! Por favor visita %s, ingresa con su cuenta y "
-"configura una lista antes de utilizar esta herramienta!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Seleccionar Una Lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Actualizar Lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid ""
-"Updating your list will not cause settings below to be lost. Changing to a "
-"new list will."
-msgstr ""
-"Actualizar tu lista no causará que la configuración actual se pierda. "
-"Cambiar a una lista sí lo hará."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Inicializar Opciones de Lista y Seleccionar nuevamente"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr ""
-"Configuración de Opciones de Widget de Formulario de Subscripción para esta "
-"Lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista Mailchimp Seleccionada"
-
-#: mailchimp.php:496 mailchimp.php:569 mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Actualizar Opciones de Formulario de Subscripción"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid ""
-"turning this on will place a \"powered by MailChimp\" link in your form that "
-"will earn you credits with us. It is optional and can be turned on or off at "
-"any time."
-msgstr ""
-"activar esta opción incluirá el enlace \"powered by MailChimp\" en tu "
-"formulario lo cual hará que gane créditos con nosotros. Es opcional y puede "
-"ser activado y desactivado en cualquier momento."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Usar Soporte Javascript?"
-
-#: mailchimp.php:507
-msgid ""
-"turning this on will use fancy javascript submission and should degrade "
-"gracefully for users not using javascript. It is optional and can be turned "
-"on or off at any time."
-msgstr ""
-"activar esta opción evitará el uso de javascript en el formulario y debería "
-"degradarse adecuadamente para usuarios que no lo utilicen. Es opcional y "
-"puede ser activado y desactivado en cualquier momento."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Incluir enlace de Sesubscripción"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr ""
-"activar esta opción agregará un enlance al formulario de desubscripción"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Contenido de la Cabecera"
-
-#: mailchimp.php:520
-msgid ""
-"You can fill this with your own Text, HTML markup (including image links), "
-"or Nothing!"
-msgstr ""
-"Puedes llenar esta área con su propio Texto, código HTML (incluyendo "
-"imágenes), o dejarlo en blanco! "
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Texto para botón de aceptar"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Estilo Personalizado"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Activado?"
-
-#: mailchimp.php:537
-msgid ""
-"Header Settings (only applies if there are no HTML tags in the Header "
-"Content area above)"
-msgstr ""
-"Configuración de Cabecera (sólo aplica si no hay etiquetas de HMTL en el "
-"área \"Contenido de Cabecera\" de arriba)"
-
-#: mailchimp.php:538 mailchimp.php:552
-msgid "Border Width"
-msgstr "Ancho de Borde"
-
-#: mailchimp.php:539 mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Ingresa 0 para no usar un border; no ingreses px !"
-
-#: mailchimp.php:541 mailchimp.php:555
-msgid "Border Color"
-msgstr "Color de Borde"
-
-#: mailchimp.php:542 mailchimp.php:545 mailchimp.php:548 mailchimp.php:556
-#: mailchimp.php:559 mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "No ingreses # al principio"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configuración de Formulario"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Tags incluídas"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "No se encontraron Merge Tags"
-
-#: mailchimp.php:580 mailchimp.php:614
-msgid "Name"
-msgstr "Nombre"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Etiqueta"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obligatorio?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Incluir?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Grupos de Interés"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "No hay Grupos de Interés creados para esta lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Mostrar?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipo de entrada"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opciones"
diff --git a/po/mailchimp_i18n-et_ET.mo b/po/mailchimp_i18n-et_ET.mo
deleted file mode 100644
index 75d4bb8..0000000
Binary files a/po/mailchimp_i18n-et_ET.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-et_ET.po b/po/mailchimp_i18n-et_ET.po
deleted file mode 100644
index 421034f..0000000
--- a/po/mailchimp_i18n-et_ET.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:38-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Väli tuleb täita %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "See meiliaadress on juba listis"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s sisu on kehtetu"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Valiti kehtetu huvigrupp"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "See meiliaadress on kehtetu"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Meililistiga liitumine õnnestus! Kinnituse saatsime sulle meilboksi."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "nõutav väli"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "eemalda end meililistist"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "paneb tööle"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimpi seaded"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Plugina settingute uuendamisel ei õnnestunud meil Sinu kontole siseneda. Pead uuesti sisse logima ja oma listi tööle seadma."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimpi meililisti seaded"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Õnnitleme! Sinu kasutajanimi ja salasõna on kontrollitud! Jätkame tegutsemist, eks?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Oh häda, meil ei õnnestunud sinu kontole logida ja kasutajanime ega salasõna kontrollida. Vaata need üle ja proovi uuesti!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Server ütles:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Liitu listiga"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Eemalda listist"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Õnnitleme! Laadisime ja salvestasime %d Merge Variables ja %d Huvigrupid sinu listist"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Nüüd peaksid kas MailChimpi mooduli sisse lülitama või muutma allolevaid settinguid ja siis selle sisse lülitama."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Õnnestus muuta Sinu listi valikut... Nüüd võid uuesti valida!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards sisse lülitatud!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards välja lülitatud!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Udupeen Javascript sisse lülitatud!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Udupeen Javascript välja lülitatud!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Listist eemaldamise link sisse lülitatud!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Listist eemaldamise link välja lülitatud!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Listiga liitumise vormi settingute uuendamine õnnestus!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Sisselogimise info"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "MailChimp plugina kasutama hakkamiseks tuleb kõigepealt MailChimpi sisse logida ja hankida API Key. Palun sisesta all oma MailChimpi kasutaja ja salasõna."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "MailChimpi konto puudub? Proovi seda tasuta !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Kasutajanimi"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Salasõna"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Salvesta & Kontrolli"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Märkused"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Kui muudad oma settinguid MailChimp.com lehel, võib see töötamast lakata."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Kui muudad ligipääsu mõnele teisele kontole, kustutatakse allpool seadistatud info."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Kui midagi sellist juhtub, pole hullu - konfigureeri ligipääs ja allolev info uuesti..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Sisse logitud kasutajana"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Logi välja"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Sinu meililistid"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Palun vali list, millele Sa soovid luua tellimisvormi."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oh häda, Sa pole seadistanud ühtegi meililisti! Mine lehele %s, logi sisse ja seadista enne selle plugina kasutamist list!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Vali list"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Uuenda listi"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Märkus:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Allolevad settingud ei kustu, kui sa listi uuendad. Uue listi valimine kustutab need."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Määra listi valikud uuesti ja vali list uuesti"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Selle listi tellimisvormi mooduli settingud"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Valitud MailChimpi list"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Uuenda tellimisvormi settinguid"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "selle sisselülitamine sisestab Sinu vormile lingi \"powered by MailChimp\", mis aitab Sul meie juures boonust koguda. See on valikuline ja seda saab alati välja lülitada."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Kasutan Javascripti tuge?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "selle sisselülitamine paneb tööle udupeene javascripti, mis ei tohiks javascripti mittekasutajatele probleeme mitte valmistada. On valikuline ja saab alati välja lülitada."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Lisada meililistist eemaldamise link?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "selle sisselülitamine lisab lingi sinu meililistist eemaldamise vormile"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Päise sisu"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Siia võid sisestada oma teksti, HTML sisu (koos pildilinkidega) või mitte midagi!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Saada nupu tekst"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Välimuse muutmine"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Sisse lülitatud?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Päise settingud (ainult juhul, kui ülalpool pole Päisesse sisestatud HTML koodi)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Raami laius"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Kui raami ei soovi, sisesta 0, ära lisa px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Raami värv"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "ära lisa algusesse # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Vormi settingud"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variables lisatud"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Ei leitud Merge Variables."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nimi"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Nõutav?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Lisada?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Huvirühmad"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Sellele listile pole määratud huvirühmi"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Näita?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Sisendi liik"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Valikud"
-
diff --git a/po/mailchimp_i18n-fr_FR.mo b/po/mailchimp_i18n-fr_FR.mo
deleted file mode 100644
index cffad73..0000000
Binary files a/po/mailchimp_i18n-fr_FR.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-fr_FR.po b/po/mailchimp_i18n-fr_FR.po
deleted file mode 100644
index 5dab4f1..0000000
--- a/po/mailchimp_i18n-fr_FR.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:37-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Contributed \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Vous devez remplir %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Cette adresse email est déjà inscrite à la liste"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s : Le contenu est invalide"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Un Groupe d'intérêt invalide a été selectionné"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Cette adresse email est invalide"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Félicitations, vous vous êtes abonné ! Veuillez regarder le mail de confirmation qui vous a été envoyé !"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "Champ requis"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Se désabonner de la liste"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "Propulsé par"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Installation de MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Alors que nous procédions à une mise à jour de l'installation du plugin, il nous a été impossible de se connecter à votre compte. Vous devrez vous reconnecter et organiser vos listes."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Organisations des listes MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Félicitations ! Nous avons réussi à vérifier votre nom d'utilisateur et votre mot de passe ! On continue ?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Arf, il ne nous a pas été possible de se connecter et de vérifier votre nom d'utilisateur et mot de passe. Vérifiez les et retentez votre chance !"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Le serveur a répondu :"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "S'inscrire à"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "S'abonner"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Félicitations ! %d Variables et %d Groupes d'Intérêts ont bien été chargés depuis votre liste et sauvegardés"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Maintenat vous devriez soit activer le Widget MailChimp ou changer vos options ci-dessous, et ensuite l'activer."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Votre sélection de liste a bien été réinitiallisée... Maintenant choisissez à nouveau !"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Récompenses Mailchimp activées !"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Récompenses MailChimp désactivées !"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Inscription fantaisiste ( En Javascript ) activée !"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Inscription fantaisiste ( En Javascript ) désactivée !"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Lien de désabonnement activé !"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Lien de désabonnement désactivé !"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Les Options de votre Formulaire d'inscription ont bien été mises à jour !"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Informations de connexion"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Afin que vous puissiez utiliser le plugin MailChimp, vous devez tout d'abord vous connecter et recevoir votre clé API. Veuillez entrer votre nom d'utilisateur et mot de passe MailChimp ci dessous."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Vous n'avez pas encore de compte MailChimp ? Essayez gratuitement !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Nom d'utilisateur"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Mot de passe"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Sauvegarder et Vérifier"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notes"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Le changement de votre paramètres sur MailChimp.com peut empecher cela de fonctionner."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Si vous changez votre comptre actuel pour un autre compte, les informations que vous avez entré ci dessous seront effacées."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Si quelque chose du genre se produit, pas de panique - il vous suffit de reconfigurer votre compte et les informations ci dessous."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Connecté en tant que"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Déconnexion"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Vos listes"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Veuillez sélectionner la liste pour laquelle vous souhaitez créer un Formulaire d'Inscription."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oups, vous n'avez défini aucune liste ! Veuillez vous connecter à votre comptre %s et créer/organiser une liste avant d'utiliser cet outil !"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Sélectionnez Une Liste"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Mettre à jour la liste"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Note :"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "La mise à jour de votre liste ne causera pas la perte des données ci dessous. Cependant, changer pour une nouvelle liste en causera la perte."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Réinitialisez les réglages de vos listes et resélectionnez"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Options du Widget du Formulaire d'inscription pour cette liste"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Liste MailChimp selectionnée"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Mettre à jour les options de ce Formulaire d'inscription"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Récompenses MailChimp"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Activer cette option placera un lien \"Propulsé par MailChimp\" dans votre formulaire qui vous fera gagner des crédits MailChimp. C'est optionnel et peut être activé ou désactivé à tout moment."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Utiliser le Support Javascript ?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Si vous activez ceci vous utiliserait une soumission fantaisiste en javascript qui pourrait dégrader l'utilisateur des visiteur qui n'ont pas installé javascript. C'est optionnel et peut être activer ou désactiver à tout moment."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Inclure un lien de désabonnement ?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "Activer ceci ajouter un lien au formulaire de désabonnement de votre hote"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Contenu de l'entête"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Vous pouvez remplir ceci avec votre propre Texte, Contenu HTML ( Contenant des liens vers des images ), ou Rien du tout !"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Text du bouton de soumition"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Mise en forme customisée"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Activer ?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Options de l'Entête ( S'applique seulement s'il n'y a pas de code HTML dans le contenu de l'Entête )"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Largeur du bord"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Indiquez 0 pour qu'il n'y ait pas de bordure, indiquer px est inutile !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Couleur du bord"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "Ne tappez pas # au début"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Réglages du formulaire"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Variables inclues"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Aucune variable n'a été trouvé"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nom"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Requis ?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Inclure ?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Groupes d'intérêts"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Aucun Groupe d'intérêt n'a configuré pour cette liste"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Voir ?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Type d'entrée"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Options"
-
diff --git a/po/mailchimp_i18n-he_IL.mo b/po/mailchimp_i18n-he_IL.mo
deleted file mode 100644
index 4632ed2..0000000
Binary files a/po/mailchimp_i18n-he_IL.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-he_IL.po b/po/mailchimp_i18n-he_IL.po
deleted file mode 100644
index 92a365f..0000000
--- a/po/mailchimp_i18n-he_IL.po
+++ /dev/null
@@ -1,343 +0,0 @@
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2012-02-07 09:05-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "אנא מלא את %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "כתובת אימייל זאת כבר מנויה לרשימה"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s יש תוכן לא תקין"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "נבחרה קבוצת עניין אשר אינה זמינה"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "כתובת האימייל הזאת איננה תקינה"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "נרשמתם בהצלחה! אנא חפשו את אימייל האישור להשלמת ההרשמה!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "שדה נדרש"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "הסר רישום מהרשימה"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "מונע על ידי"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "התקנת MailChimp "
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "בזמן עדכון התוסף לא הצלחנו להתחבר לחשבון שלך. אנא התחבר מחדש כדי להגדיר את הרשימה שלך"
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "התקנת רשימת MailChimp "
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "הצלחנו לאמת את שם המשתמש והסיסמה שלך בהצלחה, בוא נתקדם טוב?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr ""
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "השרת אמר:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "הרשמו ל:"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "הרשמו כמנויים"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr ""
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr ""
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr ""
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "הטבות Monkey פועלות!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "הטבות Monkey כבויות!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "הגשת ג'אווה סקריפט מעוצבת מופעלת!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "הגשת ג'אווה סקריפט מעוצבת כבויה!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "קישור ביטול הרשמה מופעל!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "קישור ביטול הרשמה כבוי!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "ההגדרות של הטופס רישום למנויים עודכנו בהצלחה!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "מידע התחברות"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr ""
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr ""
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "שם משתמש"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "סיסמה"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "שמור ובדוק"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "הערות"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "שינוי ההגדרות שלך באתר MailChimp.com עשוי לגרום לזה להפסיק לעבוד."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "אם תשנה את פרטי הכניסה של החשבון שלך המידע שהגדרת למטה ימחק."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "אם זה יקרה, לא נורא.. תוכל פשוט להגדיר את פרטי הכניסה שלך ואת ההגדרות למטה..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "מחובר כ:"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "להתנתק"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "הרשימות שלך"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "אנא בחר את הרשימה לה אתה רוצה ליצור טופס הרשמה"
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "או-לא! לא הגדרת אף רשימה! אנא בקר ב %s, התחבר והגדרת רשימה לפני שאתה משתמש בכלי זה."
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "בחר רשימה"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "עדכן רשימה"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "הערה:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "עדכון הרשימה שלך לא יגרום להגדרות למטה להמחק. שינוי לרשימה חדשה יגרום לכך."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "איפוס רשימת האפשרויות ובחירה מחדש"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "הגדרות טופס הרשמה כמנוי לרשימה זאת"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "בחר רשימת MailChimp "
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "עדכון טופס הרשמה כמנוי"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "הטבות Monkey "
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "הפעלה של זה ימקם קישור \"powered by MailChimp\" בטופס ויתן לך נקודות קרדיט אצלנו. זה אופציונלי וניתן לכבות את זה בכל זמן."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "לתמוך בג'אווה סקריפט?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "הפעלה של אפשרות זאת תגרום לשימוש בטופס מעוצב מבוסס ג'אווה סקריפט למעט עבור משתמשים שאין להם ג'אווה סקריפט. זה אופציונלי וניתן לכיבוי בכל עת."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "לכלול קישור לביטול הרשמה?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "הפעלה של זה תוסיף קישור לטופס ביטול הרשמה"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "תוכן ראש הדף"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "אתה יכול למלא את זה עם הטקסט שלך, תגיות HTML (כולל תמונות וקישורים) או עם כלום!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "טקסט כפתור הגשה"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "עיצוב מותאם אישית"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "מופעל?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "הגדרות ראש הדף (עובד רק אם אין שום תגיות HTML באיזור ראש המסמך)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "רוחב הגבול"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "קבע כ- 0 כדי שלא להציג גבול בכלל, אל תכניס px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "צבע הגבול"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "אל תכניס ערך התחלתי # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "הגדרות טופס"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "משתנים תואמים נכללו."
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "לא נמצאו משתנים תואמים."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "שם"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "тикет"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "נדרש?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "לכלול?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "קבוצות עניין"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "לא נבחר קבוצות לרשימה זאת"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "להציג?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "סוג שדה קלט"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "אפשרויות"
-
diff --git a/po/mailchimp_i18n-hu_HU.mo b/po/mailchimp_i18n-hu_HU.mo
deleted file mode 100644
index 0a5e30a..0000000
Binary files a/po/mailchimp_i18n-hu_HU.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-hu_HU.po b/po/mailchimp_i18n-hu_HU.po
deleted file mode 100644
index 4c58956..0000000
--- a/po/mailchimp_i18n-hu_HU.po
+++ /dev/null
@@ -1,349 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:37-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Fordítók \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Basepath: c:\\weblapjaim\\wordpress-egyéb\\plugins\\mailchimp\n"
-"X-Poedit-Language: Hungarian\n"
-"X-Poedit-Country: HUNGARY\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"Plural-Forms: k\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Töltse ki %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Ez az E-mil cím már a listán van"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s helytelen tartalom"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Érvénytelen Interest Group lett kiválasztva"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Érvénytelen E-mail cím"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Sikerült, Ön feliratkozott! Kérem keresse meg a visszaigazolást tartalmazó e-mailt!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "szükséges mező"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "listáról való leíratkozás"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "készítette:"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp beállítás"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "A kiegészítő beállításakor nem tudtunk belépni az Ön fiókjába. Önnek ismét be kell jelentkeznie és beállítania a listát."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp Lista beállítás"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Sikerült! Ellenőriztük a felhasználónevét és jelszavát! Folytathatjuk?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Jaj-jaj! Baj van! Nem tudtunk belépni a fiókjába a megadott felhasználónév-jelszó párossal.Ellenőrizze, azután próbálja meg újra!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "A szerver mondja:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Bejelentkezés"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Felíratkozás"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Sikerült! A %d Merge Variables és a %d Interest Groups betöltve és mentve a listájáról"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Most vagy bekapcsolja a MailChimp Widget-t vagy változtat a lenti opción azzal, hogy azt bekapcsolja."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Sikresen visszaállítottaa Lista választót... Most ismét neki állhat!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards bekapcsolva!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards kikacsolva!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript bekapcsolva!!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript kikapcsolva!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Leíratkozó link bekapcsolva!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Leíratkozó link kikapcsolva!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Sikeresen frissítette a lista felíratkozó beállításait!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Bejelentkező információ"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "A MailChimp plugin első használatakor be kell jelentkeznünk és megkapnunk az API key-t. Kérem adja meg a felhasználónevét és jelszavát."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Még nincs MailChimp fiókja? Próbálja ki ingyen !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Felhasználónév"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Jelszó"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Ment & Ellenőriz"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Megjegyzés"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "A beállítások megváltoztatása a MailChimp.com-on lehet, hogy leállítja a működést. "
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Ha a bejelentkezési fiókját módosítja, akkor az eltárolt beállítások törlődnek."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Ha bármi is történt, ami nem olyan fontos, csak állítsa be újra a bejelentkezését és a tételeket..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Belépve, mint"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Kijelentkezés"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Az Ön listája"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Válassza ki az a listát, amihez a Feljelentkezési lapot készíti."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Jaj-jaj, baj van! Még nem készített listát! Kérem látogassa me %s, lépjen be és állítsa be a a listáját ezzel az eszközzel!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Válasszon egy listát"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "A lista frissítése"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Megjegyzés: "
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Nem a listája firrítésekor keletkeztek a lenti beállítási gondok. Készítsen másikat."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Törölje a Lista opcióit és válasszon megint"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Feliratkozó lap widget beállításai ehhez a listához"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "A kiválaszott MailChimp Lista"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Felíratkozó lap beállítások frissítése"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "amikor bekapcsolja, elhelyezi a \"powered by MailChimp\" link-et a lapjára, amellyel pénzt is kereshet a segítségünkkel. Választható és bármikor ki-bekapcsolhatja."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Használ Javascript Support-ot?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "amikor bekapcsolja, használni fogja a Fancy Javascript-et és elegánsan gyengítheti azokat a felhasználókat, aki nem használnak javascriptet. Választható és bármikor ki-bekapcsolhatja."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Benne legyen a leíratkozás link?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "amikor bekapcsolja, kap egy linket a Leíratkozó laphoz"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Fejléc tartalma"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Kitöltheti a saját szövegével, HTML jelekkel (kép linkek is), de semmi egyéb!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "OK gomb felirata"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Stílus változtatása"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Bekapcsolja?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Fejlcé Beállítások (csak akkor jelenik meg, ha nincs HTML kód a Fejlcé tartalom-ban)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Keret szélesség"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Nincs keret, az 0, ne írjon semmit px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Keret szín"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "ne írjon kezdeti # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Lap beállítások"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variables benne van"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Nincs sehol a Merge Variables."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Név"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Nagyon kell?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Benne van?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interest Groups"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "A listában nincs Interest Groups beállítás"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Megjelenítés?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Bevitel típusa"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Lehetőségek"
-
diff --git a/po/mailchimp_i18n-it_IT.mo b/po/mailchimp_i18n-it_IT.mo
deleted file mode 100644
index 1a9fd8d..0000000
Binary files a/po/mailchimp_i18n-it_IT.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-it_IT.po b/po/mailchimp_i18n-it_IT.po
deleted file mode 100644
index 8effe99..0000000
--- a/po/mailchimp_i18n-it_IT.po
+++ /dev/null
@@ -1,360 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: MailChimp API \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "È necessario compilare %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Questa email è già iscitta alla lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s contenuto non valido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Un invalido Interest Group è stato selezionato"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Questa email non è valida"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr " Ok, sei stato/a registrato/a! Per favore controlla la nostra email di conferma!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "campo richiesto!"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "cancellati da questa lista"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Impostazioni MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Mentre aggiorniamo le impostazioni del plugin, siamo stati in grado di accedere al tuo account. Fai di nuovo il login e imposta la tua lista."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Impostazioni MailChimp List"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Successo! Siamo stati in grado di verificare il tuo nome utente e password! Continuiamo, va bene?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Uh-oh, siamo stati in grado di accedere e verificare il tuo nome utente e password. Si prega di verificare e riprovare!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Il server dice:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Iscriviti per:"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Subscribe"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Successo! Caricate e salvate le informazioni per le %d variabili e %d gruppi di interesse dalla lista"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Ora si deve attivare il Widget MailChimp o modificare le opzioni di seguito, quindi attivarlo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Opzioni resettate con successo...Ora scegli di nuovo!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards turned On!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards turned Off!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "L'iscrizione con Fancy Javascript attivata!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "L'iscrizione con Fancy Javascript disattivata!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Link di cancellazione attivato!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Link di cancellazione disattivato!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Le impostazioni della lista modulo di iscrizione sono state salvate!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Login Info"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Per iniziare ad usare il plugin MailChimp,devi fare il login ed inserire la tua API Key. Per favore inserisci username e password di Mailchimp."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Non hai un Account Mailchimp?Prova adesso gratis! "
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Username"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Password"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Salva"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Note"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Cambiando le impostazioni su MailChimp.com,potresti causare un'errore."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Se cambi le impostazioni di login per un account differente,le informazioni saranno cancellate."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Se succede qualcosa non disperartii...configura nuovamente il login e le impostazioni qui sotto..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Loggato come "
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Logout"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "La tua lista"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Per favore seleziona la lista da cui creare il modulo di iscrizione"
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Uh-oh,non hai una lista! Per favore visita %s,fai il login e imposta una lista prima di usare questo plugin!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Seleziona una lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Aggiorna lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Note:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "L'Aggiornamento della lista non causerà la perdita delle impostazioni. Il passaggio ad un nuovo elenco."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Resetta le opzioni"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Impostazioni del Subscribe Form Widget per la lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Seleziona la lista MailChimp"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Aggiorna le impostazioni del Subscribe Form"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Abilitando questo sarà sarà inserito un link \"powered by MailChimp\" nel proprio modulo che vi farà guadagnare crediti con noi. È opzionale e può essere attivata o disattivata in qualsiasi momento."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Usare il supporto Javascript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Abilitando questa si userà la presentazione fancy javascript che dovrebbe gravare agli utenti che non utilizzano javascript. È opzionale e può essere attivata o disattivata in qualsiasi momento."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Includere il link cancellazione?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "Abilitando quseta funzione sarà aggiunto un link per la cancellazione"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "contenuto testata"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr " È possibile riempire questo con il proprio testo, codice HTML (comprese le immagini link), o niente!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Submit Button text"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Styling"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Attivare?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr " Impostazion iHeader (si applica solo se non ci sono i tag HTML nel campo di intestazione dei contenuti,sopra)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Border Width"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Imposta su 0 per non inserire il bordo,non inserire px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Border Color"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "non inserire inziliali con # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Impostazioni form"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variables Included"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "No Merge Variables found."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nome"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obbligatorio?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Includere?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Gruppo interessi"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Nussun gruppo interessi su questa lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Visualizzare?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Input Type"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opzioni"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:140
-msgid "Preferred Format"
-msgstr "Formato preferito"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:143
-msgid "HTML"
-msgstr "HTML"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:144
-msgid "Text"
-msgstr "Testo"
-
-#: wp-content/plugins/mailchimp/mailchimp_widget.php:145
-msgid "Mobile"
-msgstr "Mobile"
-
diff --git a/po/mailchimp_i18n-ko_KR.mo b/po/mailchimp_i18n-ko_KR.mo
deleted file mode 100644
index cc45eaf..0000000
Binary files a/po/mailchimp_i18n-ko_KR.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-ko_KR.po b/po/mailchimp_i18n-ko_KR.po
deleted file mode 100644
index 5f69fe3..0000000
--- a/po/mailchimp_i18n-ko_KR.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:37-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "내용을 입력해 주세요 %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "이미 가입된 이메일 주소입니다"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s 의 값이 맞지 않습니다"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "정확하지 않은 그룹입니다"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "형식이 맞지 않는 이메일 주소입니다"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "성공했습니다. 확인 메일을 보내드렸습니다"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "필수 항목"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "가입 해지하기"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "도움 주신 곳"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "메일침프 설정"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "플러그인 설정을 업그레이드하려고 했지만 계정에 로그인할 수 없었습니다. 다시 로그인하고 리스트를 설정해야 합니다."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "메일침프 리스트 설정"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "성공했습니다. 사용자 이름과 암호를 확인하였습니다. 계속하십시오."
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "사용자 이름과 암호를 확인할 수 없었습니다. 다시 확인 후 시도해 주십시오."
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "서버 메시지: "
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "가입하기 "
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "가입하기"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "성공하였습니다. 리스트에서 %d 머지 변수와 %d Interest Group 정보를 불러와 저장하였습니다."
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "이제 바로 메일침프 위젯을 켜거나 아래 선택 사항을 변경한 다음 위젯을 켜면 됩니다"
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "성공적으로 리스트 선택을 리셋하였습니다. 다시 선택하면 됩니다."
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards 켜기!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards 끄기!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript 가입버튼 켜기!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript 가입버튼 끄기!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Unsubscribe 링크 켜기!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Unsubscribe 링크 끄기!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "List Subscribe Form Settings을 성공적으로 업데이트하였습니다!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "로그인 정보"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "메일침프 플러그인을 사용하려면, 먼저 로그인하여 API 키를 얻어와야 합니다. 메일침프 사용자 이름과 암호를 아래에 넣어 주세요."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "메일침프 계정이 없는 경우, 무료 계정 만들기 !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "사용자 이름"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "암호"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "저장 및 확인"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "참고"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "MailChimp.com 에서 설정을 변경하면 작동하지 않을 수 있습니다."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "다른 계정으로 로그인하면 아래 설정된 정보는 삭제됩니다."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "만약 그러한 일이 생긴다고 해도... 괜찮습니다. 다시 로그인 정보와 아래 항목들을 설정하면 됩니다."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "로그인 된 계정"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "로그아웃"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "리스트"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Signup Form을 만들려고 하는 리스트를 선택해 주십시오."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "정의된 리스트가 하나도 없습니다. %s 를 방문하고 로그인 한 다음 리스트를 생성해 주십시오."
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "리스트 선택"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "리스트 업데이트"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "참고"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "리스트를 업데이트 해도 아래 설정은 없어지지 않지만 새로운 리스트를 선택하면 지워집니다."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "리스트 선택 사항을 원래대로 되돌리고 다시 선택하기"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "선택된 리스트에 대한 가입 폼 위젯 설정"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "선택된 메일침프 리스트"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "가입 폼 설정 업데이트"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Reward"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "이것을 사용하는 것으로 설정하면 가입 폼에 \"powered by MailChimp\" 가 생성되고 이를 통해 크레딧을 얻을 수 있습니다. 선택 사항이며 언제나 끄고 켤 수 있습니다."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "자바스크립트 지원 사용?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "이것을 사용하는 것으로 설정하면 Fancy Javascript 가입버튼이 사용되며 자바스크립트를 사용하지 않는 사용자들에게는 원래의 것으로 나타납니다. 선택 사항이며 언제나 끄고 켤 수 있습니다."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "가입 헤지 링크 포함?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "이것을 사용하는 것으로 설정하면 가입 해지 폼으로 연결되는 링크가 추가됩니다"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "헤더 컨텐트"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "자신만의 글, HTML (이미지 링크 포함) 등을 넣거나 아무것도 넣지 않아도 됩니다"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "전송 버튼 문자"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "사용자 설정 스타일"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "사용합니까?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "헤더 설정 (헤더 컨텐트 부분에 HTML 태그가 없는 경우에만 적용됨)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "테두리 두깨"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "테두리를 없애려면 0을 입력 하십시오. px 는 입력하지 마십시오"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "테두리 색상"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "앞부분의 #는 입력하지 마십시오"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "폼 설정"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "머지 변수 포함"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "머지 변수가 없습니다"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "이름"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "태그"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "필수?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "포함?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interest Group들"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "이 리스트에는 Interest Group이 없습니다"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "보여주기?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "입력 종류"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "선택사항"
-
diff --git a/po/mailchimp_i18n-nb_NO.mo b/po/mailchimp_i18n-nb_NO.mo
deleted file mode 100644
index f61ccd0..0000000
Binary files a/po/mailchimp_i18n-nb_NO.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-nb_NO.po b/po/mailchimp_i18n-nb_NO.po
deleted file mode 100644
index a84e37d..0000000
--- a/po/mailchimp_i18n-nb_NO.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Alexander Roterud \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Norwegian Bokmal\n"
-"X-Poedit-Country: NORWAY\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Du må fylle inn %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "E-postadressen du anga abbonerer allerede til denne listen"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s har ugyldig innhold"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "En ugyldig interessegruppe har blitt valgt"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "E-postadressen er ugyldig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Gratulerer, du har blitt registrert. Husk å lese bekreftelsesmailen."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "obligatorisk felt"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "avslutt abbonement"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "med kraft fra"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Innstillinger"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Når innstillingene for pluginet oppgraderes, så kunne vi desverre ikke logge inn på din konto. Du må logge inn igjen og sette opp listen."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp Innstillinger"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Jippi! Vi verifiserte ditt brukernavn og passord!"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Oops, vi fikk desverre ikke verifisert brukernavn og passord. Sjekk for skrivefeil og prøv igjen!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Serveren sa:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Registrer deg"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Abbonér"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Suksess! Lastet inn og lagret informasjonen for %d E-postvariabler og %d Intressegrupper fra din liste"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Nå bør du sannsynligvis slå på MailChimp Widgeten eller endre dine instillinger under, også slå den på igjen."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Valgene med lister har blitt tilbakestilt... Nå kan du velge igjen!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards har blitt aktivert!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards har blitt deaktivert!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript-effekter har blitt aktivert!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript-effekter har blitt deaktivert!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Linken for å melde seg av abbonement er nå aktivert!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Linken for å melde seg av abbonement er nå deaktivert!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Dine innstillinger har blitt oppdatert!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Login-informasjon"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "For å bruke MailChimp-pluginet må vi først logge inn og hente din API-nøkkel. Vennligst angi brukernavn og passord nedenfor."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Har du ikke en MailChimp konto? Prøv helt gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Brukernavn"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Passord"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Lagre"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notater"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Om du endrer innstillingene dine på MaiChimp.com kan det hende pluginet slutter å fungere."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Om du endrer kontoen du bruker for å logge inn, vil informasjonen nedenfor bli slettet."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Om noe av det skjer, slapp helt av - rekonfiguer login og tingene under..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Innlogget som"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Logg ut"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Dine lister"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Vennligst velg listen du vil lage et abboneringsskjema for."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oops, du har ingen lister definert! Vennligst gå til %s - logg inn og sett opp en liste før du bruker dette verktøyet!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Velg en Liste"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Oppdater Liste"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Notis:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Oppdaterer du listen mister du ingen av innstillingene du har satt opp - men forandrer du den til en ny liste, gjør du det."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Tilbakestill Listeinnstillingene og Velg igjen"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Abboneringsskjemaets Widget-instillinger for denne listen"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Valgt MailChimp Liste"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Oppdater Innstillingene"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "ved å aktivere dette kommer en \"powered by MailChimp\"-link til å plasseres i skjemaet som gjør at du tjener poeng hos oss. Dette er valgfritt, og du kan slå av/på denne funksjonen når som helst."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Bruk støtte for Javascript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "ved å skru på dette kommer skjemaene til å postes med javascript, og degraderer fint for de som ikke har javascript aktivert. Dette er valgfritt og man kan skru funksjonen av/på når som helst."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Innkludere en link som melder abonnenter av?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "genom att aktivera detta kommer en länk att läggas till som leder till ditt avprenumereringsformulär"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Headerinnhold"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Her kan du fylle inn din egen tekst, HTML markup (f.eks. bildelinker), eller ingenting!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Submit-knapp tekst"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Tilpasset Stil"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Aktivert?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Header-instillinger (gjelder bare om det ikke er noen HTML-tags i Header Content feltet over)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Rammebredde"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Sett denne til 0 for å ikke bruke en ramme, ikke angi px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Rammefarge"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "ikke angi # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Skjemainnstillinger"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "E-postvariabler er inkuldert"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Ingen e-postvariabler funnet."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Navn"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obligatorisk?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Bruk?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Intressegrupper"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Ingen Intressegrupper finnes for denne listen"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Vis?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Input-type"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Innstillinger"
-
diff --git a/po/mailchimp_i18n-nl_BE.mo b/po/mailchimp_i18n-nl_BE.mo
deleted file mode 100644
index 051086f..0000000
Binary files a/po/mailchimp_i18n-nl_BE.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-nl_BE.po b/po/mailchimp_i18n-nl_BE.po
deleted file mode 100644
index db85510..0000000
--- a/po/mailchimp_i18n-nl_BE.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:37-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Filip Stas \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Dutch\n"
-"X-Poedit-Country: BELGIUM\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Verplicht in te vullen %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Dit email adres is reeds ingeschreven"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s bevat ongeldige inhoud"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "De gekozen Interesse Groep is niet geldig"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Dit email adres is ongeldig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Succes, je bent nu ingeschreven! Je zal een bevestigingsemail ontvangen."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "verplicht veld"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "uitschrijven"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "door"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Installatie"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Tijdens het bijwerken van de plugin zijn we er niet in geslaagd om je aan te melden. Je zal opnieuw moeten aanmelden en je lijst instellen."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Mailchimp Lijst Installatie"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Succes! We hebben je gebruikersnaam en wachtwoord kunnen verifieren! Laten we verder gaan."
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Uh-oh, we kunnen je niet aanmelden om je gebruikersnaam en wachtwoord te controleren. Gelieve deze te controleren en opnieuw te proberen!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "De server zegt:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Aanmelden voor"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Inschrijven"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Succes! De informatie voor de %d Merge Variabelen en %d Interesse Groepen voor je lijst is geladen en bewaart"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Je moet nu ofwel je MailChimp Widget activeren ofwel verander je de instellingen en schakel je het daarna in."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Je Lijst keuze is opnieuw ingesteld...Nu kan je weer opnieuw kiezen!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Beloningen ingeschakeld!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Belonignen uitgeschakeld!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript ingeschakeld!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript uitgeschakeld!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Link om uit te schrijven ingeschakeld!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Link om uit te schrijven uitgeschakeld!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "De instellingen voor je Lijst Inschrijf Formulier succesvol bijgewerkt!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Aanmeld informatie"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Alvorens te kunnen starten met het gebruik van de MailChimp plugin moeten we eerst aanmelden om zo je API sleutel te verkrijgen. Gelieve je MailChimp gebruikersnaam en wachtwoord in te vullen."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Nog geen MailChimp profiel? Probeer Gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Gebruikersnaam"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Bewaren & Controleren"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notities"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Wanneer je je instelling op MailChimp.com aanpast kan het zijn dat het niet meer werkt."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Wanneer je een ander profiel gebruikt dan zullen de huidge instellen verwijdert worden."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Als er iets van dat gebeurt, geen erg - gewoon opnieuw aanmelden and de gegevens hieronder..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Aangemeld als"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Afmelden"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Je Lijsten"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Gelieve een lijst te kiezen die je wil gebruiken."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Uh-oh, je hebt nog geen Lijsten! Gelieve %s te bezoeken en een Lijst aan te maken alvorens deze tool te gebruiken"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Kies een Lijst"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Lijst bijwerken"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Je Lijst bijwerken zal je instellingen niet doen verliezen. Een andere nieuwe Lijst kiezen wel."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Lijst instellingen opnieuw instellen "
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Inschrijvingsformulier Widget instellingen voor deze lijst"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Gekozen MailChimp Lijst"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Inschrijvingsformulier bijwerken"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Beloningen"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "door dit in te schakelen zal er \"door MailChimp\" verschijnen op je formulier en kan je credits verdienen. Dit is optioneel en kan ten alle tijden uitgeschakeld worden."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Javascript ondersteuning gebruiken?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "door dit in te schakelen maak je gebruik van fancy javascript verzending.Wanneer gebruikers geen javascripts gebruiken zal het toch nog werken. Dit is optioneel en kan ten alle tijden uitgeschakeld worden."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Uitschrijven link tonen?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "door dit in te schakelen zal er een link om uit te schrijven aan je formulier toegevoegd worden"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Hoofding inhoud"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Je kan dit bewerken met je eigen tekst, HTML opmaak (inclusief figuren) ofwel niets!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Verzenden knop tekst"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Aangepaste opmaak"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Ingeschakeld?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Hoofding instellingen (worden toegepast als er zich geen HTML tags in de hoofding bevinden)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Kantlijn breedte"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Kies 0 voor geen kantlijnen, px niet gebruiken!"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Kantlijn kleur"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "niet starten met # !"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Formulier instellingen"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variabelen toevoegen"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Geen Merge Variabelen gevonden."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Naam"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Vereist?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Toevoegen?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interesse Groepen"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Geen Interesse Groepen ingesteld voor deze Lijst"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Tonen?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Invoer type"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Instellingen"
-
diff --git a/po/mailchimp_i18n-nl_NL.mo b/po/mailchimp_i18n-nl_NL.mo
deleted file mode 100644
index e81b393..0000000
Binary files a/po/mailchimp_i18n-nl_NL.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-nl_NL.po b/po/mailchimp_i18n-nl_NL.po
deleted file mode 100644
index 7ac0e58..0000000
--- a/po/mailchimp_i18n-nl_NL.po
+++ /dev/null
@@ -1,326 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Verplicht in te vullen %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Dit e-mailadres is al ingeschreven"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s bevat ongeldige inhoud"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "De gekozen interessegroep is ongeldig"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Dit e-mailadres is ongeldig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Inschrijving succesvol ontvangen. Je krijgt een e-mail ter bevestiging."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "verplicht veld"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "uitschrijven"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "door"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp-installatie"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Tijdens het bijwerken van de plug-in zijn we er niet in geslaagd om je aan te melden. Je zult je opnieuw moeten aanmelden en je lijst moeten instellen."
-
-#: mailchimp.php:156
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Succes! We hebben je gebruikersnaam en wachtwoord kunnen verifiren! Verder gaan?"
-
-#: mailchimp.php:178
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "De server zegt:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Aanmelden voor"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Inschrijven"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Succes! De informatie voor de %d Merge Variabelen en %d Interessegroepen voor je lijst is geladen en bewaard"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Je moet nu ofwel je MailChimp Widget activeren ofwel hieronder de instellingen veranderen en daarna de widget inschakelen."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Je lijstkeuze is opnieuw ingesteld. Nu kun je weer opnieuw kiezen!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards ingeschakeld."
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards uitgeschakeld."
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript ingeschakeld."
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript uitgeschakeld."
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Link om uit te schrijven ingeschakeld."
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Link om uit te schrijven uitgeschakeld."
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "De instellingen voor je Lijst Inschrijf Formulier succesvol bijgewerkt."
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Aanmeldinformatie"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Voordat je de MailChimp plugin kunt gaan gebruiken, moeten we je eerst aanmelden om je API sleutel te verkrijgen. Vul a.u.b. je MailChimp gebruikersnaam en wachtwoord in."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Nog geen MailChimp-account? Probeer gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Gebruikersnaam"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Bewaren & controleren"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notities"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Wanneer je je instelling op MailChimp.com aanpast, kan het zijn dat het niet meer werkt."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Wanneer je een ander profiel gebruik, zullen de huidige instellen verwijderd worden."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Als er iets van dat gebeurt, geen probleem - gewoon je aanmeldgegevens en de gegevens hieronder opnieuw instellen"
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Aangemeld als"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Afmelden"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Je lijsten"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Kies een lijst die je wil gebruiken."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oeps, je hebt nog geen lijsten! Bezoek %s en maak een lijst aan, voordat je deze tool gebruikt"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Kies een lijst"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Lijst bijwerken"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Let op:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Bijwerken van je lijst zal je instellingen niet zoekmaken. Een andere nieuwe lijst kiezen wl."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Lijstinstellingen opnieuw instellen "
-
-#: mailchimp.php:474
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Gekozen MailChimp-lijst"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "door dit in te schakelen zal er \"door MailChimp\" verschijnen op je formulier. Hiermee verdien credits verdienen. Dit is optioneel en kan altijd uitgeschakeld worden."
-
-#: mailchimp.php:505
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "door dit in te schakelen maak je gebruik van fancy Javascript-verzending, maar voor gebruikers zonder Java werkt het ook. Dit is optioneel en kan altijd uitgeschakeld worden."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Link voor uitschrijven tonen?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "door dit in te schakelen zal er een link om uit te schrijven aan je formulier toegevoegd worden"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Inhoud van koptekst"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Je kan dit bewerken met je eigen tekst, HTML-opmaak (inclusief figuren) of helemaal niets"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Tekst voor knop Verzenden"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Aangepaste opmaak"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Ingeschakeld?"
-
-#: mailchimp.php:537
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Breedte kantlijn"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Kies 0 voor geen kantlijnen, gebruik geen px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Kleur kantlijn"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "niet starten met # !"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Formulierinstellingen"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variabelen toevoegen"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Geen Merge Variabelen gevonden."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Naam"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Vereist?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Toevoegen?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interesse Groepen"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Geen Interesse Groepen ingesteld voor deze Lijst"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Tonen?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Invoertype"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Instellingen"
-
diff --git a/po/mailchimp_i18n-pt_BR.mo b/po/mailchimp_i18n-pt_BR.mo
deleted file mode 100644
index 474e70c..0000000
Binary files a/po/mailchimp_i18n-pt_BR.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-pt_BR.po b/po/mailchimp_i18n-pt_BR.po
deleted file mode 100644
index a922b6f..0000000
--- a/po/mailchimp_i18n-pt_BR.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Maria Manoela Porto \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Você deve preencher %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Este endereço de email já está cadastrado na lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s tem conteúdo inválido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Um grupo inválido foi escolhido"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Endereço de email inválido"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Você se cadastrou com sucesso! Por favor verifique seu email para confirmar seu cadastro."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "campo obrigatório"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Quero me descadastrar."
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Configuração do MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Enquanto estamos atualizando o plugin, não conseguimos logar seu usuário. Você precisará se logar novamente e configurar sua lista. "
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Configuração de lista de emails do MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Parabéns! Conseguimos verificar seu nome de usuário e senha. Vamos continuar?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Desculpe-nos mas não conseguimos verificar seu nome de usuário e senha. Verifique seus dados e tente novamente."
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Resposta do servidor:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Inscreva-se para"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Cadastrar"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Parabéns! Informações carregadas e salvas para %d Merge Variables e %d Interest Groups da sua lista."
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Agora você deve ativar o widget do MailChimp ou alterar as opções abaixo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Alterações realizadas com sucesso... agora você deve escolher um plano!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards ligado!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards desligado!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Inscrição por Javascript (mais bacana!) ativada."
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Inscrição por Javascript (mais bacana!) desativada."
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Opção de descadastro ativada."
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Opção de descadastro desativada."
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Formulário de cadastro atualizado com sucesso!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Informações de login"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Para começar a usar o plugin do MailChimp você primeiro deve se logar e gerar sua chave de API. Por favor preencha com o seu login e senha do MailChimp."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Não tem uma conta do MailChimp? Inscreva-se agora gratuitamente !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Nome de usuário"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Senha"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Salvar"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notas"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Alterar suas configurações em MailChimp.com pode fazer com que este plugin pare de funcionar."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Se você alterar seu login para outra conta, as informações abaixo serão apagadas."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Se algo acontecer, não entre em pânico! Apenas reconfigure seu login e as opções abaixo..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Logado como"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Logout"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Suas listas"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Por favor selecione a lista para a qual você deseja criar um formulário de cadastro."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Você não tem nenhuma lista configurada! Por favor visite %s, acesse sua conta e configure uma lista antes de começar a usar esta ferramenta."
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Selecione uma lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Atualizar lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Atualizar sua lista não causará perda das configurações abaixo. Se mudar para uma nova lista as configurações serão perdidas."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Reset as opções da lista e selecionar novamente."
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Widget com formulário de cadastro para esta lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista MailChimp selecionada"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Atualizar configurações do formulário de cadastro"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "selecionar esta opção irá mostrar o aviso \"powered by MailChimp\" com um link no seu formulário de cadastro e você irá ganhar créditos no Monkey Rewards. Esta opção é opcional e você poderá ativar ou desativar quando quiser."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Usar javascript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "ativar esta opção irá ativar o uso de javascript no cadastro de usuários. Esta opção pode ser ativada ou desativada quando quiser."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Incluir link para descadastro?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "ativar esta opção irá incluir um link para remoção de cadastro da lista diretamente do nosso host."
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Conteúdo do cabeçalho"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Você pode preencher isso com seu próprio texto ou html (incluindo imagens) ou nada!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Texto de botão de envio de cadastro"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Customizar estilo"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Ativado?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Configurações de cabeçalho (válidas somente se nenhum html estiver escrito no Conteúdo do cabeçalho acima"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Largura da borda"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Configure como 0 para não ter borda. Não digite px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Cor da borda"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "não coloque # na frente"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configurações do formulário"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variables incluída"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Não foram encontradas Merge Variables."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nome"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obrigatório?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Incluir?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interest Groups"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Nenhum Interest Group configurado para esta lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Mostrar?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipo de dados"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opções"
-
diff --git a/po/mailchimp_i18n-pt_PT.mo b/po/mailchimp_i18n-pt_PT.mo
deleted file mode 100644
index f6ed4df..0000000
Binary files a/po/mailchimp_i18n-pt_PT.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-pt_PT.po b/po/mailchimp_i18n-pt_PT.po
deleted file mode 100644
index a03f83e..0000000
--- a/po/mailchimp_i18n-pt_PT.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-04-25 14:17-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Maria Manoela Porto \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Deve preencher %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Este endereço de correio electrónico já está inscrito na lista"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s contém conteúdo inválido"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Um grupo inválido foi seleccionado"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Endereço de correio electrónico inválido"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Registo efectuado com sucesso! Por favor verifique o seu cliente de correio electrónico para confirmar seu registo."
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "campo obrigatório"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Cancelar a subscrição."
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Configuração do MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Enquanto actualizávamos o plugin, não conseguimos autenticar o seu utilizador. Por favor efectue nova ligação para configurar a sua lista. "
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Configuração de listas do MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Parabéns! Conseguimos verificar o seu nome de utilizador e palavra-chave. Vamos continuar?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Não conseguimos verificar o seu nome de utilizador e palavra-chave. Verifique os seus dados e tente novamente."
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Resposta do servidor:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Inscreva-se a"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Subscrever"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Parabéns! Informações carregadas e salvas para %d Merge Variables e %d Interest Groups da sua lista."
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Agora deve activar o widget do MailChimp ou alterar as opções abaixo."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Alterações realizadas com sucesso... agora tem mais escolhas!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards ligado!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards desligado!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Inscrição por Javascript ligada."
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Inscrição por Javascript desligada."
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Opção de cancelar a subscrição ligada!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Opção de cancelar a subscrição desligada!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Formulário de subscrição actualizado com sucesso!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Informações de autenticação"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Para começar a usar o plugin do MailChimp deverá primeiro autenticar-se e gerar sua chave de API. Por favor preencha com o seu utilizado e palavra-chave do MailChimp."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Não tem uma conta do MailChimp? Inscreva-se agora gratuitamente !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Utilizador"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Palavra-chave"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Salvar"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notas"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Alterar suas configurações em MailChimp.com pode fazer com que este plugin pare de funcionar."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Se alterar o seu utilizador para outra conta, as informações abaixo serão apagadas."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Se algo acontecer, não entre em pânico! Apenas reconfigure com o seu utilizador e as opções abaixo..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Ligado como"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Sair"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Suas listas"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Por favor seleccione a lista para a qual deseja criar um formulário de subscrição."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Você não tem nenhuma lista configurada! Por favor visite %s, aceda à sua conta e configure uma lista antes de começar a usar esta ferramenta."
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Seleccione uma lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Actualizar lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Nota:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Actualizar a sua lista não causará perda das configurações abaixo. Se mudar para uma nova lista as configurações serão perdidas."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Reinicie as opções da lista e seleccione novamente"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Widget com formulário de subscrição para esta lista"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista MailChimp seleccionada"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Actualizar configurações do formulário de subscrição"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "seleccionar esta opção irá mostrar o aviso \"powered by MailChimp\" com uma hiperligação no seu formulário de subscrição que fará com que ganhe créditos no Monkey Rewards. Esta opção é opcional e você poderá activar ou desactivar quando quiser."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Usar JavaScript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "activar esta opção irá activar o uso de JavaScript na subscrição de utilizadores. Utilizadores sem suporte para JavaScript vão ter uma má experiência. Esta opção pode ser activada ou desactivada quando quiser."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Incluir hiperligação para cancelar a subscrição?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "activar esta opção irá incluir uma hiperligação para remoção de subscrição directamente no formulário."
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Conteúdo do cabeçalho"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Você pode preencher isso com seu próprio texto ou HTML (incluindo imagens) ou deixar em branco!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Texto de botão de envio de subscrição"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Personalizar estilo"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Activo?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Configurações de cabeçalho (válidas somente se nenhum HTML estiver escrito no conteúdo do cabeçalho acima)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Largura da borda"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Configure como 0 para não ter borda. Não escreva px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Cor da borda"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "não coloque # na frente"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configurações do formulário"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Merge Variables incluída"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Não foram encontradas Merge Variables."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nome"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obrigatório?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Incluir?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Interest Groups"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Nenhum Interest Group configurado para esta lista"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Mostrar?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipo de dados"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opções"
-
diff --git a/po/mailchimp_i18n-ro_RO.mo b/po/mailchimp_i18n-ro_RO.mo
deleted file mode 100644
index 484bfb0..0000000
Binary files a/po/mailchimp_i18n-ro_RO.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-ro_RO.po b/po/mailchimp_i18n-ro_RO.po
deleted file mode 100644
index e5d8d2b..0000000
--- a/po/mailchimp_i18n-ro_RO.po
+++ /dev/null
@@ -1,346 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2012-02-07 08:58-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Contributed \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Romanian\n"
-"X-Poedit-Country: ROMANIA\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Trebuie să completezi %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Acea adresă de email este deja abonată"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s are conținut invalid"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Un Grup de Interes invalid a fost selectat."
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Acea adresă de email este invalidă"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Felicitări, ai fost abonat! Te rugăm, verifică dacă ai primit mailul de confirmare!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "câmp necesar"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "dezabonare din listă"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "facilitat de"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "Configurare MailChimp"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Actualizând configurarea, nu te-am putut conecta la cont. Va trebui să te conectezi din nou și să configurezi lista."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "Configurarea de liste MailChimp"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Felicitări! Am verificat utilizatorul și parola cu succes! Putem continua?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Of, nu te-am putut conecta și verifica utilizatorul & parola. Te rugăm, verifică-le și încearcă din nou!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Serverul a răspuns cu:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Înregistrare pentru"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Abonare"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Succes! Am încărcat și salvat datele din listă pentru %d Variabilele de Asortare și %d Grupuri de Interese"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Acum ar trebui să activezi Widget-ul MailChimp sau să schimbi configurările mai jos, după care să-l activezi."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Selecția de Liste a fost resetată cu succes... Poți alege din nou!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Recompensele MailChimp au fost activate!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Recompensele MailChimp au fost dezactivate!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Trimitere prin Javascript Extravagant activată!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Trimitere prin Javascript Extravagant dezactivată!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Link-ul de dezabonare activat!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Link-ul de dezabonare dezactivat!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Configurația Formularului de Abonare a fost actualizată!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Date de Conectare"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Pentru a folosi extensia de MailChimp, trebuie să te conectezi și să primești Cheia de API. Te rugăm să-ți completezi dedesubt utilizatorul și parola."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Nu ai cont de MailChimp? Încearcă Gratuit !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Utilizator"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Parolă"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Salvează și Verifică"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Note"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Schimbarea configurării pe MailChimp.com poate opri funcționarea acesteia."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Dacă îți schimbi datele de conectare către un alt cont, configurarea alăturată va fi ștearsă."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Dacă se întâmpla ceva de genul, nici o problemă - reconfigurează datele de conectare dedesubt..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Conectat ca"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Deconectare"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Listele tale"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Te rugăm, selectează-ți Lista pentru care dorești să creezi un Formular de Abonare."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Of, n-ai liste definite! Te rugăm, vizitează %s, conectează-te și definește o listă înainte de a utiliza această funționalitate!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Selectează o Listă:"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Actualizează Lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Notă:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Actualizarea listei nu va șterge configurația alăturată. Schimbarea la o altă listă o va face."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Resetează Configurația Listei și Selectează din nou"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Configurarea Widget-ului pentru Formularul de Abonare a acestei Liste"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Lista MailChimp selectată"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Actualizează Configurația Formularului de Abonare"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Recompense MailChimp"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Activarea acestei opțiuni va afișa un link \"facilitat de MailChimp\" în formular, prin care vei dobândi credite MailChimp. Este opțional și poate fi dezactivat oricând."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Folosește Javascript"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "prin activarea acesteia se va folosi javascript extravagant, dacă vizitatorul are javascript activat, pentru trimiterea formularului. Este opțional și poate fi dezactivat oricând."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Include link de Dezabonare?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "activarea acesteia va adăuga un link formularului de dezabonare, hostat"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Titlu"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Poți completa cu text, cod HTML (inclusiv imagini), sau nimic!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Eticheta butonului de trimitere"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Înfățișare personalizată"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Activat?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Configurare Titlu (se aplică doar dacă nu există cod HTML in Titlu)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Lățime Chenar"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Introduceți 0 pentru nici un Chenar, fără px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Culoarea Chenarului"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "Nu introduce # -ul de început"
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Configurare formular"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "S-au inclus Variabilele de Asortare"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Nu s-au găsit Variabile de Asortare"
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Nume"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Etichetă"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Necesar?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Include?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Grupuri de Interes"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Nu au fost configurate Grupuri de Interes pentru această listă"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Afișează?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Tipul înregistrării"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Opțiuni"
-
diff --git a/po/mailchimp_i18n-ru_RU.mo b/po/mailchimp_i18n-ru_RU.mo
deleted file mode 100644
index 520bc36..0000000
Binary files a/po/mailchimp_i18n-ru_RU.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-ru_RU.po b/po/mailchimp_i18n-ru_RU.po
deleted file mode 100644
index ef824e8..0000000
--- a/po/mailchimp_i18n-ru_RU.po
+++ /dev/null
@@ -1,347 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Fat Cow \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Russian\n"
-"X-Poedit-Country: RUSSIAN FEDERATION\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Вы должны заполнить %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Этот адрес уже подписан"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s имеет неправильное содержание"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Неправильная группа интересов выбрана"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Этот адрес некорректный"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Браво, вы зарегистрировались! Посмотрите, пожалуйста, в электронной почте подтверждение!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "поле обязательно"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "отписаться от рассылки"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "установка MailChimp "
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "При модернизации установки плагина, мы не смогли войти в свою учетную запись. Вы должны войти снова и настройки вашего списка. "
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "список установки MailChimp "
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Браво! Мы смогли проверить ваши имя пользователя и пароль! Давайте продолжать, будем?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Uh-Oh, мы не смогли проверить логин и имя пользователя и пароль. Пожалуйста, проверьте их и попробуйте снова! "
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Сервер говорит:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Подпишитесь на рассылку"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Подписка"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Браво! Загружена и сохранена информация для%d Merge Variables и и%d группы интересов из списка "
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Теперь вы должны либо включить функцию MailChimp Виджет, либо изменить эту опцию ниже, а затем включить это."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Успешно сброшено... Теперь вам нужно подобрать еще раз!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards включен!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards отключен!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Fancy Javascript представления включены!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Fancy Javascript представления отключены!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Линк 'Отказаться от рассылки' включен!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Линк 'Отказаться от рассылки' отключен!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Успешно обновлен список подписок!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Информация о входе"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "Чтобы начать пользоваться MailChimp плагином, прежде всего, необходимо зарегистрироваться и получить ключ API. Пожалуйста, введите Ваши MailChimp имя пользователя и пароль ниже. "
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Нет MailChimp аккаунта? Зарегистрируйтесь бесплатно !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Имя пользователя"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Пароль"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Сохранить и проверить"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Заметки"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Изменение настроек в MailChimp.com может привести к остановке работы."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Если вы измените ваш логин на другой счет, то имеющаяся информация ниже будет удалена."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Если какие-либо не получилось, не расстраивайтесь - просто перенастройте свой логин и пункты ниже ..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Вошел как"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Выход"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Ваши списки"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Пожалуйста, выберите Список вы хотите создать форму для регистрации."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Ох-ох, вы не определили списки! Пожалуйста, посетите %s, войдите и настройте списки перед использованием этого инструмента! "
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Выберите список"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Обновить список:"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Совет:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Обновление списка не вызовет настройки ниже, чтобы быть потеряны. Переход на новый список."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Сбросить настроки списка и выбрать снова"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Настройки формы виджета подписки для этого списка"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Выбранный MailChimp список"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Обновить подписку через настройки"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "С поддержкой javascript?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Включать ссылку отписки?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "turning this on will add a link to your host unsubscribe form"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Содержание шапки"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Вы можете заполнить это собственным текстом, HTML разметкой (включая графические ссылки), или ничего!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Кнопка отправки текста"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Избранное оформление"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Включено?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Настройки шапки (применяется только в случае, если нет HTML-тегов в Header'е) "
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Ширина границы"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Установите 0 для отключения границ, не вводите px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Цвет границы"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "не указан первоначальный # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Настроки формы"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Слияние переменных включено"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Не найдено объединенных переменных."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Имя"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Тэг"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Обязательно?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Включено?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Группы интересов"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Нет групп интересов установки для данного списка"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Показывать?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "тип ввода"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Настройки"
-
diff --git a/po/mailchimp_i18n-sv_SE.mo b/po/mailchimp_i18n-sv_SE.mo
deleted file mode 100644
index d3cc407..0000000
Binary files a/po/mailchimp_i18n-sv_SE.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-sv_SE.po b/po/mailchimp_i18n-sv_SE.po
deleted file mode 100644
index 4433603..0000000
--- a/po/mailchimp_i18n-sv_SE.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2010-12-17 14:36-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: Sebastian Johnsson \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Du måste ange %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "E-postadressen du angav prenumererar redan på den här maillistan"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s har ogiltigt innehåll"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "En ogiltig intressegrupp har valts"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "E-postadressen är ogiltig"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Grattis, du har nu registrerat dig. Kolla efter ditt bekräftelsemeddelande!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "obligatoriskt fält"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "avsluta min prenumeration från listan"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "powered by"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Inställningar"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "När inställningarna för pluginet uppgraderades så kunde vi tyvärr ej logga in på ditt konto. Du behöver logga in igen och ställa in dina inställningar för listan."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp Inställningar"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "All right! Vi lyckades att verifiera ditt användarnamn och lösenord!"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Oops, vi lyckades inte att logga in och verifiera ditt användarnamn och lösenord. Vänligen dubbelkolla dina uppgifter och försök igen!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Servern sa:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Registerar dig"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Prenumerera"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Framgång! Laddade och sparade informationen för %d E-postvariabler och %d Intressegrupper från din lista"
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Nu bör du antingen slå på MailChimp Widgeten eller ändra dina inställningar nedan och sedan slå på den igen."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Ditt val av lista har framgångsrikt nollställts... Välj nu en ny lista!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Monkey Rewards har aktiverats!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Monkey Rewards har inaktiverats!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Javascript-postning har aktiverats!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Javascript-postning har inaktiverats!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Avprenumerationslänk har aktiverats!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Avprenumerationslänk har inaktiverats!"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Dina inställningar har framgångsrikt uppdaterats!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Login-information"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "För att starta använda MailChimp-pluginet så måste vi först logga in och hämta din API-nyckel. Vänligen ange ditt MailChimp användarnamn samt lösenord nedan."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "Har du inget MailChimp konto? Testa ett gratis !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Användarnamn"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Lösenord"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Spara och Kontrollera"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notera"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "Om du ändrar dina inställingar på MailChimp.com kan det hända att pluginet slutar att fungera."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Om du ändrar ditt login till ett annat konto så kommer informationen nedan att tas bort."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Om något av det händer, oroa dig inte - konfigurera bara om din login och sakerna nedan..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Inloggad som"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Logga ut"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Dina listor"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Vänligen välj den lista du vill skapa ett Prenumerationsformulär för."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Oops, du har inte lagt upp några listor! Vänligen besök %s, logga in, och lägg till en lista före du använder det här verktyget!"
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Välj lista"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Uppdatera Lista"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Notera:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Genom att uppdatera din lista kommer inställingar inte att gå förlorade. Genom att byta till en ny lista kommer inställningarna dock att gå förlorade."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Återställ Listinställningar och välj igen"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Prenumerationsformulär Widget-inställningar för den här Listan"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Vald MailChimp Lista"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Uppdatera Inställningar"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Monkey Rewards"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "genom att aktivera detta kommer en \"powered by MailChimp\"-länk att placeras i ditt formulär som gör att du kan tjäna in krediter med oss. Det är helt och hållet valfritt och kan slås på eller av närsom."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Använd Javascript-stöd?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "genom att slå på det här kommer en formuläret att postas med javascript och degraderas schysst för användare som inte använder javascript. Det här är valfritt och kan stängas av när som."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Inkludera avprenumereringsformulär?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "genom att aktivera detta kommer en länk att läggas till som leder till ditt avprenumereringsformulär"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Headerinnehåll"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Du kan fylla det här med din egen text, HTML markup (t.ex. bildlänkar), eller ingenting!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Submit-knapp text"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Anpassad Styling"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Aktiverad?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Header-inställningar (används enbart om där inte finns några HTML-taggar angivna i Headerinnehållsområdet ovan)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Border-bredd"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Sätt till 0 för ingen border, ange inte px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Border-färg"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "ange inte initial # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Formulärinställningar"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "E-postvariabler har inkluderats"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Inga e-postvariabler hittades."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "Namn"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Tag"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Obligatorisk?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Inkludera?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "Intressegrupper"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Inga Intressegrupper finns för den här listan"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Visa?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Inmatningstyp"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Inställningar"
-
diff --git a/po/mailchimp_i18n-tr_TR.mo b/po/mailchimp_i18n-tr_TR.mo
deleted file mode 100644
index 04d79d8..0000000
Binary files a/po/mailchimp_i18n-tr_TR.mo and /dev/null differ
diff --git a/po/mailchimp_i18n-tr_TR.po b/po/mailchimp_i18n-tr_TR.po
deleted file mode 100644
index 00ca0e9..0000000
--- a/po/mailchimp_i18n-tr_TR.po
+++ /dev/null
@@ -1,344 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR MailChimp API Support Team
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: MailChimp 1.1.5\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/mailchimp\n"
-"POT-Creation-Date: 2009-07-15 14:23-0400\n"
-"PO-Revision-Date: 2011-09-14 07:51-0500\n"
-"Last-Translator: MailChimp API \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: mailchimp_includes.php:27
-#: mailchimp_includes.php:62
-msgid "You must fill in %s."
-msgstr "Doldurmalısınız %s."
-
-#: mailchimp_includes.php:59
-msgid "That email address is already subscribed to the list"
-msgstr "Bu mail adresi listemizde mevcut"
-
-#: mailchimp_includes.php:66
-#, php-format
-msgid "%s has invalid content"
-msgstr "%s geçersiz bir içeriğe sahip"
-
-#: mailchimp_includes.php:68
-msgid "An invalid Interest Group was selected"
-msgstr "Geçersiz bir ilgi alanı grubu seçildi"
-
-#: mailchimp_includes.php:69
-msgid "That email address is invalid"
-msgstr "Bu posta adresi geçersiz"
-
-#: mailchimp_includes.php:75
-msgid "Success, you've been signed up! Please look for our confirmation email!"
-msgstr "Başarılı, kayıt oldunuz! Lütfen onay için posta kutunuzu kontrol edin!"
-
-#: mailchimp_includes.php:131
-msgid "required field"
-msgstr "doldurulması zorunludur"
-
-#: mailchimp_includes.php:168
-msgid "unsubscribe from list"
-msgstr "Liste aboneliğinden çıkış"
-
-#: mailchimp_includes.php:171
-msgid "powered by"
-msgstr "tarafından desteklenmektedir"
-
-#: mailchimp.php:135
-msgid "MailChimp Setup"
-msgstr "MailChimp Kurulumu"
-
-#: mailchimp.php:150
-msgid "While upgrading the plugin setup, we were unable to login to your account. You will need to login again and setup your list."
-msgstr "Eklenti güncellemesi sırasında hesabınıza giriş yapamadık. Tekrar giriş yaparak listenizi kurmalısınız."
-
-#: mailchimp.php:156
-msgid "MailChimp List Setup"
-msgstr "MailChimp Liste Kurulumu"
-
-#: mailchimp.php:166
-msgid "Success! We were able to verify your username & password! Let's continue, shall we?"
-msgstr "Başarılı! Kullanıcı adı & parolanızı doğrulayabildik! Devam edelim, olur mu?"
-
-#: mailchimp.php:178
-msgid "Uh-oh, we were unable to login and verify your username & password. Please check them and try again!"
-msgstr "Uh-oh, kullanıcı adı & parolanızı doğrulayamadık ve giriş yapamadık. Lütfen tekrar kontrol edin!"
-
-#: mailchimp.php:179
-msgid "The server said:"
-msgstr "Sunucu der ki:"
-
-#: mailchimp.php:222
-msgid "Sign up for"
-msgstr "Bunun için kayıt olun"
-
-#: mailchimp.php:223
-msgid "Subscribe"
-msgstr "Abone ol"
-
-#: mailchimp.php:253
-#, php-format
-msgid "Success! Loaded and saved the info for %d Merge Variables and %d Interest Groups from your list"
-msgstr "Başarılı! Gereken bilgi yüklendi ve kayıt edildi %d değişkenleri birleştir ve %d İlgi alanı Grupları listesinden."
-
-#: mailchimp.php:256
-msgid "Now you should either Turn On the MailChimp Widget or change your options below, then turn it on."
-msgstr "Şimdi MailChimp Widget'i etkinleştirmeli veya alttaki ayarları değiştirmelisiniz, sonrada açın."
-
-#: mailchimp.php:284
-msgid "Successfully Reset your List selection... Now you get to pick again!"
-msgstr "Liste seçimleriniz Başarıyla Sıfırlandı... Şimde tekrar seçim yapın!"
-
-#: mailchimp.php:290
-msgid "Monkey Rewards turned On!"
-msgstr "Maymun Ödülleri açıldı!"
-
-#: mailchimp.php:294
-msgid "Monkey Rewards turned Off!"
-msgstr "Maymun Ödülleri kapatıldı!"
-
-#: mailchimp.php:299
-msgid "Fancy Javascript submission turned On!"
-msgstr "Cancanlı Javascript gönderimi açıldı!"
-
-#: mailchimp.php:303
-msgid "Fancy Javascript submission turned Off!"
-msgstr "Cancanlı Javascript gönderimi kapatıldı!"
-
-#: mailchimp.php:309
-msgid "Unsubscribe link turned On!"
-msgstr "Abonelikten vazgeç linki açıldı!"
-
-#: mailchimp.php:313
-msgid "Unsubscribe link turned Off!"
-msgstr "Abonelikten vazgeç linki kapatıldı"
-
-#: mailchimp.php:359
-msgid "Successfully Updated your List Subscribe Form Settings!"
-msgstr "Abone Form Liste Ayarlarınız Başarıyla Güncellendi!"
-
-#: mailchimp.php:372
-msgid "Login Info"
-msgstr "Giriş Bilgisi"
-
-#: mailchimp.php:373
-msgid "To start using the MailChimp plugin, we first need to login and get your API Key. Please enter your MailChimp username and password below."
-msgstr "MailChimp eklentisini kullanmaya başlamak için giriş yapmanıza ve API anahtarı almanıza ihtiyacımız var. Lütfen aşağıya MailChimp kullanıcı adı ve parolanızı girin."
-
-#: mailchimp.php:375
-msgid "Don't have a MailChimp account? Try one for Free !"
-msgstr "MailChimp hesabınız yokmu? Ücretsiz Deneyin !"
-
-#: mailchimp.php:379
-msgid "Username"
-msgstr "Kullanıcı adı"
-
-#: mailchimp.php:383
-msgid "Password"
-msgstr "Parola"
-
-#: mailchimp.php:389
-msgid "Save & Check"
-msgstr "Kayıt & Kontrol"
-
-#: mailchimp.php:394
-msgid "Notes"
-msgstr "Notlar"
-
-#: mailchimp.php:395
-msgid "Changing your settings at MailChimp.com may cause this to stop working."
-msgstr "MailChimp.com'da ki ayarlarınızın değişmesi çalışmayı durdurmasına neden olabilir."
-
-#: mailchimp.php:396
-msgid "If you change your login to a different account, the info you have setup below will be erased."
-msgstr "Eğer girişinizi başka bir hesap ile değiştirirseniz, kurulumunuzdaki bilgiler silinecektir."
-
-#: mailchimp.php:397
-msgid "If any of that happens, no biggie - just reconfigure your login and the items below..."
-msgstr "Herhangi birşey olursa, önemsemeyin - sadece giriş ve alt öğeleri yeniden yapılandırın..."
-
-#: mailchimp.php:403
-msgid "Logged in as"
-msgstr "Olarak oturum açıldı"
-
-#: mailchimp.php:407
-msgid "Logout"
-msgstr "Çıkış"
-
-#: mailchimp.php:421
-msgid "Your Lists"
-msgstr "Listeniz"
-
-#: mailchimp.php:423
-msgid "Please select the List you wish to create a Signup Form for."
-msgstr "Lütfen oluşturmak istediğiniz Üye Kayıt Formunu seçin."
-
-#: mailchimp.php:432
-#, php-format
-msgid "Uh-oh, you don't have any lists defined! Please visit %s, login, and setup a list before using this tool!"
-msgstr "Uh-oh, herhangi bir liste tanımlamadınız! Lütfen ziyaret edin%s, giriş, ve bu aracı kullanmadan önce bir liste oluşturun."
-
-#: mailchimp.php:437
-msgid "Select A List"
-msgstr "Bir Liste Seç"
-
-#: mailchimp.php:450
-msgid "Update List"
-msgstr "Listeyi Güncelle"
-
-#: mailchimp.php:453
-msgid "Note:"
-msgstr "Not:"
-
-#: mailchimp.php:453
-msgid "Updating your list will not cause settings below to be lost. Changing to a new list will."
-msgstr "Listenizi güncellemek alt ayarların kaybolmasına neden olmaz. Yeni bir listeyle değiştirirseniz olur."
-
-#: mailchimp.php:471
-msgid "Reset List Options and Select again"
-msgstr "Liste Ayarlarını Sıfırla ve tekrar Seç"
-
-#: mailchimp.php:474
-msgid "Subscribe Form Widget Settings for this List"
-msgstr "Bu Liste için Abone Formu Widget Ayarları"
-
-#: mailchimp.php:475
-msgid "Selected MailChimp List"
-msgstr "Seçilen MailChimp Listesi"
-
-#: mailchimp.php:496
-#: mailchimp.php:569
-#: mailchimp.php:630
-msgid "Update Subscribe Form Settings"
-msgstr "Abone Form Ayarlarını Güncelle"
-
-#: mailchimp.php:499
-msgid "Monkey Rewards"
-msgstr "Maymun Ödülleri"
-
-#: mailchimp.php:501
-msgid "turning this on will place a \"powered by MailChimp\" link in your form that will earn you credits with us. It is optional and can be turned on or off at any time."
-msgstr "Bunu açmanız formunuza bizimle kredi kazanabileceğiniz \"powered by MailChimp\" linki ekler. Bu isteğe bağlıdır ve her zaman açık veya kapalı olarak değişebilir."
-
-#: mailchimp.php:505
-msgid "Use Javascript Support?"
-msgstr "Javascript Desteği Kullanılsın mı?"
-
-#: mailchimp.php:507
-msgid "turning this on will use fancy javascript submission and should degrade gracefully for users not using javascript. It is optional and can be turned on or off at any time."
-msgstr "Bunu açmanız cancanlı javascript gönderimini kullanır ve javascript kullanmayanları nazikçe küçük düşürür. Bu isteğe bağlıdır ve her zaman açık veya kapalı olarak değişebilir."
-
-#: mailchimp.php:511
-msgid "Include Unsubscribe link?"
-msgstr "Abonelikten Vazgeçme linki Eklensin mi?"
-
-#: mailchimp.php:513
-msgid "turning this on will add a link to your host unsubscribe form"
-msgstr "bunu açmak sunucunuza bir abonelikten vazgeçme form linki ekleyecektir"
-
-#: mailchimp.php:517
-msgid "Header content"
-msgstr "Başlık içeriği"
-
-#: mailchimp.php:520
-msgid "You can fill this with your own Text, HTML markup (including image links), or Nothing!"
-msgstr "Buraya kendi Yazınızı ekleyebilir, HTML biçimi (resim linki ekleme), yada hiçbir şey!"
-
-#: mailchimp.php:525
-msgid "Submit Button text"
-msgstr "Kabul Buton yazısı"
-
-#: mailchimp.php:532
-msgid "Custom Styling"
-msgstr "Kişisel Stil"
-
-#: mailchimp.php:536
-msgid "Turned On?"
-msgstr "Açılsın mı?"
-
-#: mailchimp.php:537
-msgid "Header Settings (only applies if there are no HTML tags in the Header Content area above)"
-msgstr "Başlık Ayarları (yalnızca yukarıdaki Üstbilgi İçerik alanında herhangi bir HTML etiketi yoksa geçerlidir)"
-
-#: mailchimp.php:538
-#: mailchimp.php:552
-msgid "Border Width"
-msgstr "Kenarlık Eni"
-
-#: mailchimp.php:539
-#: mailchimp.php:553
-msgid "Set to 0 for no border, do not enter px !"
-msgstr "Kenarlıksız için 0 gir, girme px !"
-
-#: mailchimp.php:541
-#: mailchimp.php:555
-msgid "Border Color"
-msgstr "Kenarlık Rengi"
-
-#: mailchimp.php:542
-#: mailchimp.php:545
-#: mailchimp.php:548
-#: mailchimp.php:556
-#: mailchimp.php:559
-#: mailchimp.php:562
-msgid "do not enter initial # "
-msgstr "başına girme # "
-
-#: mailchimp.php:551
-msgid "Form Settings"
-msgstr "Form Ayarları"
-
-#: mailchimp.php:571
-msgid "Merge Variables Included"
-msgstr "Birleşen Değişkenler Eklendi"
-
-#: mailchimp.php:574
-msgid "No Merge Variables found."
-msgstr "Birleşen Değişken bulunamadı."
-
-#: mailchimp.php:580
-#: mailchimp.php:614
-msgid "Name"
-msgstr "İsim"
-
-#: mailchimp.php:581
-msgid "Tag"
-msgstr "Etiket"
-
-#: mailchimp.php:582
-msgid "Required?"
-msgstr "Gerekli?"
-
-#: mailchimp.php:583
-msgid "Include?"
-msgstr "Ekle?"
-
-#: mailchimp.php:603
-msgid "Interest Groups"
-msgstr "İlgi Alanı Grupları"
-
-#: mailchimp.php:605
-msgid "No Interest Groups Setup for this List"
-msgstr "Bu Liste için İlgi Alanı Grupları Kurulmadı"
-
-#: mailchimp.php:610
-msgid "Show?"
-msgstr "Göster?"
-
-#: mailchimp.php:617
-msgid "Input Type"
-msgstr "Giriş Tipi"
-
-#: mailchimp.php:620
-msgid "Options"
-msgstr "Seçenekler"
-
diff --git a/readme.txt b/readme.txt
index 2c9bf7c..2918f3c 100644
--- a/readme.txt
+++ b/readme.txt
@@ -83,16 +83,6 @@ Currently we have the plugin configured so it can be translated and the followin
* sv_SE - Swedish in Sweden (thanks to [Sebastian Johnsson](http://www.agiley.se/) for contributing)
* tr_TR - Turkish in Turkey (thanks to [Hakan E.](http://kazancexpert.com/) for contributing)
-If your language is not listed above, feel free to create a translation. Here are the basic steps:
-
-1. Copy "mailchimp_i18n-en_US.po" to "mailchimp_i18n-LANG_COUNTRY.po" - fill in LANG and COUNTRY with whatever you use for WPLANG in wp-config.php
-2. Grab a translation editor. [POedit](http://www.poedit.net/) works for us
-3. Translate each line - if you need some context, open up mailchimp.php and search for the line number or text
-4. [Fork](http://help.github.com/fork-a-repo/) the [repository on github](https://github.com/crowdfavorite/wp-mailchimp)
-5. [Clone](http://help.github.com/remotes/#clone) the _develop_ branch
-6. Add the appropriately named files to the /po/ directory and edit the /readme.txt to include how you'd like to be attributed
-7. Make a [pull request](http://help.github.com/send-pull-requests/)
-
== Screenshots ==
1. Entering your Mailchimp login info
diff --git a/views/setup_page.php b/views/setup_page.php
index 5da18ff..7349a37 100644
--- a/views/setup_page.php
+++ b/views/setup_page.php
@@ -9,11 +9,11 @@
-
+
API Key. Paste your Mailchimp API key, and click Connect to continue.',
- 'mailchimp_i18n'
+ 'mailchimp'
),
[
'a' => [
@@ -55,8 +55,8 @@
%2$s',
- esc_html( __( 'Don\'t have a Mailchimp account?', 'mailchimp_i18n' ) ),
- esc_html( __( 'Try one for Free!', 'mailchimp_i18n' ) )
+ esc_html__( 'Don\'t have a Mailchimp account?', 'mailchimp' ),
+ esc_html__( 'Try one for Free!', 'mailchimp' )
);
?>
@@ -64,13 +64,13 @@
@@ -83,11 +83,11 @@
if ( '' !== $user && isset( $user['username'] ) && $user['username'] ) {
?>
- :
+ :
@@ -117,12 +117,12 @@
if ( $api ) {
?>
-
+
-
-
+
+
-
:
-
:
+
:
+
:
-
+
@@ -250,11 +250,11 @@
-
+
@@ -348,29 +348,29 @@
-
+
-
+
-
+
/>
-
+
-
+
- CSS Cheat Sheet
+
.widget_mailchimpsf_widget
- This targets the entire widget container.
+
.widget-title
- This styles the title of your Mailchimp widget. Modifying this class will affect your other widget titles.
+
+ Modifying this class will affect your other widget titles.', 'mailchimp' ),
+ [
+ 'i' => [],
+ ]
+ );
+ ?>
+
#mc_signup
- This targets the entirity of the widget beneath the widget title.
+
#mc_subheader
- This styles the subheader text.
+
.mc_form_inside
- The guts and main container for the all of the form elements (the entirety of the widget minus the header and the sub header).
+
.mc_header
- This targets the label above the input fields.
+
.mc_input
- This attaches to the input fields.
+
.mc_header_address
- This is the label above an address group.
+
.mc_radio_label
- These are the labels associated with radio buttons.
+
#mc-indicates-required
- This targets the “Indicates Required Field” text.
+
#mc_signup_submit
- Use this to style the submit button.
+