@itfin/components 1.4.35 → 1.5.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/package.json +17 -20
- package/src/ITFSettings.js +6 -0
- package/src/assets/scss/_css_variables.scss +2 -7
- package/src/assets/scss/_dark-theme.scss +2 -12
- package/src/assets/scss/_variables.scss +34 -9
- package/src/assets/scss/components/_button.scss +147 -10
- package/src/assets/scss/components/_checkbox.scss +9 -0
- package/src/assets/scss/components/_datepicker.scss +3 -3
- package/src/assets/scss/components/_pagination.scss +4 -1
- package/src/assets/scss/components/_popover.scss +22 -0
- package/src/assets/scss/components/_segmeneted-control.scss +19 -8
- package/src/assets/scss/components/_select.scss +6 -8
- package/src/assets/scss/components/_text-field.scss +27 -11
- package/src/assets/scss/components/select/_dropdown-menu.scss +1 -0
- package/src/assets/scss/components/select/_dropdown-toggle.scss +0 -1
- package/src/assets/scss/directives/tooltip.scss +10 -5
- package/src/assets/scss/main.scss +48 -0
- package/src/components/alert/AlertBanner.vue +75 -0
- package/src/components/app/App.vue +1 -1
- package/src/components/button/Button.vue +3 -1
- package/src/components/button/NativeButton.js +4 -0
- package/src/components/button/index.stories.js +2 -2
- package/src/components/checkbox/Checkbox.vue +2 -1
- package/src/components/checkbox/RadioBox.vue +1 -2
- package/src/components/copyToClipboard/CopyToClipboard.vue +4 -1
- package/src/components/customize/PropertiesList.vue +0 -2
- package/src/components/customize/PropertiesPopupMenu.vue +1 -1
- package/src/components/customize/PropertyItem.vue +6 -24
- package/src/components/datepicker/DatePicker.vue +3 -1
- package/src/components/datepicker/DatePickerInline.vue +2 -2
- package/src/components/datepicker/DateRangePickerInline.vue +6 -1
- package/src/components/dropdown/Dropdown.vue +1 -1
- package/src/components/dropdown/DropdownMenu.vue +1 -1
- package/src/components/editable/EditButton.vue +1 -1
- package/src/components/filter/FilterBadge.vue +20 -1
- package/src/components/filter/FilterFacetsList.vue +67 -13
- package/src/components/filter/FilterPanel.vue +39 -14
- package/src/components/filter/NewFilter.vue +305 -0
- package/src/components/form/Label.vue +5 -5
- package/src/components/icon/components/nomi-ai-alt.vue +5 -0
- package/src/components/icon/components/nomi-arrow-right.vue +4 -0
- package/src/components/icon/components/nomi-bell.vue +5 -0
- package/src/components/icon/components/nomi-calendar-payment.vue +10 -0
- package/src/components/icon/components/nomi-card-plus.vue +1 -0
- package/src/components/icon/components/nomi-cash-provider.vue +9 -0
- package/src/components/icon/components/nomi-cash-repeat.vue +6 -0
- package/src/components/icon/components/nomi-category-edit.vue +5 -0
- package/src/components/icon/components/nomi-chavron-up.vue +4 -0
- package/src/components/icon/components/nomi-chavron_down.vue +4 -0
- package/src/components/icon/components/nomi-chavron_up.vue +4 -0
- package/src/components/icon/components/nomi-chevron-up.vue +4 -0
- package/src/components/icon/components/nomi-exit-right.vue +4 -0
- package/src/components/icon/components/nomi-help.vue +2 -3
- package/src/components/icon/components/nomi-history.vue +7 -0
- package/src/components/icon/components/nomi-lock.vue +1 -1
- package/src/components/icon/components/nomi-pen-alt.vue +4 -0
- package/src/components/icon/components/nomi-project.vue +2 -2
- package/src/components/icon/components/nomi-refresh-off.vue +4 -0
- package/src/components/icon/components/nomi-refresh.vue +4 -0
- package/src/components/icon/components/nomi-scissors.vue +1 -1
- package/src/components/icon/components/nomi-start.vue +28 -0
- package/src/components/icon/components/nomi-table-view.vue +1 -4
- package/src/components/icon/components/nomi-transactions-delete.vue +5 -0
- package/src/components/icon/components/nomi-type-array.vue +6 -0
- package/src/components/icon/components/nomi-type-boolean.vue +5 -0
- package/src/components/icon/components/nomi-type-date.vue +4 -0
- package/src/components/icon/components/nomi-type-null.vue +4 -0
- package/src/components/icon/components/nomi-type-number.vue +4 -0
- package/src/components/icon/components/nomi-type-object.vue +4 -0
- package/src/components/icon/components/nomi-type-string.vue +4 -0
- package/src/components/icon/components/nomi-unarchive.vue +17 -0
- package/src/components/icon/components/nomi-unlink.vue +10 -0
- package/src/components/icon/components/nomi-user.vue +3 -3
- package/src/components/icon/components/nomi-warning-triangle.vue +6 -0
- package/src/components/icon/components/nomi-warning_triangle_filled.vue +6 -0
- package/src/components/icon/convert-icons.js +3 -0
- package/src/components/icon/icons.js +390 -312
- package/src/components/icon/new-icons/ai-alt.svg +4 -0
- package/src/components/icon/new-icons/arrow-right-alt.svg +3 -0
- package/src/components/icon/new-icons/arrow-right.svg +3 -0
- package/src/components/icon/new-icons/arrow_left.svg +3 -0
- package/src/components/icon/new-icons/automation.svg +4 -0
- package/src/components/icon/new-icons/balance.svg +3 -0
- package/src/components/icon/new-icons/balance_turnover.svg +4 -0
- package/src/components/icon/new-icons/bar-horizontal.svg +6 -0
- package/src/components/icon/new-icons/bell.svg +4 -0
- package/src/components/icon/new-icons/calendar-payment.svg +9 -0
- package/src/components/icon/new-icons/card-plus.svg +1 -0
- package/src/components/icon/new-icons/cash-provider.svg +8 -0
- package/src/components/icon/new-icons/cash-repeat.svg +5 -0
- package/src/components/icon/new-icons/cash.svg +3 -0
- package/src/components/icon/new-icons/cashflow.svg +3 -0
- package/src/components/icon/new-icons/category-edit.svg +4 -0
- package/src/components/icon/new-icons/category.svg +4 -0
- package/src/components/icon/new-icons/category_alt.svg +3 -0
- package/src/components/icon/new-icons/chart-bars.svg +5 -0
- package/src/components/icon/new-icons/chart-donut.svg +3 -0
- package/src/components/icon/new-icons/chart-funnel.svg +5 -0
- package/src/components/icon/new-icons/chart-kpi.svg +7 -0
- package/src/components/icon/new-icons/chart-line.svg +4 -0
- package/src/components/icon/new-icons/chart-lines.svg +5 -0
- package/src/components/icon/new-icons/check-alt.svg +3 -0
- package/src/components/icon/new-icons/check.svg +3 -0
- package/src/components/icon/new-icons/chevron-down.svg +3 -0
- package/src/components/icon/new-icons/chevron-left.svg +3 -0
- package/src/components/icon/new-icons/chevron-right.svg +3 -0
- package/src/components/icon/new-icons/chevron-up.svg +3 -0
- package/src/components/icon/new-icons/collapse.svg +6 -0
- package/src/components/icon/new-icons/control-panel.svg +7 -0
- package/src/components/icon/new-icons/credit.svg +3 -0
- package/src/components/icon/new-icons/currencies.svg +3 -0
- package/src/components/icon/new-icons/debt.svg +3 -0
- package/src/components/icon/new-icons/demo.svg +6 -0
- package/src/components/icon/new-icons/dev.svg +3 -0
- package/src/components/icon/new-icons/dots.svg +5 -0
- package/src/components/icon/new-icons/duplicate.svg +4 -0
- package/src/components/icon/new-icons/exit-right.svg +3 -0
- package/src/components/icon/new-icons/export.svg +3 -0
- package/src/components/icon/new-icons/file.svg +3 -0
- package/src/components/icon/new-icons/folder.svg +3 -0
- package/src/components/icon/new-icons/goods-turnover.svg +3 -0
- package/src/components/icon/new-icons/goods.svg +4 -0
- package/src/components/icon/new-icons/help-alt.svg +3 -0
- package/src/components/icon/new-icons/help.svg +2 -3
- package/src/components/icon/new-icons/history.svg +6 -0
- package/src/components/icon/new-icons/integration.svg +3 -0
- package/src/components/icon/new-icons/link.svg +5 -0
- package/src/components/icon/new-icons/lock.svg +1 -1
- package/src/components/icon/new-icons/menu.svg +5 -0
- package/src/components/icon/new-icons/minus.svg +3 -0
- package/src/components/icon/new-icons/payment_calendar.svg +3 -0
- package/src/components/icon/new-icons/pc.svg +3 -0
- package/src/components/icon/new-icons/pen-alt.svg +3 -0
- package/src/components/icon/new-icons/planFact.svg +4 -0
- package/src/components/icon/new-icons/pnl.svg +7 -0
- package/src/components/icon/new-icons/project.svg +2 -2
- package/src/components/icon/new-icons/project_alt.svg +3 -0
- package/src/components/icon/new-icons/project_alt2.svg +3 -0
- package/src/components/icon/new-icons/promo.svg +3 -0
- package/src/components/icon/new-icons/refresh-off.svg +3 -0
- package/src/components/icon/new-icons/refresh.svg +3 -0
- package/src/components/icon/new-icons/scissors.svg +1 -1
- package/src/components/icon/new-icons/segment.svg +3 -0
- package/src/components/icon/new-icons/start.svg +27 -0
- package/src/components/icon/new-icons/strongbox.svg +3 -0
- package/src/components/icon/new-icons/subscription.svg +3 -0
- package/src/components/icon/new-icons/table-view.svg +1 -4
- package/src/components/icon/new-icons/time.svg +3 -0
- package/src/components/icon/new-icons/transactions_alt.svg +6 -0
- package/src/components/icon/new-icons/transactions_delete.svg +4 -0
- package/src/components/icon/new-icons/type-array.svg +5 -0
- package/src/components/icon/new-icons/type-boolean.svg +4 -0
- package/src/components/icon/new-icons/type-date.svg +3 -0
- package/src/components/icon/new-icons/type-null.svg +3 -0
- package/src/components/icon/new-icons/type-number.svg +3 -0
- package/src/components/icon/new-icons/type-object.svg +3 -0
- package/src/components/icon/new-icons/type-string.svg +3 -0
- package/src/components/icon/new-icons/types.svg +6 -0
- package/src/components/icon/new-icons/unarchive.svg +16 -0
- package/src/components/icon/new-icons/unlink.svg +9 -0
- package/src/components/icon/new-icons/user.svg +3 -3
- package/src/components/icon/new-icons/user_plus.svg +10 -0
- package/src/components/icon/new-icons/warehouse.svg +3 -0
- package/src/components/icon/new-icons/warning_triangle.svg +5 -0
- package/src/components/icon/new-icons/warning_triangle_filled.svg +5 -0
- package/src/components/kanban/BoardCard.vue +1 -1
- package/src/components/kanban/BoardCardTimer.vue +1 -1
- package/src/components/modal/DeleteConfirmModal.vue +10 -6
- package/src/components/modal/ItemEditor.vue +1 -1
- package/src/components/modal/Modal.vue +1 -1
- package/src/components/overlay/SensitiveOverlay.vue +2 -4
- package/src/components/panels/Panel.vue +110 -23
- package/src/components/panels/PanelItemEdit.vue +1 -1
- package/src/components/panels/PanelList.vue +65 -11
- package/src/components/popover/Popover.vue +105 -22
- package/src/components/segmented-control/SegmentedControl.vue +9 -3
- package/src/components/sortable/draggable.js +1 -1
- package/src/components/table/Table2.vue +8 -3
- package/src/components/table/TableBody.vue +17 -16
- package/src/components/table/TableGroup.vue +38 -12
- package/src/components/table/TableHeader.vue +83 -73
- package/src/components/table/TableRows.vue +15 -9
- package/src/components/table/mobile.js +4 -0
- package/src/components/table/table2.scss +9 -0
- package/src/components/text-field/MoneyField.vue +10 -4
- package/src/components/text-field/TextField.vue +17 -8
- package/src/components/tree/TreeEditor.vue +3 -2
- package/src/components/view/View.vue +86 -214
- package/src/directives/appendToBody.js +1 -0
- package/src/helpers/validators.js +9 -35
- package/src/helpers/validators.spec.js +11 -48
- package/src/locales/en.js +4 -6
- package/src/locales/pl.js +158 -0
- package/src/locales/uk.js +6 -7
- package/src/components/icon/components/nomi-calendar-view.vue +0 -4
- package/src/components/icon/components/nomi-kanban-view.vue +0 -6
- package/src/components/icon/components/nomi-list-view.vue +0 -7
- package/src/components/icon/components/nomi-table-config.vue +0 -9
- package/src/components/icon/new-icons/calendar-view.svg +0 -3
- package/src/components/icon/new-icons/kanban-view.svg +0 -5
- package/src/components/icon/new-icons/list-view.svg +0 -6
- package/src/components/icon/new-icons/table-config.svg +0 -8
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
/* eslint-disable comma-dangle */
|
|
2
|
+
module.exports = {
|
|
3
|
+
today: 'Dzisiaj',
|
|
4
|
+
tomorrow: 'Jutro',
|
|
5
|
+
inAWeek: 'Za tydzień',
|
|
6
|
+
inAMonth: 'Za miesiąc',
|
|
7
|
+
inAHalfYear: 'Za pół roku',
|
|
8
|
+
inAYear: 'Za rok',
|
|
9
|
+
relativeDates: 'Daty względne',
|
|
10
|
+
thisWeek: 'W tym tygodniu',
|
|
11
|
+
lastWeek: 'W zeszłym tygodniu',
|
|
12
|
+
thisMonth: 'W tym miesiącu',
|
|
13
|
+
lastMonth: 'W zeszłym miesiącu',
|
|
14
|
+
thisQuarter: 'W tym kwartale',
|
|
15
|
+
lastQuarter: 'W zeszłym kwartale',
|
|
16
|
+
thisYear: 'W tym roku',
|
|
17
|
+
lastYear: 'W zeszłym roku',
|
|
18
|
+
quarter: 'Kwartał',
|
|
19
|
+
areYouSureToDeleteThis: 'Czy na pewno<br/> chcesz to usunąć?',
|
|
20
|
+
noKeepIt: 'Nie, zachowaj',
|
|
21
|
+
yesDelete: 'Tak, usuń',
|
|
22
|
+
pleaseFixTheErrorsBelowToProceed: 'Proszę poprawić błędy poniżej, aby kontynuować.',
|
|
23
|
+
thisFieldIsRequired: 'To pole jest wymagane',
|
|
24
|
+
theValueMustBeDifferent: 'Wartość musi być inna',
|
|
25
|
+
mustBeLessThanLengthCharacters: 'Musi mieć mniej niż {length} znaków',
|
|
26
|
+
mustBeMoreThanLengthCharacters: 'Musi mieć więcej niż {length} znaków',
|
|
27
|
+
pleaseEnterAValidEmail: 'Proszę wprowadzić prawidłowy adres e-mail',
|
|
28
|
+
pleaseEnterValidURL: 'Proszę wprowadzić prawidłowy URL',
|
|
29
|
+
pleaseEnteraValidHex: 'Proszę wprowadzić prawidłowy kod koloru',
|
|
30
|
+
passwordsDontMatch: 'Hasła nie są takie same',
|
|
31
|
+
thisFieldMustBeANumberFormatZero: 'To pole musi być liczbą (format 0.00)',
|
|
32
|
+
theValueMustBeGreaterThanOrEqualToMinAndMax: 'Wartość musi być większa lub równa {min} i mniejsza lub równa {max}',
|
|
33
|
+
theValueMustBeGreaterThanOrEqualToMin: 'Wartość musi być większa lub równa {min}',
|
|
34
|
+
mustBeLessThanMax: 'Musi być mniejsze niż {max}',
|
|
35
|
+
thisIsntABalidDescription: 'To nie jest prawidłowy opis',
|
|
36
|
+
linksAreNotAllowedInThisField: 'Linki nie są dozwolone w tym polu',
|
|
37
|
+
theValueMustBeginAndEndWithANumberAndContainOnlyNumbersOrDots: 'Wartość musi zaczynać się i kończyć liczbą i zawierać tylko cyfry lub kropki(.)',
|
|
38
|
+
pleaseDontUseHTMLMarkup: 'Proszę nie używać znaczników HTML',
|
|
39
|
+
beforeYouContinueMakeSureYourProfileDoesNotIncludeYourLinkedInContactInformation: 'Przed kontynuacją upewnij się, że Twój profil nie zawiera danych kontaktowych LinkedIn',
|
|
40
|
+
tooManyCapitalLetters: 'Za dużo wielkich liter',
|
|
41
|
+
yourtitleCannotIncludeSpecialCharactersLike: 'Twój tytuł nie może zawierać znaków specjalnych takich jak >, ;, !, @, $, %, ^, =, {, }',
|
|
42
|
+
pleaseRemoveAnyPhoneNumberFromThisField: 'Proszę usunąć numer telefonu z tego pola. Potencjalni klienci mogą się z Tobą kontaktować przez Upwork',
|
|
43
|
+
thisFieldMustContainsDigits: 'To pole musi zawierać cyfry',
|
|
44
|
+
thedateShouldBeSameOrBefore: 'Data powinna być taka sama lub wcześniejsza niż {date}',
|
|
45
|
+
thedateShouldBeSameOrAfter: 'Data powinna być taka sama lub późniejsza niż {date}',
|
|
46
|
+
invalidTimeValueShouldBeInFormat: 'Nieprawidłowa wartość czasu. Powinna być w formacie 0d 0h 0m',
|
|
47
|
+
yourTitleShouldDescribeTheWorkYouDo: 'Twój tytuł powinien opisywać wykonywaną pracę',
|
|
48
|
+
pleaseEnterValidCommaSeparatedEmailAddressesToSendInvoicing: 'Proszę wpisać prawidłowe adresy e-mail oddzielone przecinkami (,) do wysyłki faktur',
|
|
49
|
+
noResults: 'Brak wyników',
|
|
50
|
+
search: 'Szukaj',
|
|
51
|
+
dateBefore: 'Data powinna być przed {date}',
|
|
52
|
+
dateAfter: 'Data powinna być po {date}',
|
|
53
|
+
dateSameOrBefore: 'Data powinna być taka sama lub przed {date}',
|
|
54
|
+
dateSameOrAfter: 'Data powinna być taka sama lub po {date}',
|
|
55
|
+
mediumTextLength: 'Tekst za długi, maksymalna długość 16Mb',
|
|
56
|
+
addMore: 'Dodaj więcej',
|
|
57
|
+
close: 'Zamknij',
|
|
58
|
+
wholeYear: 'Cały rok',
|
|
59
|
+
|
|
60
|
+
select: {
|
|
61
|
+
loading: 'Ładowanie...',
|
|
62
|
+
noOptions: 'Wybierz opcję lub utwórz nową',
|
|
63
|
+
},
|
|
64
|
+
modal: {
|
|
65
|
+
delete: 'Usuń',
|
|
66
|
+
cancel: 'Anuluj',
|
|
67
|
+
save: 'Zapisz',
|
|
68
|
+
itemHasBeenSuccessfullySaved: 'Zmiany zostały pomyślnie zapisane',
|
|
69
|
+
itemHasBeenSuccessfullyDeleted: 'Pomyślnie usunięto',
|
|
70
|
+
networkProblem: 'Problem z siecią. Sprawdź połączenie. Problem może występować także podczas korzystania z VPN.',
|
|
71
|
+
pleaseFixTheErrorsBelowToProceed: 'Proszę poprawić błędy poniżej, aby kontynuować.',
|
|
72
|
+
},
|
|
73
|
+
popover: {
|
|
74
|
+
noKeepIt: 'Nie, zachowaj',
|
|
75
|
+
yesDelete: 'Tak, usuń',
|
|
76
|
+
areYouSureToDeleteThis: 'Czy na pewno chcesz to usunąć?',
|
|
77
|
+
confirmDelete: 'Potwierdź usunięcie',
|
|
78
|
+
confirmRestore: 'Potwierdź przywrócenie',
|
|
79
|
+
},
|
|
80
|
+
customize: {
|
|
81
|
+
editProperty: 'Edytuj właściwość',
|
|
82
|
+
hideProperty: 'Ukryj właściwość',
|
|
83
|
+
alwaysShow: 'Zawsze pokazuj',
|
|
84
|
+
hideWhenEmpty: 'Ukryj, gdy puste',
|
|
85
|
+
alwaysHide: 'Zawsze ukrywaj',
|
|
86
|
+
duplicateProperty: 'Duplikuj właściwość',
|
|
87
|
+
deleteProperty: 'Usuń właściwość',
|
|
88
|
+
areYouSureYouWantToDeleteThisField: 'Czy na pewno chcesz usunąć tę właściwość?',
|
|
89
|
+
customizePage: 'Dostosuj stronę',
|
|
90
|
+
type: 'Typ',
|
|
91
|
+
options: 'Opcje',
|
|
92
|
+
addOption: 'Dodaj opcję',
|
|
93
|
+
showMoreProperties: '{n} więcej właściwości|{n} więcej właściwości',
|
|
94
|
+
hideMoreProperties: 'Ukryj {n} właściwość|Ukryj {n} właściwości',
|
|
95
|
+
deleteItem: 'Usuń',
|
|
96
|
+
areYouSureYouWantToDeleteThisItem: 'Czy na pewno chcesz usunąć tę opcję?',
|
|
97
|
+
},
|
|
98
|
+
copyToClipboard: {
|
|
99
|
+
copyingToClipboardWasSuccessful: 'Kopiowanie do schowka powiodło się',
|
|
100
|
+
},
|
|
101
|
+
table: {
|
|
102
|
+
new: 'Nowy',
|
|
103
|
+
noResults: 'Brak elementów',
|
|
104
|
+
sortAscending: 'Sortuj rosnąco',
|
|
105
|
+
sortDescending: 'Sortuj malejąco',
|
|
106
|
+
groupBy: 'Grupuj według',
|
|
107
|
+
sorting: 'Sortowanie',
|
|
108
|
+
actions: 'Akcje',
|
|
109
|
+
hideColumn: 'Ukryj w widoku',
|
|
110
|
+
freezeColumn: 'Zamroź do kolumny',
|
|
111
|
+
unfreezeColumn: 'Odblokuj kolumnę',
|
|
112
|
+
addColumn: 'Dodaj kolumnę',
|
|
113
|
+
calculate: 'Oblicz',
|
|
114
|
+
calculateNone: 'Brak',
|
|
115
|
+
calculateTotal: 'Suma',
|
|
116
|
+
calculateCountAll: 'Policz wszystko',
|
|
117
|
+
calculateAverage: 'Średnia',
|
|
118
|
+
calculateMin: 'Min',
|
|
119
|
+
calculateMax: 'Max',
|
|
120
|
+
calculateCountValues: 'Policz wartości',
|
|
121
|
+
calculateCountUniqueValues: 'Policz unikalne wartości',
|
|
122
|
+
calculateCountEmpty: 'Policz puste',
|
|
123
|
+
calculateCountNotEmpty: 'Policz niepuste',
|
|
124
|
+
calculatePercentEmpty: 'Procent pustych',
|
|
125
|
+
calculatePercentNotEmpty: 'Procent niepustych',
|
|
126
|
+
filter: 'Filtr',
|
|
127
|
+
moveRight: 'Przesuń w prawo',
|
|
128
|
+
moveLeft: 'Przesuń w lewo',
|
|
129
|
+
columns: 'Kolumny',
|
|
130
|
+
resetTableSettings: 'Resetuj ustawienia tabeli',
|
|
131
|
+
search: 'Szukaj',
|
|
132
|
+
selectedItems: '{n} wybrany element|{n} wybrane elementy|{n} wybranych elementów',
|
|
133
|
+
cancelSelected: 'Anuluj zaznaczenie',
|
|
134
|
+
},
|
|
135
|
+
pagination: {
|
|
136
|
+
itemsPerPage: 'Elementów na stronę',
|
|
137
|
+
previous: 'Poprzednia',
|
|
138
|
+
next: 'Następna',
|
|
139
|
+
},
|
|
140
|
+
filter: {
|
|
141
|
+
search: 'Szukaj',
|
|
142
|
+
deselectAll: 'Odznacz wszystko',
|
|
143
|
+
selectAll: 'Zaznacz wszystko',
|
|
144
|
+
showSelected: 'Pokaż zaznaczone',
|
|
145
|
+
showAll: 'Pokaż wszystkie',
|
|
146
|
+
noResults: 'Brak wyników',
|
|
147
|
+
showMore: 'pokaż wszystkie ({count})',
|
|
148
|
+
hideMore: 'ukryj',
|
|
149
|
+
exact: 'Dokładne',
|
|
150
|
+
range: 'Zakres',
|
|
151
|
+
filterBy: 'Filtruj',
|
|
152
|
+
from: 'Od',
|
|
153
|
+
to: 'Do',
|
|
154
|
+
value: 'Wartość',
|
|
155
|
+
},
|
|
156
|
+
passwordValidation: 'Hasło powinno zawierać co najmniej 8 znaków, w tym wielkie i małe litery, cyfry oraz znaki specjalne (np. @, $, !, %, *, ?, &)',
|
|
157
|
+
iveGotIt: 'Rozumiem',
|
|
158
|
+
};
|
package/src/locales/uk.js
CHANGED
|
@@ -28,7 +28,8 @@ module.exports = {
|
|
|
28
28
|
pleaseEnterValidURL: 'Будь ласка, введіть дійсний URL',
|
|
29
29
|
pleaseEnteraValidHex: 'Будь ласка, введіть дійсний код кольору',
|
|
30
30
|
passwordsDontMatch: 'Паролі не збігаються',
|
|
31
|
-
|
|
31
|
+
thisFieldMustBeAIntegerFormatZero: 'Це поле має містити число',
|
|
32
|
+
thisFieldMustBeANumberFormatZero: 'Це поле має містити число (формат 0.00)',
|
|
32
33
|
theValueMustBeGreaterThanOrEqualToMinAndMax: 'Значення має бути більше або дорівнювати {min} і менше або дорівнювати {max}',
|
|
33
34
|
theValueMustBeGreaterThanOrEqualToMin: 'Значення має бути більше або дорівнювати {min}',
|
|
34
35
|
mustBeLessThanMax: 'Має бути менше ніж {max}',
|
|
@@ -56,10 +57,6 @@ module.exports = {
|
|
|
56
57
|
addMore: 'Додати ще',
|
|
57
58
|
close: 'Закрити',
|
|
58
59
|
wholeYear: 'Весь рік',
|
|
59
|
-
atLeastOneUppercaseLetterRequired: 'Має бути принаймні одна велика літера',
|
|
60
|
-
atLeastOneLowercaseLetterRequired: 'Має бути принаймні одна мала літера',
|
|
61
|
-
atLeastOneNumberRequired: 'Має бути принаймні одна цифра',
|
|
62
|
-
atLeastOneSpecialCharacterRequired: 'Має бути принаймні один спеціальний символ (@,$,!,%,*,?,&)',
|
|
63
60
|
|
|
64
61
|
select: {
|
|
65
62
|
loading: 'Завантаження...',
|
|
@@ -108,7 +105,7 @@ module.exports = {
|
|
|
108
105
|
next: 'Наступна',
|
|
109
106
|
},
|
|
110
107
|
table: {
|
|
111
|
-
new: 'Додати
|
|
108
|
+
new: 'Додати',
|
|
112
109
|
noResults: 'Немає записів',
|
|
113
110
|
sortAscending: 'Сортувати за зростанням',
|
|
114
111
|
sortDescending: 'Сортувати за спаданням',
|
|
@@ -156,5 +153,7 @@ module.exports = {
|
|
|
156
153
|
from: 'Від',
|
|
157
154
|
to: 'До',
|
|
158
155
|
value: 'Значення',
|
|
159
|
-
}
|
|
156
|
+
},
|
|
157
|
+
passwordValidation: 'Пароль має містити принаймні 8 символів, включаючи великі літери, малі літери, цифри та спеціальні символи (@, $, !, %, *, ?, &)',
|
|
158
|
+
iveGotIt: 'Зрозуміло',
|
|
160
159
|
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.60039 5.00039C8.60039 4.66902 8.33176 4.40039 8.00039 4.40039C7.66902 4.40039 7.40039 4.66902 7.40039 5.00039V6.44556C7.35748 6.45011 7.31553 6.45512 7.27454 6.46063C6.79953 6.52449 6.3652 6.6657 6.01547 7.01544C5.66574 7.36517 5.52452 7.7995 5.46066 8.2745C5.40035 8.72311 5.40037 9.28719 5.40039 9.95917V9.9592L5.40039 10.0004V15.0004L5.40039 15.0415V15.0416C5.40037 15.7135 5.40035 16.2776 5.46066 16.7262C5.52452 17.2012 5.66574 17.6356 6.01547 17.9853C6.3652 18.335 6.79953 18.4762 7.27454 18.5401C7.72314 18.6004 8.28721 18.6004 8.95917 18.6004H8.95923L9.00039 18.6004H15.0004L15.0416 18.6004H15.0416C15.7136 18.6004 16.2776 18.6004 16.7263 18.5401C17.2013 18.4762 17.6356 18.335 17.9853 17.9853C18.335 17.6356 18.4763 17.2012 18.5401 16.7262C18.6004 16.2776 18.6004 15.7135 18.6004 15.0416V15.0415L18.6004 15.0004V10.0004L18.6004 9.9592V9.95917C18.6004 9.28719 18.6004 8.72311 18.5401 8.2745C18.4763 7.7995 18.335 7.36517 17.9853 7.01544C17.6356 6.6657 17.2013 6.52449 16.7263 6.46063C16.6853 6.45512 16.6433 6.45011 16.6004 6.44556L16.6004 5.00039C16.6004 4.66902 16.3318 4.40039 16.0004 4.40039C15.669 4.40039 15.4004 4.66902 15.4004 5.00039V6.40072C15.2845 6.40035 15.1649 6.40035 15.0417 6.40036H15.0416L15.0004 6.40036H9.00039L8.95923 6.40036H8.9591H8.95908H8.95907H8.95905C8.83586 6.40035 8.71629 6.40035 8.60039 6.40072L8.60039 5.00039ZM17.3987 9.40036C17.3952 8.99258 17.3843 8.68374 17.3508 8.4344C17.3049 8.09246 17.2264 7.95357 17.1368 7.86396C17.0472 7.77436 16.9083 7.6959 16.5664 7.64993C16.2072 7.60163 15.7245 7.60036 15.0004 7.60036H9.00039C8.27632 7.60036 7.79363 7.60163 7.43443 7.64993C7.0925 7.6959 6.95361 7.77436 6.864 7.86396C6.77439 7.95357 6.69593 8.09246 6.64996 8.4344C6.61644 8.68374 6.60557 8.99258 6.60206 9.40036L17.3987 9.40036ZM6.60039 10.6004L17.4004 10.6004V15.0004C17.4004 15.7244 17.3991 16.2071 17.3508 16.5663C17.3049 16.9083 17.2264 17.0471 17.1368 17.1368C17.0472 17.2264 16.9083 17.3048 16.5664 17.3508C16.2072 17.3991 15.7245 17.4004 15.0004 17.4004H9.00039C8.27632 17.4004 7.79363 17.3991 7.43443 17.3508C7.0925 17.3048 6.95361 17.2264 6.864 17.1368C6.77439 17.0471 6.69593 16.9083 6.64996 16.5663C6.60167 16.2071 6.60039 15.7244 6.60039 15.0004V10.6004ZM7.90039 12.5004C7.90039 12.169 8.16902 11.9004 8.50039 11.9004L13.5004 11.9004C13.8318 11.9004 14.1004 12.169 14.1004 12.5004C14.1004 12.8318 13.8318 13.1004 13.5004 13.1004H8.50039C8.16902 13.1004 7.90039 12.8318 7.90039 12.5004ZM8.50039 15.6004H11.5004C11.8318 15.6004 12.1004 15.3318 12.1004 15.0004C12.1004 14.669 11.8318 14.4004 11.5004 14.4004H8.50039C8.16902 14.4004 7.90039 14.669 7.90039 15.0004C7.90039 15.3318 8.16902 15.6004 8.50039 15.6004Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
4
|
-
</template>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M10 6V18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M14 6V18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
</svg>
|
|
6
|
-
</template>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M13 15L8.5 15" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M12 9H8.5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M15 12H8.5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</svg>
|
|
7
|
-
</template>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M6 14L18 14" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M6 10L18 10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M10 6L10 18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M20.1384 16.7558C20.4109 16.2888 20.4109 15.7112 20.1384 15.2442L18.9718 13.2442C18.703 12.7834 18.2096 12.5 17.6761 12.5L15.3248 12.5C14.7913 12.5 14.298 12.7834 14.0292 13.2442L12.8625 15.2442C12.5901 15.7112 12.5901 16.2888 12.8625 16.7558L14.0292 18.7558C14.298 19.2166 14.7913 19.5 15.3248 19.5L17.6761 19.5C18.2096 19.5 18.703 19.2166 18.9718 18.7558L20.1384 16.7558Z" fill="currentColor" stroke="white"/>
|
|
7
|
-
<circle cx="16.5" cy="16" r="1" fill="white"/>
|
|
8
|
-
</svg>
|
|
9
|
-
</template>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.60039 5.00039C8.60039 4.66902 8.33176 4.40039 8.00039 4.40039C7.66902 4.40039 7.40039 4.66902 7.40039 5.00039V6.44556C7.35748 6.45011 7.31553 6.45512 7.27454 6.46063C6.79953 6.52449 6.3652 6.6657 6.01547 7.01544C5.66574 7.36517 5.52452 7.7995 5.46066 8.2745C5.40035 8.72311 5.40037 9.28719 5.40039 9.95917V9.9592L5.40039 10.0004V15.0004L5.40039 15.0415V15.0416C5.40037 15.7135 5.40035 16.2776 5.46066 16.7262C5.52452 17.2012 5.66574 17.6356 6.01547 17.9853C6.3652 18.335 6.79953 18.4762 7.27454 18.5401C7.72314 18.6004 8.28721 18.6004 8.95917 18.6004H8.95923L9.00039 18.6004H15.0004L15.0416 18.6004H15.0416C15.7136 18.6004 16.2776 18.6004 16.7263 18.5401C17.2013 18.4762 17.6356 18.335 17.9853 17.9853C18.335 17.6356 18.4763 17.2012 18.5401 16.7262C18.6004 16.2776 18.6004 15.7135 18.6004 15.0416V15.0415L18.6004 15.0004V10.0004L18.6004 9.9592V9.95917C18.6004 9.28719 18.6004 8.72311 18.5401 8.2745C18.4763 7.7995 18.335 7.36517 17.9853 7.01544C17.6356 6.6657 17.2013 6.52449 16.7263 6.46063C16.6853 6.45512 16.6433 6.45011 16.6004 6.44556L16.6004 5.00039C16.6004 4.66902 16.3318 4.40039 16.0004 4.40039C15.669 4.40039 15.4004 4.66902 15.4004 5.00039V6.40072C15.2845 6.40035 15.1649 6.40035 15.0417 6.40036H15.0416L15.0004 6.40036H9.00039L8.95923 6.40036H8.9591H8.95908H8.95907H8.95905C8.83586 6.40035 8.71629 6.40035 8.60039 6.40072L8.60039 5.00039ZM17.3987 9.40036C17.3952 8.99258 17.3843 8.68374 17.3508 8.4344C17.3049 8.09246 17.2264 7.95357 17.1368 7.86396C17.0472 7.77436 16.9083 7.6959 16.5664 7.64993C16.2072 7.60163 15.7245 7.60036 15.0004 7.60036H9.00039C8.27632 7.60036 7.79363 7.60163 7.43443 7.64993C7.0925 7.6959 6.95361 7.77436 6.864 7.86396C6.77439 7.95357 6.69593 8.09246 6.64996 8.4344C6.61644 8.68374 6.60557 8.99258 6.60206 9.40036L17.3987 9.40036ZM6.60039 10.6004L17.4004 10.6004V15.0004C17.4004 15.7244 17.3991 16.2071 17.3508 16.5663C17.3049 16.9083 17.2264 17.0471 17.1368 17.1368C17.0472 17.2264 16.9083 17.3048 16.5664 17.3508C16.2072 17.3991 15.7245 17.4004 15.0004 17.4004H9.00039C8.27632 17.4004 7.79363 17.3991 7.43443 17.3508C7.0925 17.3048 6.95361 17.2264 6.864 17.1368C6.77439 17.0471 6.69593 16.9083 6.64996 16.5663C6.60167 16.2071 6.60039 15.7244 6.60039 15.0004V10.6004ZM7.90039 12.5004C7.90039 12.169 8.16902 11.9004 8.50039 11.9004L13.5004 11.9004C13.8318 11.9004 14.1004 12.169 14.1004 12.5004C14.1004 12.8318 13.8318 13.1004 13.5004 13.1004H8.50039C8.16902 13.1004 7.90039 12.8318 7.90039 12.5004ZM8.50039 15.6004H11.5004C11.8318 15.6004 12.1004 15.3318 12.1004 15.0004C12.1004 14.669 11.8318 14.4004 11.5004 14.4004H8.50039C8.16902 14.4004 7.90039 14.669 7.90039 15.0004C7.90039 15.3318 8.16902 15.6004 8.50039 15.6004Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M10 6V18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M14 6V18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M13 15L8.5 15" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M12 9H8.5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M15 12H8.5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 18L10 18C8.11438 18 7.17157 18 6.58579 17.4142C6 16.8284 6 15.8856 6 14L6 10C6 8.11438 6 7.17157 6.58579 6.58579C7.17157 6 8.11438 6 10 6L14 6C15.8856 6 16.8284 6 17.4142 6.58579C18 7.17157 18 8.11438 18 10L18 14C18 15.8856 18 16.8284 17.4142 17.4142C16.8284 18 15.8856 18 14 18Z" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
-
<path d="M6 14L18 14" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M6 10L18 10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M10 6L10 18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M20.1384 16.7558C20.4109 16.2888 20.4109 15.7112 20.1384 15.2442L18.9718 13.2442C18.703 12.7834 18.2096 12.5 17.6761 12.5L15.3248 12.5C14.7913 12.5 14.298 12.7834 14.0292 13.2442L12.8625 15.2442C12.5901 15.7112 12.5901 16.2888 12.8625 16.7558L14.0292 18.7558C14.298 19.2166 14.7913 19.5 15.3248 19.5L17.6761 19.5C18.2096 19.5 18.703 19.2166 18.9718 18.7558L20.1384 16.7558Z" fill="currentColor" stroke="white"/>
|
|
7
|
-
<circle cx="16.5" cy="16" r="1" fill="white"/>
|
|
8
|
-
</svg>
|