mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-06-06 17:38:50 +00:00
chore: swap project and general settings in code and align text settings
This commit is contained in:
parent
28d5452c85
commit
5ee25d378d
2 changed files with 4 additions and 4 deletions
|
@ -70,8 +70,8 @@
|
||||||
"settings": {
|
"settings": {
|
||||||
"not_allowed": "You are not allowed to access this repository's settings",
|
"not_allowed": "You are not allowed to access this repository's settings",
|
||||||
"general": {
|
"general": {
|
||||||
"general": "Repository settings",
|
"general": "General",
|
||||||
"project": "General",
|
"project": "Repository settings",
|
||||||
"save": "Save settings",
|
"save": "Save settings",
|
||||||
"success": "Repository settings updated",
|
"success": "Repository settings updated",
|
||||||
"pipeline_path": {
|
"pipeline_path": {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<Settings :title="$t('repo.settings.general.general')">
|
<Settings :title="$t('repo.settings.general.project')">
|
||||||
<form v-if="repoSettings" class="flex flex-col" @submit.prevent="saveRepoSettings">
|
<form v-if="repoSettings" class="flex flex-col" @submit.prevent="saveRepoSettings">
|
||||||
<InputField
|
<InputField
|
||||||
docs-url="docs/usage/project-settings#project-settings-1"
|
docs-url="docs/usage/project-settings#project-settings-1"
|
||||||
:label="$t('repo.settings.general.project')"
|
:label="$t('repo.settings.general.general')"
|
||||||
>
|
>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
v-model="repoSettings.allow_pr"
|
v-model="repoSettings.allow_pr"
|
||||||
|
|
Loading…
Reference in a new issue