Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion i18n.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ translations:
tooltip-download-as-file: Télécharger en tant que fichier
it:
deeplLanguage: it
translators: []
translators:
- wd006
translations:
alert-secret-not-found: Questo non è il secret che stai cercando… - Se ti aspettavi di vedere il secret allora potrebbe essere stato compromesso poichè qualcun altro potrebbe aver già aperto il link.
alert-something-went-wrong: Qualcosa non ha funzionato. Mi dispiace davvero…
Expand Down Expand Up @@ -350,6 +351,10 @@ translations:
title-secret-created: Secret creato!
tooltip-copy-to-clipboard: Copia nella clipboard
tooltip-download-as-file: Scarica come file
alert-insecure-environment: Stai accedendo a questa istanza tramite una connessione non sicura. Non potrai creare o leggere secret.
btn-theme-switcher-auto: Auto
text-secret-burned: Il secret è stato distrutto con successo.
tooltip-burn-secret: Brucia il secret ora!
lv:
deeplLanguage: lv
translators: []
Expand Down
2 changes: 1 addition & 1 deletion src/langs/langs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions tplFuncs.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ type (
}
)

type (

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be in a translation PR… …and shouldn't be there at all.

sriCache struct {
c map[string]string
l sync.RWMutex
}
)

var (
sriCacheStore = newSRICache()
tplFuncs template.FuncMap
Expand Down
Loading