Skip to content

Commit 98980d5

Browse files
committed
Remove unnecessary text domain from feed URL translation
The text domain 'default' was removed from the translation function in get_planet_feed_url, as it is not needed for URLs.
1 parent 3673083 commit 98980d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

includes/adapters/class-wordpress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ protected function get_news_feed_url() {
218218
*/
219219
protected function get_planet_feed_url() {
220220
// Translators: Link to the Planet feed of the locale.
221-
return \__( 'https://planet.wordpress.org/feed/', 'default' );
221+
return \__( 'https://planet.wordpress.org/feed/' );
222222
}
223223

224224
/**

0 commit comments

Comments
 (0)