Skip to content

Commit 493211b

Browse files
authored
Merge branch 'main' into lunny/fix_db_default_context
2 parents 618c587 + c9110eb commit 493211b

35 files changed

+136
-120
lines changed

integrations/git_helper_for_declarative_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"os"
1414
"path"
1515
"path/filepath"
16+
"strconv"
1617
"strings"
1718
"testing"
1819
"time"
@@ -55,7 +56,7 @@ func createSSHUrl(gitPath string, u *url.URL) *url.URL {
5556
u2 := *u
5657
u2.Scheme = "ssh"
5758
u2.User = url.User("git")
58-
u2.Host = fmt.Sprintf("%s:%d", setting.SSH.ListenHost, setting.SSH.ListenPort)
59+
u2.Host = net.JoinHostPort(setting.SSH.ListenHost, strconv.Itoa(setting.SSH.ListenPort))
5960
u2.Path = gitPath
6061
return &u2
6162
}

models/migrations/v161.go

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
package migrations
66

77
import (
8+
"context"
9+
810
"xorm.io/xorm"
911
)
1012

@@ -42,8 +44,17 @@ func convertTaskTypeToString(x *xorm.Engine) error {
4244
return err
4345
}
4446

47+
// to keep the migration could be rerun
48+
exist, err := x.Dialect().IsColumnExist(x.DB(), context.Background(), "hook_task", "type")
49+
if err != nil {
50+
return err
51+
}
52+
if !exist {
53+
return nil
54+
}
55+
4556
for i, s := range hookTaskTypes {
46-
if _, err := x.Exec("UPDATE hook_task set typ = ? where type=?", s, i); err != nil {
57+
if _, err := x.Exec("UPDATE hook_task set typ = ? where `type`=?", s, i); err != nil {
4758
return err
4859
}
4960
}

modules/convert/git_commit.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,9 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
147147

148148
return &api.Commit{
149149
CommitMeta: &api.CommitMeta{
150-
URL: repo.APIURL() + "/git/commits/" + commit.ID.String(),
151-
SHA: commit.ID.String(),
150+
URL: repo.APIURL() + "/git/commits/" + commit.ID.String(),
151+
SHA: commit.ID.String(),
152+
Created: commit.Committer.When,
152153
},
153154
HTMLURL: repo.HTMLURL() + "/commit/" + commit.ID.String(),
154155
RepoCommit: &api.RepoCommit{
@@ -169,8 +170,9 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
169170
},
170171
Message: commit.Message(),
171172
Tree: &api.CommitMeta{
172-
URL: repo.APIURL() + "/git/trees/" + commit.ID.String(),
173-
SHA: commit.ID.String(),
173+
URL: repo.APIURL() + "/git/trees/" + commit.ID.String(),
174+
SHA: commit.ID.String(),
175+
Created: commit.Committer.When,
174176
},
175177
},
176178
Author: apiAuthor,

modules/setting/log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func getLogLevel(section *ini.Section, key string, defaultValue log.Level) log.L
120120
}
121121

122122
func getStacktraceLogLevel(section *ini.Section, key string, defaultValue string) string {
123-
value := section.Key(key).MustString("none")
123+
value := section.Key(key).MustString(defaultValue)
124124
return log.FromString(value).String()
125125
}
126126

modules/ssh/ssh.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
"os"
1818
"os/exec"
1919
"path/filepath"
20+
"strconv"
2021
"strings"
2122
"sync"
2223
"syscall"
@@ -264,7 +265,7 @@ func sshConnectionFailed(conn net.Conn, err error) {
264265
// Listen starts a SSH server listens on given port.
265266
func Listen(host string, port int, ciphers []string, keyExchanges []string, macs []string) {
266267
srv := ssh.Server{
267-
Addr: fmt.Sprintf("%s:%d", host, port),
268+
Addr: net.JoinHostPort(host, strconv.Itoa(port)),
268269
PublicKeyHandler: publicKeyHandler,
269270
Handler: sessionHandler,
270271
ServerConfigCallback: func(ctx ssh.Context) *gossh.ServerConfig {

options/locale/locale_bg-BG.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ lfs_path=Git LFS основна директория
129129
lfs_path_helper=Файловете, проследявани от Git LFS ще бъдат съхранявани в тази директория. Оставете празно, за да го изключите.
130130
run_user=Изпълни като потребителско име
131131
run_user_helper=Въведете името на акаунта, под който ще се стартира Gitea. Този акаунт трябва да има достъп до директорията с хранилищата.
132-
domain=Домейн на SSH сървъра
133132
ssh_port=SSH сървър порт
134133
ssh_port_helper=Номер на порт, на който слуша SSH сървъра. Оставете празно, за да забраните.
135134
http_port=Gitea HTTP Listen Порт
@@ -1141,7 +1140,6 @@ config.reverse_auth_user=Потребителско име при обратно
11411140

11421141
config.ssh_config=SSH конфигурация
11431142
config.ssh_enabled=Активен
1144-
config.ssh_domain=Домейн на сървъра
11451143
config.ssh_port=Порт
11461144
config.ssh_listen_port=Порт за слушане
11471145
config.ssh_root_path=Основен път

options/locale/locale_cs-CZ.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ lfs_path=Kořenový adresář Git LFS
149149
lfs_path_helper=V tomto adresáři budou uloženy soubory, které jsou sledovány Git LFS. Pokud ponecháte prázdné, LFS zakážete.
150150
run_user=Spustit jako uživatel
151151
run_user_helper=Zadejte uživatelské jméno, pod kterým Gitea běží v operačním systému. Pozor: tento uživatel musí mít přístup ke kořenovému adresáři repozitářů.
152-
domain=Doména SSH serveru
153-
domain_helper=Doména nebo adresa hostitele pro URL použité pro SSH klonování.
154152
ssh_port=Port SSH serveru
155153
ssh_port_helper=Číslo portu, na kterém SSH server naslouchá. Když ponecháte prázdné, SSH server zakážete.
156154
http_port=Port, na kterém Gitea naslouchá HTTP protokolu
@@ -2438,7 +2436,6 @@ config.app_ver=Verze Gitea
24382436
config.app_url=Základní URL Gitea
24392437
config.custom_conf=Cesta ke konfiguračnímu souboru
24402438
config.custom_file_root_path=Kořenový adresář vlastních souborů
2441-
config.domain=Doména SSH serveru
24422439
config.offline_mode=Lokální režim
24432440
config.disable_router_log=Vypnout log směrovače
24442441
config.run_user=Spustit jako uživatel
@@ -2454,7 +2451,6 @@ config.reverse_auth_user=Uživatel obráceného ověření
24542451
config.ssh_config=Nastavení SSH
24552452
config.ssh_enabled=Zapnutý
24562453
config.ssh_start_builtin_server=Použít vestavěný server
2457-
config.ssh_domain=Doména serveru
24582454
config.ssh_port=Port
24592455
config.ssh_listen_port=Port pro naslouchání
24602456
config.ssh_root_path=Kořenová cesta

options/locale/locale_de-DE.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ lfs_path=Git-LFS-Wurzelpfad
149149
lfs_path_helper=In diesem Verzeichnis werden die Dateien von Git LFS abgespeichert. Leer lassen, um LFS zu deaktivieren.
150150
run_user=Ausführen als
151151
run_user_helper=Gib den Betriebssystem-Benutzernamen ein, unter welchem Gitea laufen soll. Beachte, dass dieser Nutzer Zugriff auf den Repository-Ordner haben muss.
152-
domain=SSH-Server-Domain
153-
domain_helper=Domain oder Host-Adresse für die SSH-URL.
154152
ssh_port=SSH-Server-Port
155153
ssh_port_helper=Der Port deines SSH-Servers. Leer lassen, um SSH zu deaktivieren.
156154
http_port=Gitea-HTTP-Listen-Port
@@ -2490,7 +2488,6 @@ config.app_ver=Gitea-Version
24902488
config.app_url=Gitea-Basis-URL
24912489
config.custom_conf=Konfigurations-Datei-Pfad
24922490
config.custom_file_root_path=Benutzerdefinierter Root Pfad
2493-
config.domain=SSH-Server-Domain
24942491
config.offline_mode=Lokaler Modus
24952492
config.disable_router_log=Router-Log deaktivieren
24962493
config.run_user=Ausführen als
@@ -2506,7 +2503,6 @@ config.reverse_auth_user=Nutzer bei Reverse-Authentifizierung
25062503
config.ssh_config=SSH-Konfiguration
25072504
config.ssh_enabled=Aktiviert
25082505
config.ssh_start_builtin_server=Eingebauten Server verwenden
2509-
config.ssh_domain=Server-Domain
25102506
config.ssh_port=Port
25112507
config.ssh_listen_port=Listen-Port
25122508
config.ssh_root_path=Wurzelverzeichnis

options/locale/locale_el-GR.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ lfs_path=Ριζική Διαδρομή Git LFS
149149
lfs_path_helper=Τα αρχεία που παρακολουθούνται από το Git LFS θα αποθηκεύονται σε αυτόν τον φάκελο. Αφήστε κενό για να το απενεργοποιήσετε.
150150
run_user=Εκτέλεση Σαν Χρήστη
151151
run_user_helper=Εισάγετε το όνομα χρήστη του λειτουργικού συστήματος με το οποίο εκτελείται το Gitea. Σημειώστε ότι αυτός ο χρήστης πρέπει να έχει πρόσβαση στο φάκελο των αποθετηρίων.
152-
domain=Όνομα Τομέα Διακομιστή SSH
153-
domain_helper=Όνομα τομέα ή διεύθυνση διακομιστή τα URL κλωνοποίησης μέσω SSH.
154152
ssh_port=Θύρα της υπηρεσίας SSH
155153
ssh_port_helper=Αριθμός θύρας που ακούει η υπηρεσία SSH. Αφήστε κενό για να το απενεργοποιήσετε.
156154
http_port=Η HTTP θύρα που ακούει το Gitea
@@ -2541,7 +2539,6 @@ config.app_ver=Έκδοση Gitea
25412539
config.app_url=Βασικό URL Του Gitea
25422540
config.custom_conf=Διαδρομή Αρχείου Ρυθμίσεων
25432541
config.custom_file_root_path=Προσαρμοσμένη Βασική Διαδρομή Αρχείου
2544-
config.domain=Domain Διακομιστή SSH
25452542
config.offline_mode=Τοπική Λειτουργία
25462543
config.disable_router_log=Απενεργοποίηση Καταγραφής Δρομολογητή
25472544
config.run_user=Εκτέλεση Σαν Χρήστη
@@ -2557,7 +2554,6 @@ config.reverse_auth_user=Χρήστης ΑντίστροφηςΠιστοποίη
25572554
config.ssh_config=Ρύθμιση SSH
25582555
config.ssh_enabled=Ενεργοποιημένο
25592556
config.ssh_start_builtin_server=Χρήση Ενσωματωμένου Διακομιστή
2560-
config.ssh_domain=Domain Διακομιστή
25612557
config.ssh_port=Θύρα
25622558
config.ssh_listen_port=Θύρα Ακρόασης
25632559
config.ssh_root_path=Ριζική Διαδρομή

options/locale/locale_en-US.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ lfs_path = Git LFS Root Path
149149
lfs_path_helper = Files tracked by Git LFS will be stored in this directory. Leave empty to disable.
150150
run_user = Run As Username
151151
run_user_helper = Enter the operating system username that Gitea runs as. Note that this user must have access to the repository root path.
152-
domain = SSH Server Domain
153-
domain_helper = Domain or host address for SSH clone URLs.
152+
domain = Server Domain
153+
domain_helper = Domain or host address for the server.
154154
ssh_port = SSH Server Port
155155
ssh_port_helper = Port number your SSH server listens on. Leave empty to disable.
156156
http_port = Gitea HTTP Listen Port
@@ -2547,7 +2547,7 @@ config.app_ver = Gitea Version
25472547
config.app_url = Gitea Base URL
25482548
config.custom_conf = Configuration File Path
25492549
config.custom_file_root_path = "Custom File Root Path"
2550-
config.domain = SSH Server Domain
2550+
config.domain = Server Domain
25512551
config.offline_mode = Local Mode
25522552
config.disable_router_log = Disable Router Log
25532553
config.run_user = Run As Username
@@ -2563,7 +2563,7 @@ config.reverse_auth_user = Reverse Authentication User
25632563
config.ssh_config = SSH Configuration
25642564
config.ssh_enabled = Enabled
25652565
config.ssh_start_builtin_server = Use Built-In Server
2566-
config.ssh_domain = Server Domain
2566+
config.ssh_domain = SSH Server Domain
25672567
config.ssh_port = Port
25682568
config.ssh_listen_port = Listen Port
25692569
config.ssh_root_path = Root Path

options/locale/locale_es-ES.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ lfs_path=Ruta raíz de Git LFS
149149
lfs_path_helper=Los archivos almacenados con Git LFS se almacenarán en este directorio. Déjelo vacío para deshabilitarlo.
150150
run_user=Ejecutar como usuario
151151
run_user_helper=Introduzca el nombre de usuario del sistema operativo sobre el que está ejecutando Gitea. Tenga en cuenta que este usuario debe tener acceso a la ruta a la raíz de los repositorios.
152-
domain=Dominio del servidor SSH
153-
domain_helper=Dominio o dirección del host para URLs de clonación vía SSH.
154152
ssh_port=Puerto de servidor SSH
155153
ssh_port_helper=Número de puerto en el que está escuchando su servidor SSH. Déjelo vacío para deshabilitarlo.
156154
http_port=Puerto de escucha HTTP de Gitea
@@ -2535,7 +2533,6 @@ config.app_ver=Versión de Gitea
25352533
config.app_url=URL base de Gitea
25362534
config.custom_conf=Ruta del fichero de configuración
25372535
config.custom_file_root_path=Ruta raíz de los archivos personalizada
2538-
config.domain=Dominio del servidor SSH
25392536
config.offline_mode=Modo offline
25402537
config.disable_router_log=Deshabilitar Log del Router
25412538
config.run_user=Ejecutar como usuario
@@ -2551,7 +2548,6 @@ config.reverse_auth_user=Autenticación Inversa de Usuario
25512548
config.ssh_config=Configuración SSH
25522549
config.ssh_enabled=Habilitado
25532550
config.ssh_start_builtin_server=Utilizar servidor integrado
2554-
config.ssh_domain=Dominio del servidor
25552551
config.ssh_port=Puerto
25562552
config.ssh_listen_port=Puerto de escucha
25572553
config.ssh_root_path=Ruta raíz

options/locale/locale_fa-IR.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,6 @@ lfs_path=مسیر Git LFS
138138
lfs_path_helper=فایل هایی که توسط Git LFS دنبال میشوند در این پوشه ذخیره خواهند شد. درصورت خالی بودن فیلد این قابلیت غیرفعال خواهد بود.
139139
run_user=اجرا به عنوان نام کاربری
140140
run_user_helper=نام کاربری ای که گیتی با آن اجرا میشود را وارد کنید. توجه کنید که کاربر باید به پوشه ریشه مخزن دسترسی داشته باشد.
141-
domain=دامنه سرور SSH
142-
domain_helper=آدرس دامنه یا میزبان برای SSH کلون آدرس ها.
143141
ssh_port=پورت SSH سرور
144142
ssh_port_helper=شماره درگاهی که سرور SSH گوش می دهد. برای غیر فعال کردن خالی بگذارید.
145143
http_port=پورت HTTP گیتی
@@ -1962,7 +1960,6 @@ config.app_ver=نسخه‌ی GitGo
19621960
config.app_url=آدرس پایه گیتی
19631961
config.custom_conf=مسیر پرونده پیکربندی
19641962
config.custom_file_root_path=مسیر ریشه‌ی پرونده سفارشی
1965-
config.domain=دامنه سرور SSH
19661963
config.offline_mode=شیوه محلی
19671964
config.disable_router_log=غیرفعال کردن گزارش مسیریاب
19681965
config.run_user=اجرا به عنوان نام کاربری
@@ -1978,7 +1975,6 @@ config.reverse_auth_user=شیوه ی احرازهویت معکوس
19781975
config.ssh_config=پیکربندی SSH
19791976
config.ssh_enabled=فعال شده
19801977
config.ssh_start_builtin_server=استفاده از ساخته سرور
1981-
config.ssh_domain=دامنه سرور
19821978
config.ssh_port=درگاه (پورت)
19831979
config.ssh_listen_port=گوش دادن به پورت
19841980
config.ssh_root_path=مسیر ریشه

options/locale/locale_fi-FI.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@ lfs_path=Git LFS -juuripolku
129129
lfs_path_helper=Git LFS:n ylläpitämät tiedostot tullaan tallentamaan tähän hakemistoon. Jätä tyhjäksi kytkeäksesi toiminnon pois.
130130
run_user=Aja käyttäjänä
131131
run_user_helper=Anna käyttäjätunnus, jona Giteaa ajetaan. Käyttäjällä on oltava oikeudet repositorioiden juuripolkuun.
132-
domain=SSH-palvelimen osoite (hostname)
133-
domain_helper=Domain tai osoite SSH-klooniosoitteille.
134132
ssh_port=SSH-palvelimen portti
135133
ssh_port_helper=Porttinumero, jossa SSH-palvelimesi kuuntelee. Jätä tyhjäksi kytkeäksesi pois.
136134
http_port=Gitean HTTP-kuunteluportti

options/locale/locale_fr-FR.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ lfs_path=Répertoire racine Git LFS
149149
lfs_path_helper=Les fichiers suivis par Git LFS seront stockés dans ce dossier. Laissez vide pour désactiver LFS.
150150
run_user=Exécuter avec le compte d'un autre utilisateur
151151
run_user_helper=Veuillez entrer le nom d'utilisateur système exécutant Gitea. Cet utilisateur doit avoir accès au dossier racine des dépôts.
152-
domain=Domaine du serveur SSH
153-
domain_helper=Domaine ou adresse de l'hôte pour les URLs de clonage par SSH.
154152
ssh_port=Port du serveur SSH
155153
ssh_port_helper=Port d'écoute du serveur SSH. Laissez le vide pour le désactiver.
156154
http_port=Port d'écoute HTTP de Gitea
@@ -2336,7 +2334,6 @@ config.app_ver=Version de Gitea
23362334
config.app_url=URL de base de Gitea
23372335
config.custom_conf=Chemin du fichier de configuration
23382336
config.custom_file_root_path=Emplacement personnalisé du fichier racine
2339-
config.domain=Domaine du serveur SSH
23402337
config.offline_mode=Mode hors-ligne
23412338
config.disable_router_log=Désactiver la Journalisation du Routeur
23422339
config.run_user=Exécuter avec l'utilisateur
@@ -2352,7 +2349,6 @@ config.reverse_auth_user=Annuler l'Authentification de l'Utilisateur
23522349
config.ssh_config=Configuration SSH
23532350
config.ssh_enabled=Activé
23542351
config.ssh_start_builtin_server=Utiliser le serveur incorporé
2355-
config.ssh_domain=Domaine du serveur
23562352
config.ssh_port=Port
23572353
config.ssh_listen_port=Port d'écoute
23582354
config.ssh_root_path=Emplacement racine

options/locale/locale_hu-HU.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ lfs_path=LFS Gyökérkönyvtár
137137
lfs_path_helper=A fájlok amiket Git LFS-el elmentesz ebbe a könyvtárba kerülnek. Hagyd üresen az LFS kikapcsolásához.
138138
run_user=Futtatás mint
139139
run_user_helper=Kérem adja meg azt az operációs rendszerbeli felhasználónevét, amelynek nevébena Gitea fut. Vegye figyelembe, hogy ennek a felhasználónak rendelkeznie kell a hozzáféréssel a gyökérkönyvtárhoz.
140-
domain=SSH szerver Domain
141-
domain_helper=Domain vagy állomás cím SSH klón url-hez.
142140
ssh_port=SSH szerver port
143141
ssh_port_helper=SSH port amit az ön szervere használni fog. Hagyja üresen a kikapcsoláshoz.
144142
http_port=Gitea HTTP Figyelő Port
@@ -1602,7 +1600,6 @@ config.app_ver=Gitea Verzió
16021600
config.app_url=A Gitea alapértelmezett címe
16031601
config.custom_conf=Konfigurációs fájl elérési útja
16041602
config.custom_file_root_path=Egyedi fájlok gyökérútvonala
1605-
config.domain=SSH szerver Domain
16061603
config.offline_mode=Helyi mód
16071604
config.disable_router_log=Útválasztás naplózásának letiltása
16081605
config.run_user=Futtatás mint
@@ -1618,7 +1615,6 @@ config.reverse_auth_user=Visszafelé hitelesítés felhasználója
16181615
config.ssh_config=SSH Konfiguráció
16191616
config.ssh_enabled=Engedélyezett
16201617
config.ssh_start_builtin_server=Beépített szerver használata
1621-
config.ssh_domain=Szerver Domain
16221618
config.ssh_port=Port
16231619
config.ssh_listen_port=Figyelő port
16241620
config.ssh_root_path=Gyökérkönyvtár

options/locale/locale_id-ID.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ lfs_path=Path Akar Git LFS
131131
lfs_path_helper=Berkas yang tersimpan dengan Git LFS akan disimpan ke direktori ini. Biarkan kosong untuk menonaktifkan LFS.
132132
run_user=Jalankan Sebagai Nama Pengguna
133133
run_user_helper=Masukkan nama pengguna sistem operasi yang menjalankan Gitea. Perhatikan bahwa pengguna ini harus memiliki akses ke path akar dari repositori.
134-
domain=SSH Server Domain
135-
domain_helper=Alamat domain atau host untuk URL klon SSH.
136134
ssh_port=Port Server SSH
137135
ssh_port_helper=Nomor port server SSH anda. Biarkan kosong untuk menonaktifkan.
138136
http_port=Port HTTP Gitea
@@ -1213,7 +1211,6 @@ auths.delete_auth_title=Menghapus Otentikasi Sumber
12131211
config.server_config=Pengaturan Server
12141212
config.app_ver=Versi Gitea
12151213
config.custom_conf=Jalur berkas konfigurasi
1216-
config.domain=Domain SSH Server
12171214
config.disable_router_log=Menonaktifkan router log
12181215
config.run_mode=Jalankan mode
12191216
config.git_version=Versi Git
@@ -1225,7 +1222,6 @@ config.reverse_auth_user=Mengembalikan pengguna otentikasi
12251222

12261223
config.ssh_config=Konfigurasi SSH
12271224
config.ssh_enabled=Aktif
1228-
config.ssh_domain=Domain Server
12291225
config.ssh_port=Port
12301226
config.ssh_listen_port=Listen Port
12311227
config.ssh_root_path=Path Induk

options/locale/locale_it-IT.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ lfs_path=Percorso radice di Git LFS
144144
lfs_path_helper=I file trovati da Git LFS saranno salvati in questa directory. Lasciare vuoto per disattivare.
145145
run_user=Esegui come Nome utente
146146
run_user_helper=Inserisci il nome utente del sistema operativo su cui Gitea viene eseguito. Nota che l'utente deve avere accesso al percorso radice dei repository.
147-
domain=Dominio Server SSH
148-
domain_helper=Dominio o nome host per SSH clone URLs.
149147
ssh_port=Porta Server SSH
150148
ssh_port_helper=Numero di porta in ascolto sul server SSH. Lasciare vuoto per disattivare.
151149
http_port=Porta in ascolto HTTP Gitea
@@ -2180,7 +2178,6 @@ config.app_ver=Versione Gitea
21802178
config.app_url=URL di base di Gitea
21812179
config.custom_conf=Percorso file di configurazione
21822180
config.custom_file_root_path=Percorso Root File Personalizzato
2183-
config.domain=Dominio Server SSH
21842181
config.offline_mode=Modalità locale
21852182
config.disable_router_log=Disattivare Log del Router
21862183
config.run_user=Esegui come Nome utente
@@ -2196,7 +2193,6 @@ config.reverse_auth_user=Autenticazione Utente Inversa
21962193
config.ssh_config=Configurazione SSH
21972194
config.ssh_enabled=Attivo
21982195
config.ssh_start_builtin_server=Usa il server integrato
2199-
config.ssh_domain=Dominio Server
22002196
config.ssh_port=Porta
22012197
config.ssh_listen_port=Porta in ascolto
22022198
config.ssh_root_path=Percorso Root

0 commit comments

Comments
 (0)