File size: 2,608 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import type { TranslationStrings } from '../types';

const files: TranslationStrings = {
  'files.title': 'Soubory',
  'files.pageTitle': 'Soubory a dokumenty',
  'files.subtitle': '{count} souborů pro {trip}',
  'files.download': 'Stáhnout',
  'files.openError': 'Soubor nelze otevřít',
  'files.downloadPdf': 'Stáhnout PDF',
  'files.count': '{count} souborů',
  'files.countSingular': '1 soubor',
  'files.uploaded': '{count} nahráno',
  'files.uploadError': 'Nahrávání se nezdařilo',
  'files.dropzone': 'Přetáhněte soubory sem',
  'files.dropzoneHint': 'nebo klikněte pro výběr',
  'files.allowedTypes':
    'Obrázky, PDF, DOC, DOCX, XLS, XLSX, TXT, CSV · Max 50 MB',
  'files.uploading': 'Nahrávání...',
  'files.filterAll': 'Vše',
  'files.filterPdf': 'PDF',
  'files.filterImages': 'Obrázky',
  'files.filterDocs': 'Dokumenty',
  'files.filterCollab': 'Poznámky spolupráce',
  'files.sourceCollab': 'Z poznámek spolupráce',
  'files.empty': 'Zatím žádné soubory',
  'files.emptyHint': 'Nahrajte soubory k vaší cestě',
  'files.openTab': 'Otevřít v nové kartě',
  'files.confirm.delete': 'Opravdu chcete smazat tento soubor?',
  'files.toast.deleted': 'Soubor byl smazán',
  'files.toast.deleteError': 'Nepodařilo se smazat soubor',
  'files.sourcePlan': 'Denní plán',
  'files.sourceBooking': 'Rezervace',
  'files.sourceTransport': 'Doprava',
  'files.attach': 'Přiložit',
  'files.pasteHint': 'Můžete také vložit obrázek ze schránky (Ctrl+V)',
  'files.trash': 'Koš',
  'files.trashEmpty': 'Koš je prázdný',
  'files.emptyTrash': 'Vysypat koš',
  'files.restore': 'Obnovit',
  'files.star': 'Označit hvězdičkou',
  'files.unstar': 'Odebrat hvězdičku',
  'files.assign': 'Přiřadit',
  'files.assignTitle': 'Přiřadit soubor',
  'files.assignPlace': 'Místo',
  'files.assignBooking': 'Rezervace',
  'files.assignTransport': 'Doprava',
  'files.unassigned': 'Nepřiřazeno',
  'files.unlink': 'Zrušit propojení',
  'files.toast.trashed': 'Přesunuto do koše',
  'files.toast.restored': 'Soubor byl obnoven',
  'files.toast.trashEmptied': 'Koš byl vysypán',
  'files.toast.assigned': 'Soubor byl přiřazen',
  'files.toast.assignError': 'Přiřazení se nezdařilo',
  'files.toast.restoreError': 'Obnovení se nezdařilo',
  'files.confirm.permanentDelete':
    'Trvale smazat tento soubor? Tuto akci nelze vrátit.',
  'files.confirm.emptyTrash':
    'Trvale smazat všechny soubory v koši? Tuto akci nelze vrátit.',
  'files.noteLabel': 'Poznámka',
  'files.notePlaceholder': 'Přidat poznámku...',
};
export default files;