mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 01:04:25 +00:00
98088befae
The code was just copied&pasted, it causes problems now. There are a lot (for every package) broken translations. eg: ``` # en-US conda.documentation = For more information on the Conda registry, see <a target="_blank" rel="noopener noreferrer" href="%s">the documentation</a>. # fr-FR (and many languages) conda.documentation=Pour plus d'informations sur le registre Conda, voir <a target="_blank" rel="noopener noreferrer" href="https://docs.gitea.io/fr-fr/packages/conda/">la documentation</a>. ``` To resolve the problem fundamentally, use a general string, and trigger the re-translating on Crowdin side. And, it should really really really avoid introducing too much copied&pasted code .......
35 lines
1.5 KiB
Handlebars
35 lines
1.5 KiB
Handlebars
{{if eq .PackageDescriptor.Package.Type "conan"}}
|
|
<h4 class="ui top attached header">{{.locale.Tr "packages.installation"}}</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.conan.registry"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>conan remote add gitea <gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/conan"></gitea-origin-url></code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.conan.install"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>conan install --remote=gitea {{.PackageDescriptor.Package.Name}}/{{.PackageDescriptor.Version.Version}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{.locale.Tr "packages.registry.documentation" "Conan" "https://docs.gitea.io/en-us/usage/packages/conan/" | Safe}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{if .PackageDescriptor.Metadata.Description}}
|
|
<h4 class="ui top attached header">{{.locale.Tr "packages.about"}}</h4>
|
|
<div class="ui attached segment">
|
|
{{if .PackageDescriptor.Metadata.Description}}{{.PackageDescriptor.Metadata.Description}}{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if or .PackageDescriptor.Metadata.Keywords}}
|
|
<h4 class="ui top attached header">{{.locale.Tr "packages.keywords"}}</h4>
|
|
<div class="ui attached segment">
|
|
{{range .PackageDescriptor.Metadata.Keywords}}
|
|
{{.}}
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|