Skip to content

Commit d285c36

Browse files
Merge branch 'main' into allspice/workflow-link
2 parents de0190a + 7eef261 commit d285c36

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

options/locale/locale_lv-LV.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ enable_javascript=Šai tīmekļvietnei ir nepieciešams JavaScript.
2525
toc=Satura rādītājs
2626
licenses=Licences
2727
return_to_gitea=Atgriezties Gitea
28+
more_items=Vairāk vienumu
2829

2930
username=Lietotājvārds
3031
email=E-pasta adrese
@@ -92,6 +93,7 @@ remove_all=Noņemt visus
9293
remove_label_str=`Noņemt ierakstu "%s"`
9394
edit=Labot
9495
view=Skatīt
96+
test=Pārbaudīt
9597

9698
enabled=Iespējots
9799
disabled=Atspējots
@@ -113,6 +115,7 @@ loading=Notiek ielāde…
113115
error=Kļūda
114116
error404=Lapa, ko tiek mēģināts atvērt, vai nu <strong>nepastāv</strong> vai arī <strong>nav tiesību</strong> to aplūkot.
115117
go_back=Atgriezties
118+
invalid_data=Nederīgi dati: %v
116119

117120
never=Nekad
118121
unknown=Nezināms

web_src/js/components/RepoBranchTagSelector.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,11 @@ export default sfc; // activate IDE's Vue plugin
289289
<a href="#" @click="createNewBranch()">
290290
<div v-show="shouldCreateTag">
291291
<i class="reference tags icon"/>
292-
<!-- eslint-disable-next-line vue/no-v-html -->
293-
<span v-html="textCreateTag.replace('%s', searchTerm)"/>
292+
<span v-text="textCreateTag.replace('%s', searchTerm)"/>
294293
</div>
295294
<div v-show="!shouldCreateTag">
296295
<svg-icon name="octicon-git-branch"/>
297-
<!-- eslint-disable-next-line vue/no-v-html -->
298-
<span v-html="textCreateBranch.replace('%s', searchTerm)"/>
296+
<span v-text="textCreateBranch.replace('%s', searchTerm)"/>
299297
</div>
300298
<div class="text small">
301299
<span v-if="isViewBranch || release">{{ textCreateBranchFrom.replace('%s', branchName) }}</span>

0 commit comments

Comments
 (0)