controlpanel: use english for untranslated strings

This commit is contained in:
ed
2025-12-14 20:14:05 +00:00
parent 08474dbe14
commit 56e15009c7
5 changed files with 11 additions and 1 deletions

View File

@@ -455,7 +455,7 @@ upgrade notes
* per-volume configuration; many (not all) global-options can be set as volflags, and most (not all) volflags can be set as global-options; [complete list of volflags](https://copyparty.eu/cli/#flags-help-page) * per-volume configuration; many (not all) global-options can be set as volflags, and most (not all) volflags can be set as global-options; [complete list of volflags](https://copyparty.eu/cli/#flags-help-page)
* what is a volume? * what is a volume?
* a mapping from a URL (`/music/`) to a folder on your server's local filesystem (`/home/ed/Music` or `C:\Users\ed\Music`) which can then be accessed through copyparty, depending on the permissions and options you set on it -- see [accounts and volumes](#accounts-and-volumes) * a mapping from a URL (`/music/`) to a folder on your server's local filesystem (`C:\Users\ed\Music`) which can then be accessed through copyparty, depending on the permissions and options you set on it -- see [accounts and volumes](#accounts-and-volumes)
* can I change the 🌲 spinning pine-tree loading animation? * can I change the 🌲 spinning pine-tree loading animation?
* [yeah...](https://github.com/9001/copyparty/tree/hovudstraum/docs/rice#boring-loader-spinner) :-( * [yeah...](https://github.com/9001/copyparty/tree/hovudstraum/docs/rice#boring-loader-spinner) :-(

View File

@@ -17,6 +17,10 @@ if (window.langmod)
langmod(); langmod();
var d = (Ls[lang] || Ls.eng).splash; var d = (Ls[lang] || Ls.eng).splash;
if (Ls.eng && d !== Ls.eng.splash)
for (var k in Ls.eng.splash)
if (d[k] === undefined)
d[k] = Ls.eng.splash[k];
d.wb = d.w; d.wb = d.w;

View File

@@ -675,6 +675,8 @@ Ls.nor = {
"ta1": "du må skrive et nytt passord først", "ta1": "du må skrive et nytt passord først",
"ta2": "gjenta for å bekrefte nytt passord:", "ta2": "gjenta for å bekrefte nytt passord:",
"ta3": "fant en skrivefeil; vennligst prøv igjen", "ta3": "fant en skrivefeil; vennligst prøv igjen",
"nop": "FEIL: Passord kan ikke være blankt",
"nou": "FEIL: Både brukernavn og passord må angis",
"aa1": "innkommende:", "aa1": "innkommende:",
"ab1": "skru av no304", "ab1": "skru av no304",
"ac1": "skru på no304", "ac1": "skru på no304",

View File

@@ -702,6 +702,8 @@ Ls.hmn = {
"ta1": "fill in your new password first", "ta1": "fill in your new password first",
"ta2": "repeat to confirm new password:", "ta2": "repeat to confirm new password:",
"ta3": "found a typo; please try again", "ta3": "found a typo; please try again",
"nop": "ERROR: Password cannot be blank",
"nou": "ERROR: Username and/or password cannot be blank",
"aa1": "incoming files:", "aa1": "incoming files:",
"ab1": "disable no304", "ab1": "disable no304",
"ac1": "enable no304", "ac1": "enable no304",

View File

@@ -105,6 +105,8 @@ Ls.{lang3} = {{
"ta1": "fill in your new password first", "ta1": "fill in your new password first",
"ta2": "repeat to confirm new password:", "ta2": "repeat to confirm new password:",
"ta3": "found a typo; please try again", "ta3": "found a typo; please try again",
"nop": "ERROR: Password cannot be blank",
"nou": "ERROR: Username and/or password cannot be blank",
"aa1": "incoming files:", "aa1": "incoming files:",
"ab1": "disable no304", "ab1": "disable no304",
"ac1": "enable no304", "ac1": "enable no304",