Skip to content

Commit

Permalink
Create Czech (cs) translation. (#2084)
Browse files Browse the repository at this point in the history
  • Loading branch information
ridercz authored Jun 21, 2024
1 parent e142132 commit f453276
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/translations/cs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { registerTranslation } from '@shoelace-style/localize';
import type { Translation } from '../utilities/localize.js';

const translation: Translation = {
$code: 'cs',
$name: 'Čeština',
$dir: 'ltr',

carousel: 'Karusel',
clearEntry: 'Smazat položku',
close: 'Zavřít',
copied: 'Zkopírováno',
copy: 'Kopírovat',
currentValue: 'Současná hodnota',
error: 'Chyba',
goToSlide: (slide, count) => `Přejít na slide ${slide} z ${count}`,
hidePassword: 'Skrýt heslo',
loading: 'Nahrává se',
nextSlide: 'Další slide',
numOptionsSelected: num => {
if (num === 0) return 'Nejsou vybrány žádné možnosti';
if (num === 1) return 'Je vybrána jedna možnost';
return `Počet vybraných možností: ${num}`;
},
previousSlide: 'Předchozí slide',
progress: 'Průběh',
remove: 'Odstranit',
resize: 'Změnit velikost',
scrollToEnd: 'Scrollovat na konec',
scrollToStart: 'Scrollovat na začátek',
selectAColorFromTheScreen: 'Vybrat barvu z obrazovky',
showPassword: 'Zobrazit heslo',
slideNum: slide => `Slide ${slide}`,
toggleColorFormat: 'Přepnout formát barvy'
};

registerTranslation(translation);

export default translation;

0 comments on commit f453276

Please sign in to comment.