Removed ilegal brackets from context/msgctxt

This commit is contained in:
Claudio Sanches 2015-01-15 09:22:32 -02:00
parent c8699f6f76
commit 6ed21bb0cc
3 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WooCommerce 2.3-beta-1 Admin\n"
"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n"
"POT-Creation-Date: 2015-01-14 12:41:32+00:00\n"
"POT-Creation-Date: 2015-01-15 11:21:16+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -6201,6 +6201,6 @@ msgid "My Account"
msgstr ""
#: includes/admin/views/html-admin-page-status-report.php:434
msgctxt "[WC Pages links in the System Status]"
msgctxt "WC Pages links in the System Status"
msgid "Edit %s page"
msgstr ""

View File

@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WooCommerce 2.3-beta-1 Frontend\n"
"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n"
"POT-Creation-Date: 2015-01-14 12:41:31+00:00\n"
"POT-Creation-Date: 2015-01-15 11:21:15+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -8337,13 +8337,13 @@ msgstr ""
msgid "Product % Discount"
msgstr ""
#: includes/wc-deprecated-functions.php:707
#: includes/wc-deprecated-functions.php:709
msgid ""
"The shop_order_status taxonomy is no more in WooCommerce 2.2! You should "
"use the new WooCommerce post_status instead, <a href=\"%s\">read more...</a>"
msgstr ""
#: includes/wc-deprecated-functions.php:711
#: includes/wc-deprecated-functions.php:713
msgid ""
"The \"publish\" order status is no more in WooCommerce 2.2! You should use "
"the new WooCommerce post_status instead, <a href=\"%s\">read more...</a>"

View File

@ -431,7 +431,7 @@ If enabled on your server, Suhosin may need to be configured to increase its dat
$page_id = get_option( $values['option'] );
if ( $page_id ) {
$page_name = '<a href="' . get_edit_post_link( $page_id ) . '" title="' . sprintf( _x( 'Edit %s page', '[WC Pages links in the System Status]', 'woocommerce' ), esc_html( $page_name ) ) . '">' . esc_html( $page_name ) . '</a>';
$page_name = '<a href="' . get_edit_post_link( $page_id ) . '" title="' . sprintf( _x( 'Edit %s page', 'WC Pages links in the System Status', 'woocommerce' ), esc_html( $page_name ) ) . '">' . esc_html( $page_name ) . '</a>';
} else {
$page_name = esc_html( $page_name );
}