-
-
Notifications
You must be signed in to change notification settings - Fork 851
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Czech (cs) translation. (#2084)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |