Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectManager/ProjectManager.Frontend/src/app/entities/language.ts

55 lines
1.0 KiB
TypeScript

export interface Language {
// Navigation
selectLang: string,
design: string,
profileSettings: string,
dashboard: string,
logout: string,
addProject: string,
projects: string,
running: string,
stopped: string,
// Dashboard
welcome: string,
noProjects: string,
open: string,
edit: string,
delete: string,
// Popups
name: string,
cancel: string,
createProject: string,
editProject: string
// Profile
profile: string,
profileSub: string,
email: string,
username: string,
password: string,
passwordRepeat: string,
updateAccount: string,
deleteAccount: string,
saveChanges: string,
updateFailed: string,
accountUpdated: string,
deleteQuestion: string,
deleteWarning: string,
accountDeleted: string,
submit: string,
// Login / Register
login: string,
register: string,
noAccount: string,
alreadyAccount: string,
valueToLong: string,
validEmail: string,
isRequired: string,
emailOrPasswordWrong: string,
passwordsDontMatch: string,
registerFailed: string,
}