translations.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. export const translationOverrides = {
  2. cs: {
  3. CALCULATOR: {
  4. blurNone: 'žádné',
  5. getDates: 'VYBRAT DATUM',
  6. getZones: 'ZÍSKAT ZÓNY',
  7. errorLoading: 'Chyba při načítání dat',
  8. errorLoadingDates: 'Nebylo možné načíst seznam možných dat ze serveru. Zkuste to prosím později.',
  9. errorLoadingZones: 'Nebylo možné načíst zóny pole ze serveru. Pravděpodobně z důvodu přílišné oblačnosti snímku. Zkuste jiný datum.',
  10. loading: 'Načítám',
  11. panelHeader: 'Výpočet indexů pole',
  12. selectBlur: 'Vyhlazení hran zón',
  13. selectDate: 'Chci datum',
  14. selectField: 'Vyberte pole kliknutím do mapy. Více polí můžete vybrat podržením klávesy SHIFT.',
  15. selectMore: 'Více polí můžete vybrat podržením klávesy SHIFT',
  16. selectedField: 'Vybráno pole',
  17. selectedFields: 'Vybrána pole',
  18. selectFieldAndIndex: 'Nejprve vyberte index a pole v mapě',
  19. selectIndex: 'Vypočítat index',
  20. selectIndexHint: 'Vyberte z dostupných indexů',
  21. selectQuantiles: 'Počet kvantilů',
  22. zoomIn: 'Pro výběr pole je potřeba mapu přiblížit.'
  23. }
  24. },
  25. en: {
  26. CALCULATOR: {
  27. blurNone: 'none',
  28. getDates: 'GET DATES',
  29. getZones: 'GET ZONES',
  30. errorLoading: 'Error loading data',
  31. errorLoadingDates: 'It was not possible to load available dates from the server. Please, try again later.',
  32. errorLoadingZones: 'It was not possible to load field zones from the server. This is probably due to the high cloudiness of the source image. Try another date.',
  33. loading: 'Loading',
  34. panelHeader: 'Field calculation',
  35. selectBlur: 'Smoothing zone edges',
  36. selectDate: 'I want a date',
  37. selectField: 'Select a field by clicking in the map. You can select more fields by press and holding the SHIFT key.',
  38. selectMore: 'You can select more fields by press and holding the SHIFT key',
  39. selectedField: 'Selected field',
  40. selectedFields: 'Selected fields',
  41. selectFieldAndIndex: 'Select an index and a field in the map to continue',
  42. selectIndex: 'Calculate index',
  43. selectIndexHint: 'Select one of the available indices',
  44. selectQuantiles: 'Quantiles count',
  45. zoomIn: 'In order to select the field, you must zoom the map in.'
  46. }
  47. }
  48. };