microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/appCenterStrings.ts
19lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. |
| 3 | |
| 4 | export class ACStrings { |
| 5 | public static UserMustSignIn: string = "You are signed out. Please login to App Center"; |
| 6 | public static SelectLoginTypeMsg: string = "Please select the way you would like to login to AppCenter"; |
| 7 | public static PleaseProvideToken: string = "Please provide token to authenticate"; |
| 8 | public static PleaseLoginViaBrowser: string = "Please login to AppCenter in the browser window we will open, then enter your token from the browser to vscode"; |
| 9 | public static UserLoggedOutMsg: string = "Successfully logged out from App Center"; |
| 10 | public static UserIsNotLoggedInMsg: string = "You are not logged in to App Center"; |
| 11 | public static LogoutPrompt: string = "Please execute logout to signoff from App Center"; |
| 12 | |
| 13 | public static YouAreLoggedInMsg: (name: string) => string = (name: string) => { |
| 14 | return `You are logged in to App Center as ${name}`; |
| 15 | } |
| 16 | public static YourCurrentAppMsg: (appName: string) => string = (appName: string) => { |
| 17 | return `Your current app is ${appName}`; |
| 18 | } |
| 19 | } |