shoelace/src/translations/en-gb.ts

28 wiersze
717 B
TypeScript
Czysty Zwykły widok Historia

import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'en-GB',
$name: 'English (United Kingdom)',
$dir: 'ltr',
clearEntry: 'Clear entry',
close: 'Close',
copy: 'Copy',
currentValue: 'Current value',
hidePassword: 'Hide password',
loading: 'Loading',
progress: 'Progress',
remove: 'Remove',
resize: 'Resize',
scrollToEnd: 'Scroll to end',
scrollToStart: 'Scroll to start',
selectAColorFromTheScreen: 'Select a colour from the screen',
showPassword: 'Show password',
toggleColorFormat: 'Toggle colour format'
};
registerTranslation(translation);
export default translation;