Spaces:
Sleeping
Sleeping
File size: 621 Bytes
98fbc6d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import type { TranslationStrings } from '../types';
const share: TranslationStrings = {
'share.linkTitle': 'Veřejný odkaz',
'share.linkHint':
'Vytvořte odkaz, kterým si může kdokoli prohlédnout tuto cestu bez přihlášení. Pouze pro čtení — úpravy nejsou možné.',
'share.createLink': 'Vytvořit odkaz',
'share.deleteLink': 'Smazat odkaz',
'share.createError': 'Nepodařilo se vytvořit odkaz',
'share.permMap': 'Mapa a plán',
'share.permBookings': 'Rezervace',
'share.permPacking': 'Balení',
'share.permBudget': 'Rozpočet',
'share.permCollab': 'Chat',
};
export default share;
|