obsidian-sample-plugin/src/lang/locale/en.ts

20 lines
901 B
TypeScript

// English
export default {
'settings.title': 'ChessMate Settings',
'settings.boardColor': 'Board Color',
'settings.boardColorDesc': 'Choose the color for the chess board',
'settings.maxBoardSize': 'Max Board Size',
'settings.maxBoardSizeDesc': 'Set the maximum size of the chess board (in pixels)',
'settings.boardTheme': 'Board Theme',
'settings.boardThemeDesc': 'Choose the color theme for the chess board',
'settings.themeBrown': 'Brown',
'settings.themeBlue': 'Blue',
'settings.themeGreen': 'Green',
'settings.pieceTheme': 'Piece Theme',
'settings.pieceThemeDesc': 'Choose the style of chess pieces',
'settings.showMoves': 'Show Moves',
'settings.showMovesDesc': 'Show possible moves when selecting a piece',
'settings.boardSize': 'Board Size',
'settings.boardSizeDesc': 'Adjust the size of the chess board (in pixels)'
} as const;