shoelace/src/translations/fr.ts

22 wiersze
597 B
TypeScript
Czysty Zwykły widok Historia

2021-12-07 15:34:01 +00:00
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'fr',
$name: 'Français',
$dir: 'ltr',
2021-12-07 15:35:07 +00:00
close: 'Fermer',
2021-12-07 15:34:01 +00:00
copy: 'Copier',
progress: 'Progrès',
2021-12-23 16:23:14 +00:00
resize: 'Redimensionner',
2021-12-07 15:35:07 +00:00
scroll_to_end: `Faire défiler jusqu'à la fin`,
scroll_to_start: `Faire défiler jusqu'au début`,
select_a_color_from_the_screen: `Sélectionnez une couleur à l'écran`,
2021-12-07 15:34:01 +00:00
toggle_color_format: 'Changer le format de couleur'
};
registerTranslation(translation);
export default translation;