mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	Fix two typos (#19504)
This commit is contained in:
		@@ -43,7 +43,7 @@ Vous devriez avoir une instance fonctionnelle de Gitea. Pour accèder à l'inter
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
## Named Volumes
 | 
					## Named Volumes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Ce guide aboutira à une installation avec les données Gita et PostgreSQL stockées dans des volumes nommés. Cela permet une sauvegarde, une restauration et des mises à niveau en toute simplicité.
 | 
					Ce guide aboutira à une installation avec les données Gitea et PostgreSQL stockées dans des volumes nommés. Cela permet une sauvegarde, une restauration et des mises à niveau en toute simplicité.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### The Database
 | 
					### The Database
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -460,7 +460,7 @@ Please try upgrading to a lower version first (suggested v1.6.4), then upgrade t
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	// Downgrading Gitea's database version not supported
 | 
						// Downgrading Gitea's database version not supported
 | 
				
			||||||
	if int(v-minDBVersion) > len(migrations) {
 | 
						if int(v-minDBVersion) > len(migrations) {
 | 
				
			||||||
		msg := fmt.Sprintf("Your database (migration version: %d) is for a newer Gita, you can not use the newer database for this old Gitea release (%d).", v, minDBVersion+len(migrations))
 | 
							msg := fmt.Sprintf("Your database (migration version: %d) is for a newer Gitea, you can not use the newer database for this old Gitea release (%d).", v, minDBVersion+len(migrations))
 | 
				
			||||||
		msg += "\nGitea will exit to keep your database safe and unchanged. Please use the correct Gitea release, do not change the migration version manually (incorrect manual operation may lose data)."
 | 
							msg += "\nGitea will exit to keep your database safe and unchanged. Please use the correct Gitea release, do not change the migration version manually (incorrect manual operation may lose data)."
 | 
				
			||||||
		if !setting.IsProd {
 | 
							if !setting.IsProd {
 | 
				
			||||||
			msg += fmt.Sprintf("\nIf you are in development and really know what you're doing, you can force changing the migration version by executing: UPDATE version SET version=%d WHERE id=1;", minDBVersion+len(migrations))
 | 
								msg += fmt.Sprintf("\nIf you are in development and really know what you're doing, you can force changing the migration version by executing: UPDATE version SET version=%d WHERE id=1;", minDBVersion+len(migrations))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user