Skip to content

Added czech translation. #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 163 additions & 0 deletions src/lang/cs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
/**
* Czech translate
* Aleš Nejdr - mige
* @type Object
*/
const cs = {
btn: {
about: 'O aplikaci',
back: 'Zpět',
cancel: 'Zrušit',
clear: 'Vymazat',
copy: 'Kopírovat',
cut: 'Vyjmout',
delete: 'Smazat',
edit: 'Upravit',
forward: 'Vpřed',
folder: 'Nová složka',
file: 'Nový soubor',
fullScreen: 'Celá obrazovka',
grid: 'Mřížka',
paste: 'Vložit',
refresh: 'Obnovit',
submit: 'Odeslat',
table: 'Tabulka',
upload: 'Nahrát',
uploadSelect: 'Vybrat soubory',
},
clipboard: {
actionType: 'Typ',
copy: 'Kopírovat',
cut: 'Vyjmout',
none: 'Nic nevybráno',
title: 'Schránka',
},
contextMenu: {
copy: 'Kopírovat',
cut: 'Vyjmout',
delete: 'Smazat',
download: 'Stáhnout',
info: 'Vybráno:',
open: 'Otevřit',
paste: 'Vložit',
properties: 'Vlastnosti',
rename: 'Přejmenovat',
select: 'Vybrat',
view: 'Zobrazit',
zip: 'Zabalit (Zip)',
unzip: 'Rozbalit (Zip)',
edit: 'Upravit',
audioPlay: 'Přehrát',
videoPlay: 'Přehrát',
},
info: {
directories: 'Složky:',
files: 'Soubory:',
selected: 'Vybráno:',
selectedSize: 'Velikost souborů:',
size: 'Velikost souborů:',
},
manager: {
table: {
date: 'Změněno',
folder: 'Složka',
name: 'Název',
size: 'Velikost',
type: 'Typ',
},
},
modal: {
about: {
developer: 'Vývojář',
name: 'Laravel File Manager',
title: 'O aplikaci',
version: 'Verze',
},
delete: {
noSelected: 'Nic nevybráno!',
title: 'Smazat',
},
newFile: {
fieldName: 'Název souboru',
fieldFeedback: 'Soubor již existuje!',
title: 'Vytvořit nový soubor',
},
newFolder: {
fieldName: 'Název složky',
fieldFeedback: 'Složka již existuje!',
title: 'Vytvořit novou složku',
},
preview: {
title: 'Náhled',
},
properties: {
disk: 'Disk',
modified: 'Změněno',
name: 'Název',
path: 'Cesta',
size: 'Velikost',
title: 'Vlastnosti',
type: 'Typ',
url: 'URL',
access: 'Přístup',
access_0: 'Přístup odepřen',
access_1: 'Pouze ke čtení',
access_2: 'Čtení a zápis',
},
rename: {
directoryExist: 'Složka již existuje',
fieldName: 'Vložte nové jméno',
fieldFeedback: 'Neplatné jméno',
fileExist: 'Soubor již existuje',
title: 'Přejmenovat',
},
status: {
noErrors: 'Žádná chyba!',
title: 'Stav',
},
upload: {
ifExist: 'Pokud soubor již existuje:',
noSelected: 'Nevybrány žádné soubory!',
overwrite: 'Přepsat!',
selected: 'Vybráno:',
size: 'Velikost:',
skip: 'Přeskočit',
title: 'Nahrát soubory',
},
editor: {
title: 'Editor',
},
audioPlayer: {
title: 'Audio přehrávač',
},
videoPlayer: {
title: 'Video přehrávač',
},
zip: {
title: 'Vytvořit archiv',
fieldName: 'Název archivu',
fieldFeedback: 'Archiv již existuje!',
},
unzip: {
title: 'Rozbalit archiv',
fieldName: 'Název složky',
fieldRadioName: 'Rozbalit do:',
fieldRadio1: 'Do aktuální složky',
fieldRadio2: 'Do nové složky',
fieldFeedback: 'Složka již existuje!',
warning: 'Pozor! Pokud se jména shodují, budou soubory přepsány!',
},
cropper: {
title: 'Oříznutí',
apply: 'Aplikovat',
reset: 'Obnovit',
save: 'Uložit',
},
},
notifications: {
cutToClipboard: 'Vyjmuto do schránky!',
copyToClipboard: 'Zkopírováno do schránky!',
},
};

export default cs;
2 changes: 2 additions & 0 deletions src/store/settings/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import ru from './../../lang/ru';
import en from '../../lang/en';
import ar from './../../lang/ar';
import sr from './../../lang/sr';
import cs from './../../lang/cs';

export default {
namespaced: true,
Expand Down Expand Up @@ -40,6 +41,7 @@ export default {
en: Object.freeze(en),
ar: Object.freeze(ar),
sr: Object.freeze(sr),
cs: Object.freeze(cs),
},

// Context menu items
Expand Down