@geotab/zenith 3.10.0-beta.7 → 3.11.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/dist/calendar/calendar.js +7 -4
- package/dist/card/components/title.js +4 -1
- package/dist/card/components/titleLink.js +5 -2
- package/dist/chart/barChart/getDefaultOptions.d.ts +2 -1
- package/dist/chart/barChart/getDefaultOptions.js +5 -2
- package/dist/chart/barChart.js +6 -4
- package/dist/chart/lineChart/getDefaultOptions.d.ts +2 -1
- package/dist/chart/lineChart/getDefaultOptions.js +5 -2
- package/dist/chart/lineChart.js +4 -2
- package/dist/checkboxListWithAction/checkboxListWithAction.js +4 -1
- package/dist/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +4 -1
- package/dist/commonStyles/pillStyles/pillContent.less +13 -14
- package/dist/commonStyles/pillStyles/pillStyles.less +4 -5
- package/dist/commonStyles/pillStyles/pillTextContent.less +2 -2
- package/dist/commonStyles/typography/typography.less +579 -19
- package/dist/controlledPopup/controlledPopup.d.ts +1 -0
- package/dist/controlledPopup/controlledPopup.js +3 -1
- package/dist/dataGrid/cell/cell.d.ts +2 -1
- package/dist/dataGrid/cell/cell.js +2 -2
- package/dist/dataGrid/dataGrid.js +7 -4
- package/dist/dataGrid/listColumn.d.ts +2 -0
- package/dist/dataGrid/row/row.d.ts +2 -1
- package/dist/dataGrid/row/row.js +13 -9
- package/dist/dataGrid/withFlexibleColumns/components/columnSettingsList.js +2 -1
- package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.d.ts +4 -0
- package/dist/dateRangeInner/dateRangeInner.js +5 -2
- package/dist/dateRangeRaw/dateRangeRaw.js +5 -2
- package/dist/dateRangeRaw/utils/parseLabel.js +1 -1
- package/dist/dropdownRaw/dropdownRaw.js +12 -6
- package/dist/fileUpload/components/dropZoneContent.js +100 -100
- package/dist/fileUpload/fileUpload.js +100 -100
- package/dist/filters/components/filtersSearchList.js +4 -1
- package/dist/filtersBar/filtersContainer/filtersContainer.js +62 -61
- package/dist/formStepperButtons/formStepperButtons.js +4 -1
- package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -1
- package/dist/groupsFilterRaw/groupsFilterInitialState.js +4 -1
- package/dist/header/headerBack.js +4 -1
- package/dist/icons/iconAlignLeft.js +1 -3
- package/dist/icons/iconAlignmentLeft.js +1 -3
- package/dist/icons/iconAlignmentRight.js +1 -3
- package/dist/icons/iconArrowBottomLeft.js +1 -3
- package/dist/icons/iconArrowBottomRight.js +1 -3
- package/dist/icons/iconArrowLeftPath.js +1 -3
- package/dist/icons/iconArrowRight.js +1 -3
- package/dist/icons/iconArrowRightCircle.js +1 -3
- package/dist/icons/iconArrowRightPath.js +1 -3
- package/dist/icons/iconArrowTopLeft.js +1 -3
- package/dist/icons/iconArrowTopRight.js +1 -3
- package/dist/icons/iconChevronDoubleRight.js +1 -3
- package/dist/icons/iconChevronRight.js +1 -3
- package/dist/icons/iconChevronRightSmall.js +1 -3
- package/dist/icons/iconCornerDownLeft.js +1 -3
- package/dist/icons/iconCornerDownRight.js +1 -3
- package/dist/icons/iconCornerLeftDown.js +1 -3
- package/dist/icons/iconCornerLeftUp.js +1 -3
- package/dist/icons/iconCornerRightDown.js +1 -3
- package/dist/icons/iconCornerRightUp.js +1 -3
- package/dist/icons/iconCornerUpLeft.js +1 -3
- package/dist/icons/iconCornerUpRight.js +1 -3
- package/dist/index.css +3257 -2925
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/lineChartMini/lineChartMini.js +15 -3
- package/dist/list/itemData/itemDataInternal.js +4 -1
- package/dist/list/list.d.ts +1 -0
- package/dist/list/list.js +2 -2
- package/dist/list/listItem/listItem.d.ts +1 -3
- package/dist/list/listItem/listItem.js +6 -5
- package/dist/menu/components/controlledMenuList/controlledMenuList.d.ts +27 -0
- package/dist/menu/components/controlledMenuList/controlledMenuList.js +126 -0
- package/dist/menu/components/createControlledMenuList.d.ts +37 -0
- package/dist/menu/components/createControlledMenuList.js +55 -0
- package/dist/menu/components/createMenuItem.d.ts +67 -0
- package/dist/menu/components/createMenuItem.js +97 -0
- package/dist/menu/components/menuButton.js +12 -3
- package/dist/menu/components/menuItem.d.ts +1 -2
- package/dist/menu/components/menuItem.js +20 -74
- package/dist/menu/contexts/usePathContext.d.ts +2 -0
- package/dist/menu/contexts/usePathContext.js +9 -0
- package/dist/menu/controlledMenu.js +8 -175
- package/dist/menu/utils/buildMenuContent.d.ts +2 -0
- package/dist/menu/utils/buildMenuContent.js +38 -0
- package/dist/menu/utils/findContent.d.ts +2 -2
- package/dist/menu/utils/findContent.js +4 -3
- package/dist/menu/utils/getItemLabel.d.ts +2 -0
- package/dist/menu/utils/getItemLabel.js +8 -0
- package/dist/menu/utils/getSafeRel.d.ts +1 -0
- package/dist/menu/utils/getSafeRel.js +14 -0
- package/dist/menu/utils/isMenuItem.d.ts +2 -0
- package/dist/menu/utils/isMenuItem.js +13 -0
- package/dist/menu/utils/isSafeHref.d.ts +1 -0
- package/dist/menu/utils/isSafeHref.js +10 -0
- package/dist/menu/utils/normalizeSeparators.d.ts +2 -0
- package/dist/menu/utils/normalizeSeparators.js +23 -0
- package/dist/menu/utils/resolveKeys.d.ts +12 -0
- package/dist/menu/utils/resolveKeys.js +22 -0
- package/dist/menu/utils/useLastValidSheet.d.ts +7 -0
- package/dist/menu/utils/useLastValidSheet.js +30 -0
- package/dist/menu/utils/useMenuItemCore.d.ts +31 -0
- package/dist/menu/utils/useMenuItemCore.js +54 -0
- package/dist/menu/utils/useMenuItemKeyboardNav.d.ts +2 -0
- package/dist/menu/utils/useMenuItemKeyboardNav.js +15 -0
- package/dist/menu/utils/useMenuListKeyboardNav.d.ts +12 -0
- package/dist/menu/utils/useMenuListKeyboardNav.js +77 -0
- package/dist/menu/utils/useMenuPath.d.ts +6 -0
- package/dist/menu/utils/useMenuPath.js +35 -0
- package/dist/nav/navItem/navItem.js +10 -5
- package/dist/nav/navSection/navSection.js +7 -5
- package/dist/pagination/paginationArrow.js +10 -3
- package/dist/radioGroupRaw/radioGroupRaw.js +2 -1
- package/dist/rangeRaw/rangeRaw.js +0 -1
- package/dist/selectList/selectList.helpers.d.ts +1 -1
- package/dist/selectList/selectList.helpers.js +29 -4
- package/dist/selectList/selectList.js +3 -1
- package/dist/selectList/selectList.reducer.js +1 -2
- package/dist/selectList/selectListItem.js +4 -1
- package/dist/sortControl/sortControl.js +59 -4
- package/dist/table/children/useTableChildren.d.ts +1 -1
- package/dist/table/children/useTableChildren.js +3 -3
- package/dist/table/flexible/columnsList.js +4 -2
- package/dist/table/selectable/useSelectableRows.d.ts +8 -0
- package/dist/table/selectable/useSelectableRows.js +14 -6
- package/dist/table/table.js +1 -7
- package/dist/tabs/tabs.js +60 -58
- package/dist/tabs/tabsTestHelper.js +2 -2
- package/dist/timePickerRaw/timePickerRaw.js +1 -1
- package/dist/toggleButtonRaw/toggleButtonRaw.js +5 -2
- package/dist/utils/localization/translations/ar.json +3 -1
- package/dist/utils/localization/translations/cs.json +9 -5
- package/dist/utils/localization/translations/da-DK.json +9 -5
- package/dist/utils/localization/translations/de.json +9 -5
- package/dist/utils/localization/translations/en.json +5 -1
- package/dist/utils/localization/translations/es.json +9 -5
- package/dist/utils/localization/translations/fi-FI.json +9 -5
- package/dist/utils/localization/translations/fr-FR.json +9 -5
- package/dist/utils/localization/translations/fr.json +9 -5
- package/dist/utils/localization/translations/hu-HU.json +9 -5
- package/dist/utils/localization/translations/id.json +9 -5
- package/dist/utils/localization/translations/it.json +9 -5
- package/dist/utils/localization/translations/ja.json +9 -5
- package/dist/utils/localization/translations/ko-KR.json +9 -5
- package/dist/utils/localization/translations/ms.json +9 -5
- package/dist/utils/localization/translations/nb-NO.json +9 -5
- package/dist/utils/localization/translations/nl.json +9 -5
- package/dist/utils/localization/translations/pl.json +9 -5
- package/dist/utils/localization/translations/pt-BR.json +9 -5
- package/dist/utils/localization/translations/pt-PT.json +9 -5
- package/dist/utils/localization/translations/ro-RO.json +9 -5
- package/dist/utils/localization/translations/sk-SK.json +9 -5
- package/dist/utils/localization/translations/sv.json +9 -5
- package/dist/utils/localization/translations/th.json +9 -5
- package/dist/utils/localization/translations/tr.json +9 -5
- package/dist/utils/localization/translations/zh-Hans.json +9 -5
- package/dist/utils/localization/translations/zh-TW.json +9 -5
- package/dist/utils/localization/useDirectionalIcon.d.ts +3 -0
- package/dist/utils/localization/useDirectionalIcon.js +9 -0
- package/dist/utils/positioningUtils/alignments.d.ts +2 -2
- package/dist/utils/positioningUtils/alignments.js +2 -2
- package/dist/utils/positioningUtils/calculatePosition.js +4 -6
- package/esm/calendar/calendar.js +7 -4
- package/esm/card/components/title.js +4 -1
- package/esm/card/components/titleLink.js +5 -2
- package/esm/chart/barChart/getDefaultOptions.d.ts +2 -1
- package/esm/chart/barChart/getDefaultOptions.js +5 -2
- package/esm/chart/barChart.js +6 -4
- package/esm/chart/lineChart/getDefaultOptions.d.ts +2 -1
- package/esm/chart/lineChart/getDefaultOptions.js +5 -2
- package/esm/chart/lineChart.js +4 -2
- package/esm/checkboxListWithAction/checkboxListWithAction.js +4 -1
- package/esm/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +4 -1
- package/esm/controlledPopup/controlledPopup.d.ts +1 -0
- package/esm/controlledPopup/controlledPopup.js +3 -1
- package/esm/dataGrid/cell/cell.d.ts +2 -1
- package/esm/dataGrid/cell/cell.js +2 -2
- package/esm/dataGrid/dataGrid.js +7 -4
- package/esm/dataGrid/listColumn.d.ts +2 -0
- package/esm/dataGrid/row/row.d.ts +2 -1
- package/esm/dataGrid/row/row.js +13 -9
- package/esm/dataGrid/withFlexibleColumns/components/columnSettingsList.js +2 -1
- package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.d.ts +4 -0
- package/esm/dateRangeInner/dateRangeInner.js +5 -2
- package/esm/dateRangeRaw/dateRangeRaw.js +5 -2
- package/esm/dateRangeRaw/utils/parseLabel.js +1 -1
- package/esm/dropdownRaw/dropdownRaw.js +12 -6
- package/esm/fileUpload/components/dropZoneContent.js +100 -100
- package/esm/fileUpload/fileUpload.js +100 -100
- package/esm/filters/components/filtersSearchList.js +4 -1
- package/esm/filtersBar/filtersContainer/filtersContainer.js +62 -61
- package/esm/formStepperButtons/formStepperButtons.js +4 -1
- package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -1
- package/esm/groupsFilterRaw/groupsFilterInitialState.js +4 -1
- package/esm/header/headerBack.js +4 -1
- package/esm/icons/iconAlignLeft.js +1 -3
- package/esm/icons/iconAlignmentLeft.js +1 -3
- package/esm/icons/iconAlignmentRight.js +1 -3
- package/esm/icons/iconArrowBottomLeft.js +1 -3
- package/esm/icons/iconArrowBottomRight.js +1 -3
- package/esm/icons/iconArrowLeftPath.js +1 -3
- package/esm/icons/iconArrowRight.js +1 -3
- package/esm/icons/iconArrowRightCircle.js +1 -3
- package/esm/icons/iconArrowRightPath.js +1 -3
- package/esm/icons/iconArrowTopLeft.js +1 -3
- package/esm/icons/iconArrowTopRight.js +1 -3
- package/esm/icons/iconChevronDoubleRight.js +1 -3
- package/esm/icons/iconChevronRight.js +1 -3
- package/esm/icons/iconChevronRightSmall.js +1 -3
- package/esm/icons/iconCornerDownLeft.js +1 -3
- package/esm/icons/iconCornerDownRight.js +1 -3
- package/esm/icons/iconCornerLeftDown.js +1 -3
- package/esm/icons/iconCornerLeftUp.js +1 -3
- package/esm/icons/iconCornerRightDown.js +1 -3
- package/esm/icons/iconCornerRightUp.js +1 -3
- package/esm/icons/iconCornerUpLeft.js +1 -3
- package/esm/icons/iconCornerUpRight.js +1 -3
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/lineChartMini/lineChartMini.js +15 -3
- package/esm/list/itemData/itemDataInternal.js +4 -1
- package/esm/list/list.d.ts +1 -0
- package/esm/list/list.js +2 -2
- package/esm/list/listItem/listItem.d.ts +1 -3
- package/esm/list/listItem/listItem.js +6 -5
- package/esm/menu/components/controlledMenuList/controlledMenuList.d.ts +27 -0
- package/esm/menu/components/controlledMenuList/controlledMenuList.js +123 -0
- package/esm/menu/components/createControlledMenuList.d.ts +37 -0
- package/esm/menu/components/createControlledMenuList.js +51 -0
- package/esm/menu/components/createMenuItem.d.ts +67 -0
- package/esm/menu/components/createMenuItem.js +93 -0
- package/esm/menu/components/menuButton.js +12 -3
- package/esm/menu/components/menuItem.d.ts +1 -2
- package/esm/menu/components/menuItem.js +20 -74
- package/esm/menu/contexts/usePathContext.d.ts +2 -0
- package/esm/menu/contexts/usePathContext.js +5 -0
- package/esm/menu/controlledMenu.js +10 -177
- package/esm/menu/utils/buildMenuContent.d.ts +2 -0
- package/esm/menu/utils/buildMenuContent.js +34 -0
- package/esm/menu/utils/findContent.d.ts +2 -2
- package/esm/menu/utils/findContent.js +4 -3
- package/esm/menu/utils/getItemLabel.d.ts +2 -0
- package/esm/menu/utils/getItemLabel.js +4 -0
- package/esm/menu/utils/getSafeRel.d.ts +1 -0
- package/esm/menu/utils/getSafeRel.js +10 -0
- package/esm/menu/utils/isMenuItem.d.ts +2 -0
- package/esm/menu/utils/isMenuItem.js +9 -0
- package/esm/menu/utils/isSafeHref.d.ts +1 -0
- package/esm/menu/utils/isSafeHref.js +6 -0
- package/esm/menu/utils/normalizeSeparators.d.ts +2 -0
- package/esm/menu/utils/normalizeSeparators.js +19 -0
- package/esm/menu/utils/resolveKeys.d.ts +12 -0
- package/esm/menu/utils/resolveKeys.js +18 -0
- package/esm/menu/utils/useLastValidSheet.d.ts +7 -0
- package/esm/menu/utils/useLastValidSheet.js +26 -0
- package/esm/menu/utils/useMenuItemCore.d.ts +31 -0
- package/esm/menu/utils/useMenuItemCore.js +50 -0
- package/esm/menu/utils/useMenuItemKeyboardNav.d.ts +2 -0
- package/esm/menu/utils/useMenuItemKeyboardNav.js +11 -0
- package/esm/menu/utils/useMenuListKeyboardNav.d.ts +12 -0
- package/esm/menu/utils/useMenuListKeyboardNav.js +73 -0
- package/esm/menu/utils/useMenuPath.d.ts +6 -0
- package/esm/menu/utils/useMenuPath.js +31 -0
- package/esm/nav/navItem/navItem.js +10 -5
- package/esm/nav/navSection/navSection.js +7 -5
- package/esm/pagination/paginationArrow.js +10 -3
- package/esm/radioGroupRaw/radioGroupRaw.js +2 -1
- package/esm/rangeRaw/rangeRaw.js +0 -1
- package/esm/selectList/selectList.helpers.d.ts +1 -1
- package/esm/selectList/selectList.helpers.js +29 -4
- package/esm/selectList/selectList.js +3 -1
- package/esm/selectList/selectList.reducer.js +1 -2
- package/esm/selectList/selectListItem.js +4 -1
- package/esm/sortControl/sortControl.js +59 -4
- package/esm/table/children/useTableChildren.d.ts +1 -1
- package/esm/table/children/useTableChildren.js +3 -3
- package/esm/table/flexible/columnsList.js +4 -2
- package/esm/table/selectable/useSelectableRows.d.ts +8 -0
- package/esm/table/selectable/useSelectableRows.js +14 -6
- package/esm/table/table.js +1 -7
- package/esm/tabs/tabs.js +60 -58
- package/esm/tabs/tabsTestHelper.js +2 -2
- package/esm/testHelpers/mockAbsoluteAlignment.d.ts +1 -0
- package/esm/testHelpers/mockAbsoluteAlignment.js +10 -0
- package/esm/timePickerRaw/timePickerRaw.js +1 -1
- package/esm/toggleButtonRaw/toggleButtonRaw.js +5 -2
- package/esm/utils/localization/translations/ar.json +3 -1
- package/esm/utils/localization/translations/cs.json +9 -5
- package/esm/utils/localization/translations/da-DK.json +9 -5
- package/esm/utils/localization/translations/de.json +9 -5
- package/esm/utils/localization/translations/en.json +5 -1
- package/esm/utils/localization/translations/es.json +9 -5
- package/esm/utils/localization/translations/fi-FI.json +9 -5
- package/esm/utils/localization/translations/fr-FR.json +9 -5
- package/esm/utils/localization/translations/fr.json +9 -5
- package/esm/utils/localization/translations/hu-HU.json +9 -5
- package/esm/utils/localization/translations/id.json +9 -5
- package/esm/utils/localization/translations/it.json +9 -5
- package/esm/utils/localization/translations/ja.json +9 -5
- package/esm/utils/localization/translations/ko-KR.json +9 -5
- package/esm/utils/localization/translations/ms.json +9 -5
- package/esm/utils/localization/translations/nb-NO.json +9 -5
- package/esm/utils/localization/translations/nl.json +9 -5
- package/esm/utils/localization/translations/pl.json +9 -5
- package/esm/utils/localization/translations/pt-BR.json +9 -5
- package/esm/utils/localization/translations/pt-PT.json +9 -5
- package/esm/utils/localization/translations/ro-RO.json +9 -5
- package/esm/utils/localization/translations/sk-SK.json +9 -5
- package/esm/utils/localization/translations/sv.json +9 -5
- package/esm/utils/localization/translations/th.json +9 -5
- package/esm/utils/localization/translations/tr.json +9 -5
- package/esm/utils/localization/translations/zh-Hans.json +9 -5
- package/esm/utils/localization/translations/zh-TW.json +9 -5
- package/esm/utils/localization/useDirectionalIcon.d.ts +3 -0
- package/esm/utils/localization/useDirectionalIcon.js +5 -0
- package/esm/utils/positioningUtils/alignments.d.ts +2 -2
- package/esm/utils/positioningUtils/alignments.js +2 -2
- package/esm/utils/positioningUtils/calculatePosition.js +4 -6
- package/package.json +123 -122
|
@@ -4,113 +4,113 @@ import { Button } from "../../button/button";
|
|
|
4
4
|
import { ButtonType } from "../../button/buttonType";
|
|
5
5
|
import { ImageCloudUpload } from "../../images/imageCloudUpload";
|
|
6
6
|
import { ImageTapToUpload } from "../../images/imageTapToUpload";
|
|
7
|
-
injectString("cs", "Tap to add files", "
|
|
8
|
-
injectString("da-DK", "Tap to add files", "
|
|
9
|
-
injectString("de", "Tap to add files", "
|
|
7
|
+
injectString("cs", "Tap to add files", "Klepnut\xEDm p\u0159idejte soubory");
|
|
8
|
+
injectString("da-DK", "Tap to add files", "Tryk for at tilf\xF8je filer");
|
|
9
|
+
injectString("de", "Tap to add files", "Tippen, um Dateien hinzuzuf\xFCgen");
|
|
10
10
|
injectString("en", "Tap to add files", "Tap to add files");
|
|
11
|
-
injectString("es", "Tap to add files", "
|
|
12
|
-
injectString("fi-FI", "Tap to add files", "
|
|
13
|
-
injectString("fr", "Tap to add files", "
|
|
14
|
-
injectString("fr-FR", "Tap to add files", "
|
|
15
|
-
injectString("hu-HU", "Tap to add files", "
|
|
16
|
-
injectString("id", "Tap to add files", "
|
|
17
|
-
injectString("it", "Tap to add files", "
|
|
18
|
-
injectString("ja", "Tap to add files", "
|
|
19
|
-
injectString("ko-KR", "Tap to add files", "
|
|
20
|
-
injectString("ms", "Tap to add files", "
|
|
21
|
-
injectString("nb-NO", "Tap to add files", "
|
|
22
|
-
injectString("nl", "Tap to add files", "
|
|
23
|
-
injectString("pl", "Tap to add files", "
|
|
24
|
-
injectString("pt-BR", "Tap to add files", "
|
|
25
|
-
injectString("pt-PT", "Tap to add files", "
|
|
26
|
-
injectString("sk-SK", "Tap to add files", "
|
|
27
|
-
injectString("sv", "Tap to add files", "
|
|
28
|
-
injectString("th", "Tap to add files", "
|
|
29
|
-
injectString("tr", "Tap to add files", "
|
|
30
|
-
injectString("zh-Hans", "Tap to add files", "
|
|
31
|
-
injectString("zh-TW", "Tap to add files", "
|
|
32
|
-
injectString("ro-RO", "Tap to add files", "
|
|
11
|
+
injectString("es", "Tap to add files", "Toca para agregar archivos");
|
|
12
|
+
injectString("fi-FI", "Tap to add files", "Lis\xE4\xE4 tiedostoja napauttamalla");
|
|
13
|
+
injectString("fr", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
14
|
+
injectString("fr-FR", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
15
|
+
injectString("hu-HU", "Tap to add files", "F\xE1jlok hozz\xE1ad\xE1s\xE1hoz koppintson");
|
|
16
|
+
injectString("id", "Tap to add files", "Ketuk untuk menambahkan file");
|
|
17
|
+
injectString("it", "Tap to add files", "Tocca per aggiungere file");
|
|
18
|
+
injectString("ja", "Tap to add files", "\u30BF\u30C3\u30D7\u3057\u3066\u30D5\u30A1\u30A4\u30EB\u3092\u8FFD\u52A0");
|
|
19
|
+
injectString("ko-KR", "Tap to add files", "\uD0ED\uD558\uC5EC \uD30C\uC77C \uCD94\uAC00");
|
|
20
|
+
injectString("ms", "Tap to add files", "Ketik untuk menambah fail");
|
|
21
|
+
injectString("nb-NO", "Tap to add files", "Trykk for \xE5 legge til filer");
|
|
22
|
+
injectString("nl", "Tap to add files", "Tik om bestanden toe te voegen");
|
|
23
|
+
injectString("pl", "Tap to add files", "Dotknij, aby doda\u0107 pliki");
|
|
24
|
+
injectString("pt-BR", "Tap to add files", "Toque para adicionar arquivos");
|
|
25
|
+
injectString("pt-PT", "Tap to add files", "Toque para adicionar ficheiros");
|
|
26
|
+
injectString("sk-SK", "Tap to add files", "Klepnut\xEDm pridajte s\xFAbory");
|
|
27
|
+
injectString("sv", "Tap to add files", "Tryck f\xF6r att l\xE4gga till filer");
|
|
28
|
+
injectString("th", "Tap to add files", "\u0E41\u0E15\u0E30\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E44\u0E1F\u0E25\u0E4C");
|
|
29
|
+
injectString("tr", "Tap to add files", "Dosya eklemek i\xE7in dokunun");
|
|
30
|
+
injectString("zh-Hans", "Tap to add files", "\u70B9\u51FB\u6DFB\u52A0\u6587\u4EF6");
|
|
31
|
+
injectString("zh-TW", "Tap to add files", "\u9EDE\u9078\u4EE5\u65B0\u589E\u6A94\u6848");
|
|
32
|
+
injectString("ro-RO", "Tap to add files", "Atinge\u021Bi pentru a ad\u0103uga fi\u0219iere");
|
|
33
33
|
injectString("ar-SA", "Tap to add files", "\u0627\u0646\u0642\u0631 \u0644\u0625\u0636\u0627\u0641\u0629 \u0645\u0644\u0641\u0627\u062A");
|
|
34
|
-
injectString("cs", "Drag & drop files or", "
|
|
35
|
-
injectString("da-DK", "Drag & drop files or", "
|
|
36
|
-
injectString("de", "Drag & drop files or", "
|
|
34
|
+
injectString("cs", "Drag & drop files or", "P\u0159et\xE1hn\u011Bte soubory nebo");
|
|
35
|
+
injectString("da-DK", "Drag & drop files or", "Tr\xE6k og slip filer eller");
|
|
36
|
+
injectString("de", "Drag & drop files or", "Dateien hierher ziehen oder");
|
|
37
37
|
injectString("en", "Drag & drop files or", "Drag & drop files or");
|
|
38
|
-
injectString("es", "Drag & drop files or", "
|
|
39
|
-
injectString("fi-FI", "Drag & drop files or", "
|
|
40
|
-
injectString("fr", "Drag & drop files or", "
|
|
41
|
-
injectString("fr-FR", "Drag & drop files or", "
|
|
42
|
-
injectString("hu-HU", "Drag & drop files or", "
|
|
43
|
-
injectString("id", "Drag & drop files or", "
|
|
44
|
-
injectString("it", "Drag & drop files or", "
|
|
45
|
-
injectString("ja", "Drag & drop files or", "
|
|
46
|
-
injectString("ko-KR", "Drag & drop files or", "
|
|
47
|
-
injectString("ms", "Drag & drop files or", "
|
|
48
|
-
injectString("nb-NO", "Drag & drop files or", "
|
|
49
|
-
injectString("nl", "Drag & drop files or", "
|
|
50
|
-
injectString("pl", "Drag & drop files or", "
|
|
51
|
-
injectString("pt-BR", "Drag & drop files or", "
|
|
52
|
-
injectString("pt-PT", "Drag & drop files or", "
|
|
53
|
-
injectString("sk-SK", "Drag & drop files or", "
|
|
54
|
-
injectString("sv", "Drag & drop files or", "
|
|
55
|
-
injectString("th", "Drag & drop files or", "
|
|
56
|
-
injectString("tr", "Drag & drop files or", "
|
|
57
|
-
injectString("zh-Hans", "Drag & drop files or", "
|
|
58
|
-
injectString("zh-TW", "Drag & drop files or", "
|
|
59
|
-
injectString("ro-RO", "Drag & drop files or", "
|
|
38
|
+
injectString("es", "Drag & drop files or", "Arrastrar y soltar archivos o");
|
|
39
|
+
injectString("fi-FI", "Drag & drop files or", "Ved\xE4 ja pudota tiedostoja tai");
|
|
40
|
+
injectString("fr", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
41
|
+
injectString("fr-FR", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
42
|
+
injectString("hu-HU", "Drag & drop files or", "H\xFAzza ide a f\xE1jlokat, vagy");
|
|
43
|
+
injectString("id", "Drag & drop files or", "Seret & lepas file atau");
|
|
44
|
+
injectString("it", "Drag & drop files or", "Trascina e rilascia i file o");
|
|
45
|
+
injectString("ja", "Drag & drop files or", "\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0\uFF06\u30C9\u30ED\u30C3\u30D7\u3059\u308B\u304B\u3001");
|
|
46
|
+
injectString("ko-KR", "Drag & drop files or", "\uD30C\uC77C\uC744 \uB4DC\uB798\uADF8 \uC564 \uB4DC\uB86D\uD558\uAC70\uB098");
|
|
47
|
+
injectString("ms", "Drag & drop files or", "Seret & lepas fail atau");
|
|
48
|
+
injectString("nb-NO", "Drag & drop files or", "Dra og slipp filer eller");
|
|
49
|
+
injectString("nl", "Drag & drop files or", "Bestanden slepen en neerzetten of");
|
|
50
|
+
injectString("pl", "Drag & drop files or", "Przeci\u0105gnij i upu\u015B\u0107 pliki lub");
|
|
51
|
+
injectString("pt-BR", "Drag & drop files or", "Arraste e solte arquivos ou");
|
|
52
|
+
injectString("pt-PT", "Drag & drop files or", "Arraste e largue ficheiros ou");
|
|
53
|
+
injectString("sk-SK", "Drag & drop files or", "Presu\u0148te s\xFAbory alebo");
|
|
54
|
+
injectString("sv", "Drag & drop files or", "Dra och sl\xE4pp filer eller");
|
|
55
|
+
injectString("th", "Drag & drop files or", "\u0E25\u0E32\u0E01\u0E41\u0E25\u0E30\u0E27\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D");
|
|
56
|
+
injectString("tr", "Drag & drop files or", "Dosyalar\u0131 s\xFCr\xFCkleyip b\u0131rak\u0131n veya");
|
|
57
|
+
injectString("zh-Hans", "Drag & drop files or", "\u62D6\u653E\u6587\u4EF6\u6216");
|
|
58
|
+
injectString("zh-TW", "Drag & drop files or", "\u62D6\u653E\u6A94\u6848\u6216");
|
|
59
|
+
injectString("ro-RO", "Drag & drop files or", "Glisa\u021Bi \u0219i fixa\u021Bi fi\u0219iere sau");
|
|
60
60
|
injectString("ar-SA", "Drag & drop files or", "\u0627\u0633\u062D\u0628 \u0648\u0623\u0641\u0644\u062A \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0623\u0648");
|
|
61
|
-
injectString("cs", "Browse", "
|
|
62
|
-
injectString("da-DK", "Browse", "
|
|
63
|
-
injectString("de", "Browse", "
|
|
61
|
+
injectString("cs", "Browse", "Proch\xE1zet");
|
|
62
|
+
injectString("da-DK", "Browse", "Gennemse");
|
|
63
|
+
injectString("de", "Browse", "Durchsuchen");
|
|
64
64
|
injectString("en", "Browse", "Browse");
|
|
65
|
-
injectString("es", "Browse", "
|
|
66
|
-
injectString("fi-FI", "Browse", "
|
|
67
|
-
injectString("fr", "Browse", "
|
|
68
|
-
injectString("fr-FR", "Browse", "
|
|
69
|
-
injectString("hu-HU", "Browse", "
|
|
70
|
-
injectString("id", "Browse", "
|
|
71
|
-
injectString("it", "Browse", "
|
|
72
|
-
injectString("ja", "Browse", "
|
|
73
|
-
injectString("ko-KR", "Browse", "
|
|
74
|
-
injectString("ms", "Browse", "
|
|
75
|
-
injectString("nb-NO", "Browse", "
|
|
76
|
-
injectString("nl", "Browse", "
|
|
77
|
-
injectString("pl", "Browse", "
|
|
78
|
-
injectString("pt-BR", "Browse", "
|
|
79
|
-
injectString("pt-PT", "Browse", "
|
|
80
|
-
injectString("sk-SK", "Browse", "
|
|
81
|
-
injectString("sv", "Browse", "
|
|
82
|
-
injectString("th", "Browse", "
|
|
83
|
-
injectString("tr", "Browse", "
|
|
84
|
-
injectString("zh-Hans", "Browse", "
|
|
85
|
-
injectString("zh-TW", "Browse", "
|
|
86
|
-
injectString("ro-RO", "Browse", "
|
|
65
|
+
injectString("es", "Browse", "Explorar");
|
|
66
|
+
injectString("fi-FI", "Browse", "Selaa");
|
|
67
|
+
injectString("fr", "Browse", "Parcourir");
|
|
68
|
+
injectString("fr-FR", "Browse", "Parcourir");
|
|
69
|
+
injectString("hu-HU", "Browse", "Tall\xF3z\xE1s");
|
|
70
|
+
injectString("id", "Browse", "Jelajahi");
|
|
71
|
+
injectString("it", "Browse", "Sfoglia");
|
|
72
|
+
injectString("ja", "Browse", "\u53C2\u7167");
|
|
73
|
+
injectString("ko-KR", "Browse", "\uCC3E\uC544\uBCF4\uAE30");
|
|
74
|
+
injectString("ms", "Browse", "Semak Imbas");
|
|
75
|
+
injectString("nb-NO", "Browse", "Bla gjennom");
|
|
76
|
+
injectString("nl", "Browse", "Bladeren");
|
|
77
|
+
injectString("pl", "Browse", "Przegl\u0105daj");
|
|
78
|
+
injectString("pt-BR", "Browse", "Procurar");
|
|
79
|
+
injectString("pt-PT", "Browse", "Procurar");
|
|
80
|
+
injectString("sk-SK", "Browse", "Preh\u013Ead\xE1va\u0165");
|
|
81
|
+
injectString("sv", "Browse", "Bl\xE4ddra");
|
|
82
|
+
injectString("th", "Browse", "\u0E40\u0E23\u0E35\u0E22\u0E01\u0E14\u0E39");
|
|
83
|
+
injectString("tr", "Browse", "G\xF6zat");
|
|
84
|
+
injectString("zh-Hans", "Browse", "\u6D4F\u89C8");
|
|
85
|
+
injectString("zh-TW", "Browse", "\u700F\u89BD");
|
|
86
|
+
injectString("ro-RO", "Browse", "R\u0103sfoire");
|
|
87
87
|
injectString("ar-SA", "Browse", "\u062A\u0635\u0641\u062D");
|
|
88
|
-
injectString("cs", "Supported Formats:", "
|
|
89
|
-
injectString("da-DK", "Supported Formats:", "
|
|
90
|
-
injectString("de", "Supported Formats:", "
|
|
88
|
+
injectString("cs", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
89
|
+
injectString("da-DK", "Supported Formats:", "Underst\xF8ttede formater:");
|
|
90
|
+
injectString("de", "Supported Formats:", "Unterst\xFCtzte Formate:");
|
|
91
91
|
injectString("en", "Supported Formats:", "Supported Formats:");
|
|
92
|
-
injectString("es", "Supported Formats:", "
|
|
93
|
-
injectString("fi-FI", "Supported Formats:", "
|
|
94
|
-
injectString("fr", "Supported Formats:", "
|
|
95
|
-
injectString("fr-FR", "Supported Formats:", "
|
|
96
|
-
injectString("hu-HU", "Supported Formats:", "
|
|
97
|
-
injectString("id", "Supported Formats:", "
|
|
98
|
-
injectString("it", "Supported Formats:", "
|
|
99
|
-
injectString("ja", "Supported Formats:", "
|
|
100
|
-
injectString("ko-KR", "Supported Formats:", "
|
|
101
|
-
injectString("ms", "Supported Formats:", "
|
|
102
|
-
injectString("nb-NO", "Supported Formats:", "
|
|
103
|
-
injectString("nl", "Supported Formats:", "
|
|
104
|
-
injectString("pl", "Supported Formats:", "
|
|
105
|
-
injectString("pt-BR", "Supported Formats:", "
|
|
106
|
-
injectString("pt-PT", "Supported Formats:", "
|
|
107
|
-
injectString("sk-SK", "Supported Formats:", "
|
|
108
|
-
injectString("sv", "Supported Formats:", "
|
|
109
|
-
injectString("th", "Supported Formats:", "
|
|
110
|
-
injectString("tr", "Supported Formats:", "
|
|
111
|
-
injectString("zh-Hans", "Supported Formats:", "
|
|
112
|
-
injectString("zh-TW", "Supported Formats:", "
|
|
113
|
-
injectString("ro-RO", "Supported Formats:", "
|
|
92
|
+
injectString("es", "Supported Formats:", "Formatos compatibles:");
|
|
93
|
+
injectString("fi-FI", "Supported Formats:", "Tuetut muodot:");
|
|
94
|
+
injectString("fr", "Supported Formats:", "Formats pris en charge :");
|
|
95
|
+
injectString("fr-FR", "Supported Formats:", "Formats pris en charge :");
|
|
96
|
+
injectString("hu-HU", "Supported Formats:", "T\xE1mogatott form\xE1tumok:");
|
|
97
|
+
injectString("id", "Supported Formats:", "Format yang Didukung:");
|
|
98
|
+
injectString("it", "Supported Formats:", "Formati supportati:");
|
|
99
|
+
injectString("ja", "Supported Formats:", "\u5BFE\u5FDC\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8\uFF1A");
|
|
100
|
+
injectString("ko-KR", "Supported Formats:", "\uC9C0\uC6D0\uB418\uB294 \uD615\uC2DD:");
|
|
101
|
+
injectString("ms", "Supported Formats:", "Format yang Disokong:");
|
|
102
|
+
injectString("nb-NO", "Supported Formats:", "St\xF8ttede formater:");
|
|
103
|
+
injectString("nl", "Supported Formats:", "Ondersteunde indelingen:");
|
|
104
|
+
injectString("pl", "Supported Formats:", "Obs\u0142ugiwane formaty:");
|
|
105
|
+
injectString("pt-BR", "Supported Formats:", "Formatos suportados:");
|
|
106
|
+
injectString("pt-PT", "Supported Formats:", "Formatos suportados:");
|
|
107
|
+
injectString("sk-SK", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
108
|
+
injectString("sv", "Supported Formats:", "Format som st\xF6ds:");
|
|
109
|
+
injectString("th", "Supported Formats:", "\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A:");
|
|
110
|
+
injectString("tr", "Supported Formats:", "Desteklenen Bi\xE7imler:");
|
|
111
|
+
injectString("zh-Hans", "Supported Formats:", "\u652F\u6301\u7684\u683C\u5F0F\uFF1A");
|
|
112
|
+
injectString("zh-TW", "Supported Formats:", "\u652F\u63F4\u7684\u683C\u5F0F\uFF1A");
|
|
113
|
+
injectString("ro-RO", "Supported Formats:", "Formate acceptate:");
|
|
114
114
|
injectString("ar-SA", "Supported Formats:", "\u0627\u0644\u0635\u064A\u063A \u0627\u0644\u0645\u062F\u0639\u0648\u0645\u0629:");
|
|
115
115
|
export const DropZoneContent = ({
|
|
116
116
|
size,
|
|
@@ -9,86 +9,86 @@ import { Waiting } from "../waiting/waiting";
|
|
|
9
9
|
import { DropZoneContent } from "./components/dropZoneContent";
|
|
10
10
|
import { TemplateDownloadSection } from "./components/templateDownloadSection";
|
|
11
11
|
import { UploadedFilesSection } from "./components/uploadedFilesSection";
|
|
12
|
-
injectString("cs", "Tap to add files", "
|
|
13
|
-
injectString("da-DK", "Tap to add files", "
|
|
14
|
-
injectString("de", "Tap to add files", "
|
|
12
|
+
injectString("cs", "Tap to add files", "Klepnut\xEDm p\u0159idejte soubory");
|
|
13
|
+
injectString("da-DK", "Tap to add files", "Tryk for at tilf\xF8je filer");
|
|
14
|
+
injectString("de", "Tap to add files", "Tippen, um Dateien hinzuzuf\xFCgen");
|
|
15
15
|
injectString("en", "Tap to add files", "Tap to add files");
|
|
16
|
-
injectString("es", "Tap to add files", "
|
|
17
|
-
injectString("fi-FI", "Tap to add files", "
|
|
18
|
-
injectString("fr", "Tap to add files", "
|
|
19
|
-
injectString("fr-FR", "Tap to add files", "
|
|
20
|
-
injectString("hu-HU", "Tap to add files", "
|
|
21
|
-
injectString("id", "Tap to add files", "
|
|
22
|
-
injectString("it", "Tap to add files", "
|
|
23
|
-
injectString("ja", "Tap to add files", "
|
|
24
|
-
injectString("ko-KR", "Tap to add files", "
|
|
25
|
-
injectString("ms", "Tap to add files", "
|
|
26
|
-
injectString("nb-NO", "Tap to add files", "
|
|
27
|
-
injectString("nl", "Tap to add files", "
|
|
28
|
-
injectString("pl", "Tap to add files", "
|
|
29
|
-
injectString("pt-BR", "Tap to add files", "
|
|
30
|
-
injectString("pt-PT", "Tap to add files", "
|
|
31
|
-
injectString("sk-SK", "Tap to add files", "
|
|
32
|
-
injectString("sv", "Tap to add files", "
|
|
33
|
-
injectString("th", "Tap to add files", "
|
|
34
|
-
injectString("tr", "Tap to add files", "
|
|
35
|
-
injectString("zh-Hans", "Tap to add files", "
|
|
36
|
-
injectString("zh-TW", "Tap to add files", "
|
|
37
|
-
injectString("ro-RO", "Tap to add files", "
|
|
16
|
+
injectString("es", "Tap to add files", "Toca para agregar archivos");
|
|
17
|
+
injectString("fi-FI", "Tap to add files", "Lis\xE4\xE4 tiedostoja napauttamalla");
|
|
18
|
+
injectString("fr", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
19
|
+
injectString("fr-FR", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
20
|
+
injectString("hu-HU", "Tap to add files", "F\xE1jlok hozz\xE1ad\xE1s\xE1hoz koppintson");
|
|
21
|
+
injectString("id", "Tap to add files", "Ketuk untuk menambahkan file");
|
|
22
|
+
injectString("it", "Tap to add files", "Tocca per aggiungere file");
|
|
23
|
+
injectString("ja", "Tap to add files", "\u30BF\u30C3\u30D7\u3057\u3066\u30D5\u30A1\u30A4\u30EB\u3092\u8FFD\u52A0");
|
|
24
|
+
injectString("ko-KR", "Tap to add files", "\uD0ED\uD558\uC5EC \uD30C\uC77C \uCD94\uAC00");
|
|
25
|
+
injectString("ms", "Tap to add files", "Ketik untuk menambah fail");
|
|
26
|
+
injectString("nb-NO", "Tap to add files", "Trykk for \xE5 legge til filer");
|
|
27
|
+
injectString("nl", "Tap to add files", "Tik om bestanden toe te voegen");
|
|
28
|
+
injectString("pl", "Tap to add files", "Dotknij, aby doda\u0107 pliki");
|
|
29
|
+
injectString("pt-BR", "Tap to add files", "Toque para adicionar arquivos");
|
|
30
|
+
injectString("pt-PT", "Tap to add files", "Toque para adicionar ficheiros");
|
|
31
|
+
injectString("sk-SK", "Tap to add files", "Klepnut\xEDm pridajte s\xFAbory");
|
|
32
|
+
injectString("sv", "Tap to add files", "Tryck f\xF6r att l\xE4gga till filer");
|
|
33
|
+
injectString("th", "Tap to add files", "\u0E41\u0E15\u0E30\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E44\u0E1F\u0E25\u0E4C");
|
|
34
|
+
injectString("tr", "Tap to add files", "Dosya eklemek i\xE7in dokunun");
|
|
35
|
+
injectString("zh-Hans", "Tap to add files", "\u70B9\u51FB\u6DFB\u52A0\u6587\u4EF6");
|
|
36
|
+
injectString("zh-TW", "Tap to add files", "\u9EDE\u9078\u4EE5\u65B0\u589E\u6A94\u6848");
|
|
37
|
+
injectString("ro-RO", "Tap to add files", "Atinge\u021Bi pentru a ad\u0103uga fi\u0219iere");
|
|
38
38
|
injectString("ar-SA", "Tap to add files", "\u0627\u0646\u0642\u0631 \u0644\u0625\u0636\u0627\u0641\u0629 \u0645\u0644\u0641\u0627\u062A");
|
|
39
|
-
injectString("cs", "Drag & drop files or", "
|
|
40
|
-
injectString("da-DK", "Drag & drop files or", "
|
|
41
|
-
injectString("de", "Drag & drop files or", "
|
|
39
|
+
injectString("cs", "Drag & drop files or", "P\u0159et\xE1hn\u011Bte soubory nebo");
|
|
40
|
+
injectString("da-DK", "Drag & drop files or", "Tr\xE6k og slip filer eller");
|
|
41
|
+
injectString("de", "Drag & drop files or", "Dateien hierher ziehen oder");
|
|
42
42
|
injectString("en", "Drag & drop files or", "Drag & drop files or");
|
|
43
|
-
injectString("es", "Drag & drop files or", "
|
|
44
|
-
injectString("fi-FI", "Drag & drop files or", "
|
|
45
|
-
injectString("fr", "Drag & drop files or", "
|
|
46
|
-
injectString("fr-FR", "Drag & drop files or", "
|
|
47
|
-
injectString("hu-HU", "Drag & drop files or", "
|
|
48
|
-
injectString("id", "Drag & drop files or", "
|
|
49
|
-
injectString("it", "Drag & drop files or", "
|
|
50
|
-
injectString("ja", "Drag & drop files or", "
|
|
51
|
-
injectString("ko-KR", "Drag & drop files or", "
|
|
52
|
-
injectString("ms", "Drag & drop files or", "
|
|
53
|
-
injectString("nb-NO", "Drag & drop files or", "
|
|
54
|
-
injectString("nl", "Drag & drop files or", "
|
|
55
|
-
injectString("pl", "Drag & drop files or", "
|
|
56
|
-
injectString("pt-BR", "Drag & drop files or", "
|
|
57
|
-
injectString("pt-PT", "Drag & drop files or", "
|
|
58
|
-
injectString("sk-SK", "Drag & drop files or", "
|
|
59
|
-
injectString("sv", "Drag & drop files or", "
|
|
60
|
-
injectString("th", "Drag & drop files or", "
|
|
61
|
-
injectString("tr", "Drag & drop files or", "
|
|
62
|
-
injectString("zh-Hans", "Drag & drop files or", "
|
|
63
|
-
injectString("zh-TW", "Drag & drop files or", "
|
|
64
|
-
injectString("ro-RO", "Drag & drop files or", "
|
|
43
|
+
injectString("es", "Drag & drop files or", "Arrastrar y soltar archivos o");
|
|
44
|
+
injectString("fi-FI", "Drag & drop files or", "Ved\xE4 ja pudota tiedostoja tai");
|
|
45
|
+
injectString("fr", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
46
|
+
injectString("fr-FR", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
47
|
+
injectString("hu-HU", "Drag & drop files or", "H\xFAzza ide a f\xE1jlokat, vagy");
|
|
48
|
+
injectString("id", "Drag & drop files or", "Seret & lepas file atau");
|
|
49
|
+
injectString("it", "Drag & drop files or", "Trascina e rilascia i file o");
|
|
50
|
+
injectString("ja", "Drag & drop files or", "\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0\uFF06\u30C9\u30ED\u30C3\u30D7\u3059\u308B\u304B\u3001");
|
|
51
|
+
injectString("ko-KR", "Drag & drop files or", "\uD30C\uC77C\uC744 \uB4DC\uB798\uADF8 \uC564 \uB4DC\uB86D\uD558\uAC70\uB098");
|
|
52
|
+
injectString("ms", "Drag & drop files or", "Seret & lepas fail atau");
|
|
53
|
+
injectString("nb-NO", "Drag & drop files or", "Dra og slipp filer eller");
|
|
54
|
+
injectString("nl", "Drag & drop files or", "Bestanden slepen en neerzetten of");
|
|
55
|
+
injectString("pl", "Drag & drop files or", "Przeci\u0105gnij i upu\u015B\u0107 pliki lub");
|
|
56
|
+
injectString("pt-BR", "Drag & drop files or", "Arraste e solte arquivos ou");
|
|
57
|
+
injectString("pt-PT", "Drag & drop files or", "Arraste e largue ficheiros ou");
|
|
58
|
+
injectString("sk-SK", "Drag & drop files or", "Presu\u0148te s\xFAbory alebo");
|
|
59
|
+
injectString("sv", "Drag & drop files or", "Dra och sl\xE4pp filer eller");
|
|
60
|
+
injectString("th", "Drag & drop files or", "\u0E25\u0E32\u0E01\u0E41\u0E25\u0E30\u0E27\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D");
|
|
61
|
+
injectString("tr", "Drag & drop files or", "Dosyalar\u0131 s\xFCr\xFCkleyip b\u0131rak\u0131n veya");
|
|
62
|
+
injectString("zh-Hans", "Drag & drop files or", "\u62D6\u653E\u6587\u4EF6\u6216");
|
|
63
|
+
injectString("zh-TW", "Drag & drop files or", "\u62D6\u653E\u6A94\u6848\u6216");
|
|
64
|
+
injectString("ro-RO", "Drag & drop files or", "Glisa\u021Bi \u0219i fixa\u021Bi fi\u0219iere sau");
|
|
65
65
|
injectString("ar-SA", "Drag & drop files or", "\u0627\u0633\u062D\u0628 \u0648\u0623\u0641\u0644\u062A \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0623\u0648");
|
|
66
|
-
injectString("cs", "Browse", "
|
|
67
|
-
injectString("da-DK", "Browse", "
|
|
68
|
-
injectString("de", "Browse", "
|
|
66
|
+
injectString("cs", "Browse", "Proch\xE1zet");
|
|
67
|
+
injectString("da-DK", "Browse", "Gennemse");
|
|
68
|
+
injectString("de", "Browse", "Durchsuchen");
|
|
69
69
|
injectString("en", "Browse", "Browse");
|
|
70
|
-
injectString("es", "Browse", "
|
|
71
|
-
injectString("fi-FI", "Browse", "
|
|
72
|
-
injectString("fr", "Browse", "
|
|
73
|
-
injectString("fr-FR", "Browse", "
|
|
74
|
-
injectString("hu-HU", "Browse", "
|
|
75
|
-
injectString("id", "Browse", "
|
|
76
|
-
injectString("it", "Browse", "
|
|
77
|
-
injectString("ja", "Browse", "
|
|
78
|
-
injectString("ko-KR", "Browse", "
|
|
79
|
-
injectString("ms", "Browse", "
|
|
80
|
-
injectString("nb-NO", "Browse", "
|
|
81
|
-
injectString("nl", "Browse", "
|
|
82
|
-
injectString("pl", "Browse", "
|
|
83
|
-
injectString("pt-BR", "Browse", "
|
|
84
|
-
injectString("pt-PT", "Browse", "
|
|
85
|
-
injectString("sk-SK", "Browse", "
|
|
86
|
-
injectString("sv", "Browse", "
|
|
87
|
-
injectString("th", "Browse", "
|
|
88
|
-
injectString("tr", "Browse", "
|
|
89
|
-
injectString("zh-Hans", "Browse", "
|
|
90
|
-
injectString("zh-TW", "Browse", "
|
|
91
|
-
injectString("ro-RO", "Browse", "
|
|
70
|
+
injectString("es", "Browse", "Explorar");
|
|
71
|
+
injectString("fi-FI", "Browse", "Selaa");
|
|
72
|
+
injectString("fr", "Browse", "Parcourir");
|
|
73
|
+
injectString("fr-FR", "Browse", "Parcourir");
|
|
74
|
+
injectString("hu-HU", "Browse", "Tall\xF3z\xE1s");
|
|
75
|
+
injectString("id", "Browse", "Jelajahi");
|
|
76
|
+
injectString("it", "Browse", "Sfoglia");
|
|
77
|
+
injectString("ja", "Browse", "\u53C2\u7167");
|
|
78
|
+
injectString("ko-KR", "Browse", "\uCC3E\uC544\uBCF4\uAE30");
|
|
79
|
+
injectString("ms", "Browse", "Semak Imbas");
|
|
80
|
+
injectString("nb-NO", "Browse", "Bla gjennom");
|
|
81
|
+
injectString("nl", "Browse", "Bladeren");
|
|
82
|
+
injectString("pl", "Browse", "Przegl\u0105daj");
|
|
83
|
+
injectString("pt-BR", "Browse", "Procurar");
|
|
84
|
+
injectString("pt-PT", "Browse", "Procurar");
|
|
85
|
+
injectString("sk-SK", "Browse", "Preh\u013Ead\xE1va\u0165");
|
|
86
|
+
injectString("sv", "Browse", "Bl\xE4ddra");
|
|
87
|
+
injectString("th", "Browse", "\u0E40\u0E23\u0E35\u0E22\u0E01\u0E14\u0E39");
|
|
88
|
+
injectString("tr", "Browse", "G\xF6zat");
|
|
89
|
+
injectString("zh-Hans", "Browse", "\u6D4F\u89C8");
|
|
90
|
+
injectString("zh-TW", "Browse", "\u700F\u89BD");
|
|
91
|
+
injectString("ro-RO", "Browse", "R\u0103sfoire");
|
|
92
92
|
injectString("ar-SA", "Browse", "\u062A\u0635\u0641\u062D");
|
|
93
93
|
injectString("cs", "Upload files.", "Upload files.");
|
|
94
94
|
injectString("da-DK", "Upload files.", "Upload files.");
|
|
@@ -117,32 +117,32 @@ injectString("zh-Hans", "Upload files.", "Upload files.");
|
|
|
117
117
|
injectString("zh-TW", "Upload files.", "Upload files.");
|
|
118
118
|
injectString("ro-RO", "Upload files.", "Upload files.");
|
|
119
119
|
injectString("ar-SA", "Upload files.", "\u0631\u0641\u0639 \u0627\u0644\u0645\u0644\u0641\u0627\u062A.");
|
|
120
|
-
injectString("cs", "Supported Formats:", "
|
|
121
|
-
injectString("da-DK", "Supported Formats:", "
|
|
122
|
-
injectString("de", "Supported Formats:", "
|
|
120
|
+
injectString("cs", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
121
|
+
injectString("da-DK", "Supported Formats:", "Underst\xF8ttede formater:");
|
|
122
|
+
injectString("de", "Supported Formats:", "Unterst\xFCtzte Formate:");
|
|
123
123
|
injectString("en", "Supported Formats:", "Supported Formats:");
|
|
124
|
-
injectString("es", "Supported Formats:", "
|
|
125
|
-
injectString("fi-FI", "Supported Formats:", "
|
|
126
|
-
injectString("fr", "Supported Formats:", "
|
|
127
|
-
injectString("fr-FR", "Supported Formats:", "
|
|
128
|
-
injectString("hu-HU", "Supported Formats:", "
|
|
129
|
-
injectString("id", "Supported Formats:", "
|
|
130
|
-
injectString("it", "Supported Formats:", "
|
|
131
|
-
injectString("ja", "Supported Formats:", "
|
|
132
|
-
injectString("ko-KR", "Supported Formats:", "
|
|
133
|
-
injectString("ms", "Supported Formats:", "
|
|
134
|
-
injectString("nb-NO", "Supported Formats:", "
|
|
135
|
-
injectString("nl", "Supported Formats:", "
|
|
136
|
-
injectString("pl", "Supported Formats:", "
|
|
137
|
-
injectString("pt-BR", "Supported Formats:", "
|
|
138
|
-
injectString("pt-PT", "Supported Formats:", "
|
|
139
|
-
injectString("sk-SK", "Supported Formats:", "
|
|
140
|
-
injectString("sv", "Supported Formats:", "
|
|
141
|
-
injectString("th", "Supported Formats:", "
|
|
142
|
-
injectString("tr", "Supported Formats:", "
|
|
143
|
-
injectString("zh-Hans", "Supported Formats:", "
|
|
144
|
-
injectString("zh-TW", "Supported Formats:", "
|
|
145
|
-
injectString("ro-RO", "Supported Formats:", "
|
|
124
|
+
injectString("es", "Supported Formats:", "Formatos compatibles:");
|
|
125
|
+
injectString("fi-FI", "Supported Formats:", "Tuetut muodot:");
|
|
126
|
+
injectString("fr", "Supported Formats:", "Formats pris en charge :");
|
|
127
|
+
injectString("fr-FR", "Supported Formats:", "Formats pris en charge :");
|
|
128
|
+
injectString("hu-HU", "Supported Formats:", "T\xE1mogatott form\xE1tumok:");
|
|
129
|
+
injectString("id", "Supported Formats:", "Format yang Didukung:");
|
|
130
|
+
injectString("it", "Supported Formats:", "Formati supportati:");
|
|
131
|
+
injectString("ja", "Supported Formats:", "\u5BFE\u5FDC\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8\uFF1A");
|
|
132
|
+
injectString("ko-KR", "Supported Formats:", "\uC9C0\uC6D0\uB418\uB294 \uD615\uC2DD:");
|
|
133
|
+
injectString("ms", "Supported Formats:", "Format yang Disokong:");
|
|
134
|
+
injectString("nb-NO", "Supported Formats:", "St\xF8ttede formater:");
|
|
135
|
+
injectString("nl", "Supported Formats:", "Ondersteunde indelingen:");
|
|
136
|
+
injectString("pl", "Supported Formats:", "Obs\u0142ugiwane formaty:");
|
|
137
|
+
injectString("pt-BR", "Supported Formats:", "Formatos suportados:");
|
|
138
|
+
injectString("pt-PT", "Supported Formats:", "Formatos suportados:");
|
|
139
|
+
injectString("sk-SK", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
140
|
+
injectString("sv", "Supported Formats:", "Format som st\xF6ds:");
|
|
141
|
+
injectString("th", "Supported Formats:", "\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A:");
|
|
142
|
+
injectString("tr", "Supported Formats:", "Desteklenen Bi\xE7imler:");
|
|
143
|
+
injectString("zh-Hans", "Supported Formats:", "\u652F\u6301\u7684\u683C\u5F0F\uFF1A");
|
|
144
|
+
injectString("zh-TW", "Supported Formats:", "\u652F\u63F4\u7684\u683C\u5F0F\uFF1A");
|
|
145
|
+
injectString("ro-RO", "Supported Formats:", "Formate acceptate:");
|
|
146
146
|
injectString("ar-SA", "Supported Formats:", "\u0627\u0644\u0635\u064A\u063A \u0627\u0644\u0645\u062F\u0639\u0648\u0645\u0629:");
|
|
147
147
|
injectString("cs", "File upload area", "File upload area");
|
|
148
148
|
injectString("da-DK", "File upload area", "File upload area");
|
|
@@ -6,6 +6,8 @@ import { useLanguage } from "../../utils/localization/useLanguage";
|
|
|
6
6
|
import { Button } from "../../button/button";
|
|
7
7
|
import { TextIconButton } from "../../textIconButton/textIconButton";
|
|
8
8
|
import { IconChevronLeft } from "../../icons/iconChevronLeft";
|
|
9
|
+
import { IconChevronRight } from "../../icons/iconChevronRight";
|
|
10
|
+
import { useDirectionalIcon } from "../../utils/localization/useDirectionalIcon";
|
|
9
11
|
import { ButtonIconPosition } from "../../textIconButton/textIconButton";
|
|
10
12
|
import { FiltersSearchItemData } from "./filtersSearchItemData";
|
|
11
13
|
import { useMobile } from "../../commonHelpers/hooks/useMobile";
|
|
@@ -309,6 +311,7 @@ export const FiltersSearchList = ({
|
|
|
309
311
|
const {
|
|
310
312
|
translate
|
|
311
313
|
} = useLanguage();
|
|
314
|
+
const BackChevronIcon = useDirectionalIcon(IconChevronLeft, IconChevronRight);
|
|
312
315
|
const isSearchModeAvailable = Boolean(handleSearchItemClick && searchSelection);
|
|
313
316
|
const isRecentSearchesModeAvailable = Boolean(recentSearches && handleRecentSearchItemClick && onRemoveRecentSearchItem);
|
|
314
317
|
const isMobile = useMobile();
|
|
@@ -505,7 +508,7 @@ export const FiltersSearchList = ({
|
|
|
505
508
|
title: translate("Back"),
|
|
506
509
|
type: "tertiary",
|
|
507
510
|
onClick: changeMode.bind(null, "recent"),
|
|
508
|
-
icon:
|
|
511
|
+
icon: BackChevronIcon,
|
|
509
512
|
iconPosition: ButtonIconPosition.Start
|
|
510
513
|
}), _jsx(Button, {
|
|
511
514
|
type: "tertiary",
|