You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/constants/messages.js
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,13 @@ export const messages = {
21
21
tokenExchangeHintText: t(APP_ID,'When enabled, the app will try to obtain a token for the given audience from the identity provider. If disabled, it will use the access token obtained during the login process.'),
22
22
opRequiredVersionAndPlanHint: t(APP_ID,'Requires OpenProject version {version} (or higher) and an active Corporate plan.',{version: OPENPROJECT_VERSION}),
23
23
pleaseSelectProject: t(APP_ID,'Please select a project'),
24
+
noMachingWorkProjectsFound: t(APP_ID,'No matching work projects found'),
25
+
noMachingStausFound: t(APP_ID,'No matching status found'),
26
+
noMachingTypeFound: t(APP_ID,'No matching type found'),
appNotEnabledOrUnsupported: (app,version)=>t(APP_ID,'This feature requires version {version} (or higher) of "{app}" app. Please install or update the app.',{ app, version }),
28
32
configureOIDCProviders: (settingsLink)=>t(APP_ID,'You can configure OIDC providers in the {settingsLink}',{ settingsLink },null,{escape: false,sanitize: false}),
])('should show $expectedMessage when project is set and there is no $fieldName found in search query',async({fieldName,inputSelector, resultSelector })=>{
725
+
])('should show $expectedMessage when project is set and there is no $fieldName found in search query',async({ inputSelector, resultSelector, expectedMessage})=>{
0 commit comments