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 Footer text #543

Merged
merged 1 commit into from
Feb 13, 2024
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
4 changes: 2 additions & 2 deletions portals/admin/src/main/webapp/site/public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"Apis.Listing.Listing.apis.searching": "Searching",
"Apis.Listing.Listing.clear.search": "Clear Search",
"Apis.Listing.Listing.empty.message": "No Data to Display",
"Apis.Listing.Listing.search.placeholder": "API Name",
"Apis.Listing.Listing.search.placeholder": "Api Name",
"Apis.Listing.apiTableHead.name": "Name",
"Apis.Listing.apiTableHead.provider": "Provider",
"Apis.Listing.apiTableHead.version": "Version",
Expand Down Expand Up @@ -125,7 +125,7 @@
"Base.Errors.ResourceNotFound.more.links": "You may check the links below",
"Base.Errors.ResourceNotfound.default_body": "The page you are looking for is not available",
"Base.Errors.ResourceNotfound.default_tittle": "Page Not Found",
"Base.Footer.Footer.product_details": "WSO2 API-M v4.2.0 | © 2023 WSO2 LLC",
"Base.Footer.Footer.product_details": "WSO2 API-M v4.3.0 | © 2024 WSO2 LLC",
"Base.Header.avatar.Avatar.logout": "Logout",
"Base.RouteMenuMapping.advanced": "Advanced",
"Base.RouteMenuMapping.advanced.throttling.policies": "Advanced Policies",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function Copyright() {
<Typography variant='body2' color='textSecondary' align='center'>
<FormattedMessage
id='Base.Footer.Footer.product_details'
defaultMessage='WSO2 API-M v4.2.0 | © 2023 WSO2 LLC'
defaultMessage='WSO2 API-M v4.3.0 | © 2024 WSO2 LLC'
/>
</Typography>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
"Applications.Details.SubscriptionTableData.update.business.plan": "Current Business Plan : ",
"Applications.Details.SubscriptionTableData.update.business.plan.name": "Business Plan",
"Applications.Details.SubscriptionTableData.update.subscription": "Update Subscription",
"Applications.Details.SubscriptionTableData.update.throttling.policy.blocked": "Subscription is in BLOCKED state. You need to unblock the subscription inorder to edit the tier",
"Applications.Details.SubscriptionTableData.update.throttling.policy.blocked": "Subscription is in BLOCKED state. You need to unblock the subscription in order to edit the tier",
"Applications.Details.SubscriptionTableData.update.throttling.policy.helper": "Assign a new Business plan to the existing subscription",
"Applications.Details.SubscriptionTableData.update.throttling.policy.onHold": "Subscription is currently ON_HOLD state. You need to get approval to the subscription before editing the tier",
"Applications.Details.SubscriptionTableData.update.throttling.policy.rejected": "Subscription is currently REJECTED state. You need to get approval to the subscription before editing the tier",
Expand Down Expand Up @@ -440,7 +440,7 @@
"Base.Header.headersearch.SearchUtils.lcState.prototyped": "Prototyped",
"Base.Header.headersearch.SearchUtils.lcState.published": "Production",
"Base.index.banner.alt": "Dev Portal Banner",
"Base.index.copyright.text": "WSO2 API-M v4.2.0 | © 2023 WSO2 LLC",
"Base.index.copyright.text": "WSO2 API-M v4.3.0 | © 2024 WSO2 LLC",
"Base.index.go.to.public.store": "Switch Dev Portals",
"Base.index.logo.alt": "Dev Portal",
"Base.index.logout": "Logout",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ class Layout extends React.Component {
{footerText && footerText !== '' ? <span>{footerText}</span> : (
<FormattedMessage
id='Base.index.copyright.text'
defaultMessage='WSO2 API-M v4.2.0 | © 2023 WSO2 LLC'
defaultMessage='WSO2 API-M v4.3.0 | © 2024 WSO2 LLC'
/>
)}
</Typography>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8586,7 +8586,7 @@
"Base.Footer.Footer.product_details": [
{
"type": 0,
"value": "WSO2 API-M v4.2.0 | © 2023 WSO2 LLC"
"value": "WSO2 API-M v4.3.0 | © 2024 WSO2 LLC"
}
],
"Base.Header.avatar.Avatar.logout": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4102,7 +4102,7 @@
"defaultMessage": "Page Not Found"
},
"Base.Footer.Footer.product_details": {
"defaultMessage": "WSO2 API-M v4.2.0 | © 2023 WSO2 LLC"
"defaultMessage": "WSO2 API-M v4.3.0 | © 2024 WSO2 LLC"
},
"Base.Header.avatar.Avatar.logout": {
"defaultMessage": "Logout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Footer() {
<Typography noWrap>
<FormattedMessage
id='Base.Footer.Footer.product_details'
defaultMessage='WSO2 API-M v4.2.0 | © 2023 WSO2 LLC'
defaultMessage='WSO2 API-M v4.3.0 | © 2024 WSO2 LLC'
/>
</Typography>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe("Enable External Dev Portal", () => {
it.only("Configure Sample API for External Dev Portal" , () => {
cy.loginToPublisher(testUsers.carbonAdmin.username, testUsers.carbonAdmin.password);
cy.visit(`/publisher/apis`);
cy.contains('WSO2 API-M v4.2.0');
cy.contains('WSO2 API-M v4.3.0');
cy.wait(5000);
cy.get("body").then($body => {
if ($body.find("#itest-apis-welcome-msg").length > 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe("Deploy sample api", () => {
},
}, () => {
cy.visit(`/publisher/apis`);
cy.contains('WSO2 API-M v4.2.0');
cy.contains('WSO2 API-M v4.3.0');
cy.wait(5000);
cy.get("body").then($body => {
if ($body.find("#itest-apis-welcome-msg").length > 0) {
Expand Down
2 changes: 1 addition & 1 deletion tests/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ Cypress.Commands.add('publishSolaceApi', (apiName = null) => {

cy.visit(`${Utils.getAppOrigin()}/publisher/apis`);

cy.contains('WSO2 API-M v4.2.0');
cy.contains('WSO2 API-M v4.3.0');
cy.wait(5000);
cy.get("body").then($body => {
if ($body.find("#itest-apis-welcome-msg").length > 0) {
Expand Down
Loading