Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
Fix i18n "Warning: The string "..." has X different translator commen…
Browse files Browse the repository at this point in the history
…ts".
  • Loading branch information
rvdsteege committed Jul 31, 2020
1 parent f0dfc66 commit edfb6b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Integration.php
Expand Up @@ -76,7 +76,7 @@ public function get_settings_fields() {
'%s %s.',
__( 'API key', 'pronamic_ideal' ),
sprintf(
/* translators: %s: ING Kassa Compleet */
/* translators: %s: payment provider name */
__( 'as mentioned in the %s dashboard', 'pronamic_ideal' ),
__( 'ING Kassa Compleet', 'pronamic_ideal' )
)
Expand All @@ -92,7 +92,7 @@ public function get_settings_fields() {
'value' => add_query_arg( 'ing_kassa_compleet_webhook', '', home_url( '/' ) ),
'readonly' => true,
'tooltip' => sprintf(
/* translators: %s: ING Kassa Compleet */
/* translators: %s: payment provider name */
__( 'Copy the Webhook URL to the %s dashboard to receive automatic transaction status updates.', 'pronamic_ideal' ),
__( 'ING Kassa Compleet', 'pronamic_ideal' )
),
Expand Down
2 changes: 1 addition & 1 deletion src/Listener.php
Expand Up @@ -42,7 +42,7 @@ public static function listen() {

// Add note.
$note = sprintf(
/* translators: %s: ING */
/* translators: %s: payment provider name */
__( 'Webhook requested by %s.', 'pronamic_ideal' ),
__( 'ING', 'pronamic_ideal' )
);
Expand Down

0 comments on commit edfb6b2

Please sign in to comment.