Skip to content

Commit

Permalink
Merge pull request #46 from sayontan/text_domain
Browse files Browse the repository at this point in the history
Fix text domain
  • Loading branch information
marcissimus committed Nov 22, 2023
2 parents 2816d58 + 200394d commit d65f3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/functions/wpml-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function wpml_content_languages($args = '') {
if (function_exists('icl_get_languages')) {
$languages = icl_get_languages($args);
if (1 < count($languages)) {
echo isset($before) ? $before : __('This post is also available in: ', 'sitepress');
echo isset($before) ? $before : __('This post is also available in: ', 'suffusion');
foreach ($languages as $l) {
if (!$l['active']) $langs[] = '<a href="' . $l['url'] . '">' . $l['translated_name'] . '</a>';
}
Expand Down

0 comments on commit d65f3ef

Please sign in to comment.