Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve some copy #290

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions languages/learnpress-es_ES.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
Expand Down Expand Up @@ -5215,7 +5215,7 @@ msgid "Login"
msgstr "Iniciar sesión"

#: templates/checkout/review-order.php:20
msgid "Your order"
msgid "Your Order"
msgstr "Tu orden"

#: templates/checkout/order-comment.php:20
Expand All @@ -5236,7 +5236,7 @@ msgstr "Salir &raquo;"

#: templates/checkout/term-conditions.php:20
#, php-format
msgid "I’ve read and accept the <a href=\"%s\">terms &amp; conditions.</a>"
msgid "I have read and agree to the <a href=\"%s\">Terms &amp; Conditions</a>."
msgstr ""

#: templates/checkout/payment.php:34
Expand Down Expand Up @@ -5294,7 +5294,7 @@ msgid "Sign out"
msgstr ""

#: templates/profile/profile.php:47
msgid "This user does not public their profile."
msgid "This user's profile is not public."
msgstr ""

#: templates/single-course/progress.php:37
Expand Down
6 changes: 3 additions & 3 deletions languages/learnpress-pl_PL.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
Expand Down Expand Up @@ -7632,7 +7632,7 @@ msgid "No payment method is available."
msgstr "Brak metod płatności."

#: templates/checkout/review-order.php:20
msgid "Your order"
msgid "Your Order"
msgstr "Twoje zamówienie"

#: templates/checkout/review-order.php:130 templates/order/order-details.php:81
Expand Down Expand Up @@ -7956,7 +7956,7 @@ msgstr ""
"Proszę się <a href=\"%s\">zalogować</a>, aby zobaczyć zawartość profilu"

#: templates/profile/profile.php:47
msgid "This user does not public their profile."
msgid "This user's profile is not public."
msgstr "Ten użytkownik nie upublicznił swojego profilu."

#: templates/profile/tabs/courses.php:21
Expand Down
8 changes: 4 additions & 4 deletions languages/learnpress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#
#, fuzzy
msgid ""
msgstr ""
Expand Down Expand Up @@ -5197,7 +5197,7 @@ msgid "Login"
msgstr ""

#: templates/checkout/review-order.php:20
msgid "Your order"
msgid "Your Order"
msgstr ""

#: templates/checkout/order-comment.php:20
Expand All @@ -5218,7 +5218,7 @@ msgstr ""

#: templates/checkout/term-conditions.php:20
#, php-format
msgid "I’ve read and accept the <a href=\"%s\">terms &amp; conditions.</a>"
msgid "I have read and agree to the <a href=\"%s\">Terms &amp; Conditions</a>."
msgstr ""

#: templates/checkout/payment.php:34
Expand Down Expand Up @@ -5276,7 +5276,7 @@ msgid "Sign out"
msgstr ""

#: templates/profile/profile.php:47
msgid "This user does not public their profile."
msgid "This user's profile is not public."
msgstr ""

#: templates/single-course/progress.php:37
Expand Down
2 changes: 1 addition & 1 deletion templates/checkout/review-order.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<?php $cart = learn_press_get_checkout_cart(); ?>

<h4><?php _e( 'Your order', 'learnpress' ) ?></h4>
<h4><?php _e( 'Your Order', 'learnpress' ) ?></h4>

<table class="learn-press-checkout-review-order-table lp-list-table">
<thead>
Expand Down
2 changes: 1 addition & 1 deletion templates/checkout/term-conditions.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<p class="learn-press-terms learn-press-terms-and-conditions">
<input type="checkbox" class="input-checkbox" name="terms_conditions" id="terms_conditions">
<label for="terms_conditions" class="checkbox"><?php echo apply_filters( 'learn_press_content_item_protected_message',
sprintf( __( 'I’ve read and accept the <a href="%s">terms &amp; conditions.</a>', 'learnpress' ), $page_link ) );?> <span class="required">*</span></label>
sprintf( __( 'I have read and agree to the <a href="%s">Terms &amp; Conditions</a>.', 'learnpress' ), $page_link ) );?> <span class="required">*</span></label>
<input type="hidden" name="terms_conditions_field" value="1">
</p>
4 changes: 2 additions & 2 deletions templates/profile/profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
</div>

<?php } else {
_e( 'This user does not public their profile.', 'learnpress' );
}
_e( "This user's profile is not public.", 'learnpress' );
}