Skip to content

Commit

Permalink
Merge pull request #7348 from NipuniBhagya/master
Browse files Browse the repository at this point in the history
Add "mins" label to input fields in session configuration page
  • Loading branch information
NipuniBhagya authored Jan 25, 2025
2 parents f037142 + a3bc39d commit 1a72352
Show file tree
Hide file tree
Showing 16 changed files with 153 additions and 116 deletions.
7 changes: 7 additions & 0 deletions .changeset/nice-sloths-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@wso2is/console": patch
"@wso2is/features": patch
"@wso2is/admin.session-management.v1": patch
---

Fix input label issue in session configuration
5 changes: 5 additions & 0 deletions .changeset/tough-forks-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/i18n": patch
---

Fix input label issue in session configuration
33 changes: 33 additions & 0 deletions features/admin.session-management.v1/pages/session-management.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
*
* WSO2 LLC. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

.session-mgt-form-container {
.ui.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
column-gap: 50px;
}
}

@media (max-width: 768px) {
.session-mgt-form-container {
.ui.grid {
grid-template-columns: 1fr;
}
}
}
211 changes: 96 additions & 115 deletions features/admin.session-management.v1/pages/session-management.tsx

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions modules/i18n/src/models/namespaces/common-ns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export interface CommonNS {
metaAttributes: string;
minimize: string;
minValidation: string;
minutes: string;
more: string;
myAccount: string;
name: string;
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/de-DE/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
"metaAttributes": "Metaattribute",
"minValidation": "Dieser Wert sollte größer oder gleich {{min}} sein.",
"minimize": "Minimieren",
"minutes": "minuten",
"more": "Mehr",
"myAccount": "Mein Konto",
"name": "Name",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/en-US/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
metaAttributes: "Meta Attributes",
minValidation: "This value should be greater than or equal to {{min}}.",
minimize: "Minimize",
minutes: "mins",
more: "More",
myAccount: "My Account",
name: "Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export const governanceConnectors: governanceConnectorsNS = {
},
siftConnector: {
properties: {
name: "Sift Connector",
name: "Fraud Detection",
description: "Integrate Sift to detect and prevent fraudulent account logins.",
siftConnectorApiKey: {
label: "Sift API Key",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/es-ES/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
metaAttributes: "Metaatributos",
minValidation: "Este valor debe ser mayor o igual a {{min}}.",
minimize: "Minimizar",
minutes: "minutos",
more: "más",
myAccount: "Mi cuenta",
name: "Nombre",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/fr-FR/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ export const common: CommonNS = {
metaAttributes: "Méta-attributs",
minValidation: "Cette valeur doit être supérieure ou égale à {{min}}.",
minimize: "Minimiser",
minutes: "mins",
more: "Plus",
myAccount: "Mon compte",
name: "Nom",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/ja-JP/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
"metaAttributes": "メタ属性",
"minValidation": "この値は{{min}}以上である必要があります。",
"minimize": "最小化します",
"minutes": "分",
"more": "もっと",
"myAccount": "私のアカウント",
"name": "名前",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/pt-BR/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
metaAttributes: "Metaatributos",
minValidation: "Este valor deve ser maior ou igual a {{min}}.",
minimize: "Minimizar",
minutes: "minutos",
more: "Mais",
myAccount: "Minha Conta",
name: "Nome",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/pt-PT/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
metaAttributes: "Metaatributos",
minValidation: "Este valor deve ser maior ou igual a {{min}}.",
minimize: "minimizar",
minutes: "minutos",
more: "Mais",
myAccount: "Minha conta",
name: "Nome",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/si-LK/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
metaAttributes: "අතිරේක ගුණාංග",
minValidation: "මෙම අගය {{min}} ට වඩා වැඩි හෝ සමාන විය යුතුය.",
minimize: "අවම කරන්න",
minutes: "මිනිත්තු",
more: "තව",
myAccount: "පුද්ගලික ගිණුම",
name: "නම",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/ta-IN/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ export const common: CommonNS = {
metaAttributes: "மெட்டா பண்புக்கூறுகள்",
minValidation: "இந்த மதிப்பு {{min}} ஐ விட அதிகமாகவோ அல்லது சமமாகவோ இருக்க வேண்டும்.",
minimize: "குறைத்தல்",
minutes: "நிமிடங்கள்",
more: "மேலும்",
myAccount: "என் கணக்கு",
name: "பெயர்",
Expand Down
1 change: 1 addition & 0 deletions modules/i18n/src/translations/zh-CN/portals/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const common: CommonNS = {
"metaAttributes": "元属性",
"minValidation": "该值应大于或等于{{min}}。",
"minimize": "最小化",
"minutes": "分钟",
"more": "更多的",
"myAccount": "我的账户",
"name": "姓名",
Expand Down

0 comments on commit 1a72352

Please sign in to comment.