Skip to content

Commit

Permalink
Merge branch 'localize' of https://github.com/shoelace-style/shoelace
Browse files Browse the repository at this point in the history
…into localize
  • Loading branch information
claviska committed Dec 7, 2021
2 parents f3a1cf8 + 9dfac1d commit 1645c21
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/translations/de_CH.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';

const translation: Translation = {
$code: 'de_CH',
$name: 'Deutsch (Schweiz)',
$dir: 'ltr',

close: "Schliessen",
copy: 'Kopieren',
progress: 'Fortschritt',
scroll_to_end: 'Zum Ende scrollen',
scroll_to_start: 'Zum Anfang scrollen',
select_a_color_from_the_screen: "Wähle eine Farbe vom Bildschirm",
toggle_color_format: 'Farbformat umschalten'
};

registerTranslation(translation);

export default translation;
20 changes: 20 additions & 0 deletions src/translations/fr.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';

const translation: Translation = {
$code: 'fr',
$name: 'Français',
$dir: 'ltr',

close: "Fermer",
copy: 'Copier',
progress: 'Progrès',
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",
toggle_color_format: 'Changer le format de couleur'
};

registerTranslation(translation);

export default translation;

0 comments on commit 1645c21

Please sign in to comment.