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

Changed site localization mode to be "Site" instead of Site Title #5654

Merged
merged 1 commit into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "jest",
"test:watch": "jest --watch",
"debug": "set NODE_ENV=debug&&webpack --mode production",
"watch": "set NODE_ENV=debug & webpack --mode=development --progress --colors --watch",
"watch": "set NODE_ENV=debug & webpack --mode=development --progress --watch",
"analyze": "set NODE_ENV=production&&webpack --mode production --json | webpack-bundle-size-analyzer",
"lint": "eslint --fix"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class EditLanguagePanel extends Component {
value: "Host"
},
{
label: props.portalName,
label: resx.get("Portal"),
value: "Portal"
}
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1323,6 +1323,9 @@
<data name="Host.Text" xml:space="preserve">
<value>Host</value>
</data>
<data name="Portal.Text" xml:space="preserve">
<value>Site</value>
</data>
<data name="plTermsTabId.Help" xml:space="preserve">
<value>The page where you show the terms of use for this site. If left unselected a default text will be shown when a user clicks on the terms of use link.</value>
</data>
Expand Down