mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Always use ctx.Locale.Tr inside templates (#27231)
				
					
				
			This commit is contained in:
		@@ -1,18 +1,18 @@
 | 
			
		||||
{{if eq .PackageDescriptor.Package.Type "vagrant"}}
 | 
			
		||||
	<h4 class="ui top attached header">{{.locale.Tr "packages.installation"}}</h4>
 | 
			
		||||
	<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.installation"}}</h4>
 | 
			
		||||
	<div class="ui attached segment">
 | 
			
		||||
		<div class="ui form">
 | 
			
		||||
			<div class="field">
 | 
			
		||||
				<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.vagrant.install"}}</label>
 | 
			
		||||
				<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.vagrant.install"}}</label>
 | 
			
		||||
				<div class="markup"><pre class="code-block"><code>vagrant box add --box-version {{.PackageDescriptor.Version.Version}} "<gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/vagrant/{{.PackageDescriptor.Package.Name}}"></gitea-origin-url>"</code></pre></div>
 | 
			
		||||
			</div>
 | 
			
		||||
			<div class="field">
 | 
			
		||||
				<label>{{.locale.Tr "packages.registry.documentation" "Vagrant" "https://docs.gitea.com/usage/packages/vagrant/" | Safe}}</label>
 | 
			
		||||
				<label>{{ctx.Locale.Tr "packages.registry.documentation" "Vagrant" "https://docs.gitea.com/usage/packages/vagrant/" | Safe}}</label>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
	{{if .PackageDescriptor.Metadata.Description}}
 | 
			
		||||
		<h4 class="ui top attached header">{{.locale.Tr "packages.about"}}</h4>
 | 
			
		||||
		<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.about"}}</h4>
 | 
			
		||||
		<div class="ui attached segment">{{.PackageDescriptor.Metadata.Description}}</div>
 | 
			
		||||
	{{end}}
 | 
			
		||||
{{end}}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user