Skip to content

Commit

Permalink
NGSTACK-816 remove redundant of in translations
Browse files Browse the repository at this point in the history
  • Loading branch information
petarjakopec committed Aug 27, 2024
1 parent a3b8b53 commit 2bda698
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This package enhances the visibility of Content URLs by Siteaccess. URLs can be
The package distinguishes between two types of URLs:
1. **Siteaccess URLs** that reside within the configured Siteaccess Content tree.
2. **Siteaccess URLs** that exist outside of the configured Siteaccess Content tree.
2. **Siteaccess URLs** that exist outside the configured Siteaccess Content tree.
By default, the overview of URLs outside the configured Content tree is disabled.
To display these URLs, you need to enable this option in your configuration:
Expand Down
2 changes: 1 addition & 1 deletion bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private function addShowExternalSiteaccessUrls(ArrayNodeDefinition $nodeDefiniti
->children()
->booleanNode('show_siteaccess_urls_outside_configured_content_tree_root')
->defaultFalse()
->info("Show Siteaccess URLs outside of the configured Content tree root in administration's URL tab")
->info("Show Siteaccess URLs outside the configured Content tree root in administration's URL tab")
->end()
?->end();
}
Expand Down
2 changes: 1 addition & 1 deletion bundle/Resources/translations/ibexa_content_url.en.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tab.urls.siteaccess.headline.siteaccess_urls: 'Siteaccess URLs'
tab.urls.siteaccess.headline.siteaccess_urls.outside_configured_content_tree_root: 'Siteaccess URLs outside of the configured Content tree root'
tab.urls.siteaccess.headline.siteaccess_urls.outside_configured_content_tree_root: 'Siteaccess URLs outside the configured Content tree root'
tab.urls.siteaccess: 'Siteaccess'
tab.urls.no_siteaccess_urls: 'This item has no Siteacess URLs.'
tab.urls.url: 'URL'
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% include '@ibexadesign/content/tab/url/siteaccess_urls_table.html.twig' with {
headline:
'tab.urls.siteaccess.headline.siteaccess_urls.outside_configured_content_tree_root'|trans|desc
('Siteaccess URLs outside of the configured Content tree root'),
('Siteaccess URLs outside the configured Content tree root'),
siteaccess_urls: siteaccess_urls_outside_configured_content_tree_root,
} only %}
{% endif %}
Expand Down

0 comments on commit 2bda698

Please sign in to comment.