Add stacking switcher in area charts #1139
Annotations
1 error
i18n_check
**i18n-check**
<details>
<summary>Errors occurred when merging changes from your branch with the Weblate branch.</summary>
```
warning: skipped previously applied commit 6228d48ca
warning: skipped previously applied commit 31aa6b251
warning: skipped previously applied commit e501b0a53
warning: skipped previously applied commit 54c4e0e49
hint: use --reapply-cherry-picks to include skipped commits
hint: Disable this message with "git config advice.skippedCherryPicks false"
Rebasing (1/1)
Auto-merging src/i18n-keysets/sql/en.json
CONFLICT (add/add): Merge conflict in src/i18n-keysets/sql/en.json
Auto-merging src/i18n-keysets/sql/ru.json
CONFLICT (add/add): Merge conflict in src/i18n-keysets/sql/ru.json
Auto-merging src/i18n-keysets/wizard/en.json
CONFLICT (add/add): Merge conflict in src/i18n-keysets/wizard/en.json
Auto-merging src/i18n-keysets/wizard/ru.json
CONFLICT (add/add): Merge conflict in src/i18n-keysets/wizard/ru.json
Auto-merging src/server/modes/charts/plugins/datalens/highcharts/highcharts.ts
CONFLICT (add/add): Merge conflict in src/server/modes/charts/plugins/datalens/highcharts/highcharts.ts
Auto-merging src/server/modes/charts/plugins/ql/yagr.ts
CONFLICT (add/add): Merge conflict in src/server/modes/charts/plugins/ql/yagr.ts
Auto-merging src/shared/modules/config/wizard/v10/mapV10ConfigToV11.ts
CONFLICT (add/add): Merge conflict in src/shared/modules/config/wizard/v10/mapV10ConfigToV11.ts
Auto-merging src/ui/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.scss
CONFLICT (add/add): Merge conflict in src/ui/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.scss
Auto-merging src/ui/registry/units/common/functions-map.ts
CONFLICT (add/add): Merge conflict in src/ui/registry/units/common/functions-map.ts
Auto-merging src/ui/registry/units/common/register.tsx
CONFLICT (add/add): Merge conflict in src/ui/registry/units/common/register.tsx
Auto-merging src/ui/store/actions/openDialogTypes.ts
CONFLICT (add/add): Merge conflict in src/ui/store/actions/openDialogTypes.ts
Auto-merging src/ui/units/dash/components/ParamsSettings/helpers.ts
CONFLICT (add/add): Merge conflict in src/ui/units/dash/components/ParamsSettings/helpers.ts
Auto-merging src/ui/units/dash/components/ParamsSettings/test/validateParamTitle.test.ts
CONFLICT (add/add): Merge conflict in src/ui/units/dash/components/ParamsSettings/test/validateParamTitle.test.ts
Auto-merging src/ui/units/dash/containers/Dialogs/Dialogs.js
CONFLICT (add/add): Merge conflict in src/ui/units/dash/containers/Dialogs/Dialogs.js
Auto-merging src/ui/units/wizard/components/Dialogs/DialogPointsSize.tsx
CONFLICT (add/add): Merge conflict in src/ui/units/wizard/components/Dialogs/DialogPointsSize.tsx
error: could not apply 29fdece7b... Add stacking switcher
hint: Resolve all conflicts manually, mark them as resolved with
hint: "git add/rm <conflicted_files>", then run "git rebase --continue".
hint: You can instead skip this commit: run "git rebase --skip".
hint: To abort and get back to the state before "git rebase", run "git rebase --abort".
Could not apply 29fdece7b... Add stacking switcher
(1)
```
</details>
**Resolve conflicts according to instructions**
1. Switch to the current branch associated with this pull request.
```
git checkout CHARTS-10648
```
2. Add Weblate as remote. And remove previous upstream with the same name:
```
git remote remove weblate 2> /dev/null
git remote add weblate https://weblate.gravity-ui.com/git/datalens/charts-10648-1818/chartkit-1818/
git -c http.sslVerify=false remote update weblate
```
3. Merge Weblate changes:
```
git merge weblate/CHARTS-10648
```
4. Resolve conflicts:
```
edit ...
git add ...
git commit
```
5. Push changes to upstream repository, Weblate will fetch merge from there:
```
git push origin
```
|