summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-attendedsysupgrade
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-attendedsysupgrade')
-rw-r--r--applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js9
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po28
-rw-r--r--applications/luci-app-attendedsysupgrade/po/da/attendedsysupgrade.po28
-rw-r--r--applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po15
-rw-r--r--applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/lt/attendedsysupgrade.po297
-rw-r--r--applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po8
-rw-r--r--applications/luci-app-attendedsysupgrade/po/nl/attendedsysupgrade.po6
-rw-r--r--applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po11
-rw-r--r--applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po2
-rw-r--r--applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po4
-rw-r--r--applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po27
38 files changed, 410 insertions, 105 deletions
diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js
index 76e504086e..7b067d7e8d 100644
--- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js
+++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js
@@ -62,7 +62,7 @@ return view.extend({
steps: {
init: [10, _('Received build request')],
download_imagebuilder: [20, _('Downloading ImageBuilder archive')],
- unpack_imagebuilder: [40, _('Setup ImageBuilder')],
+ unpack_imagebuilder: [40, _('Setting Up ImageBuilder')],
calculate_packages_hash: [60, _('Validate package selection')],
building_image: [80, _('Generating firmware image')],
},
@@ -88,8 +88,11 @@ return view.extend({
let image;
for (image of images) {
if (this.firmware.filesystem == image.filesystem) {
- if (this.data.efi) {
- if (image.type == 'combined-efi') {
+ // x86 images can be combined-efi (EFI) or combined (BIOS)
+ if(this.firmware.target.indexOf("x86")) {
+ if (this.data.efi && image.type == 'combined-efi') {
+ return image;
+ } else if (image.type == 'combined') {
return image;
}
} else {
diff --git a/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po
index bb1a7dda1f..ffc5b50f76 100644
--- a/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po
@@ -226,7 +226,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po
index 7a186216c4..3f8732674f 100644
--- a/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po
index 83acb87eab..ec9eb4b645 100644
--- a/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po
index 74fe3b9221..6e21524b33 100644
--- a/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po
index b3c97a2516..5101336ffd 100644
--- a/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2023-03-23 14:42+0000\n"
+"PO-Revision-Date: 2023-09-16 13:28+0000\n"
"Last-Translator: David Rapaň <david@rapan.cz>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsattendedsysupgrade/cs/>\n"
@@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.16.2-dev\n"
+"X-Generator: Weblate 5.0.2\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
@@ -76,7 +76,7 @@ msgstr "Aktuálně spuštěná verze: %s - %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:296
msgid "Download"
-msgstr ""
+msgstr "Staženo"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:140
msgid "Download firmware image"
@@ -84,7 +84,7 @@ msgstr "Stáhnout obraz firmwaru"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:64
msgid "Downloading ImageBuilder archive"
-msgstr ""
+msgstr "Stahování archivu ImageBuilderu"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:339
msgid "Downloading firmware from server to browser"
@@ -116,7 +116,7 @@ msgstr "Souborový systém"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:67
msgid "Generating firmware image"
-msgstr ""
+msgstr "Generování obrazu firmwaru"
#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3
msgid "Grant UCI access to LuCI app attendedsysupgrade"
@@ -151,6 +151,8 @@ msgid ""
"Other ASU server instances that rebuild a requested image. Allows to compare "
"checksums and verify that the results are the same."
msgstr ""
+"Další ASU instance, které sestaví vyžádaný obraz. Umožňuje porovnávat "
+"kontrolní součty a ověřit, že výsledky jsou stejné."
#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15
msgid "Overview"
@@ -170,7 +172,7 @@ msgstr "Profil"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:210
msgid "Progress: %s%% %s"
-msgstr ""
+msgstr "Postup: %s%% %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:196
msgid "Queued..."
@@ -178,15 +180,15 @@ msgstr "Zařazeno do fronty..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28
msgid "Rebuilders"
-msgstr ""
+msgstr "Sestavitelé"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:143
msgid "Rebuilds"
-msgstr ""
+msgstr "Sestavení"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:63
msgid "Received build request"
-msgstr ""
+msgstr "Přijatá žádost o sestavení"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:228
msgid "Request Data:"
@@ -233,8 +235,8 @@ msgid "Server response: %s"
msgstr "Odpověď serveru: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
-msgstr ""
+msgid "Setting Up ImageBuilder"
+msgstr "Nastavení ImageBuilderu"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
msgid "Show advanced options like package list modification"
@@ -276,7 +278,7 @@ msgstr "Probíhá nahrávání..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:66
msgid "Validate package selection"
-msgstr ""
+msgstr "Ověření výběru balíčků"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:117
msgid "Version"
@@ -296,7 +298,7 @@ msgstr "[instalováno] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Stahování archívu překladače"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Konfigurace překladače"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/da/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/da/attendedsysupgrade.po
index 9ae6bd358c..61672d90ce 100644
--- a/applications/luci-app-attendedsysupgrade/po/da/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/da/attendedsysupgrade.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2022-07-26 16:47+0000\n"
+"PO-Revision-Date: 2023-07-17 15:06+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsattendedsysupgrade/da/>\n"
@@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.14-dev\n"
+"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
@@ -75,7 +75,7 @@ msgstr "Kører i øjeblikket: %s - %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:296
msgid "Download"
-msgstr ""
+msgstr "Download"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:140
msgid "Download firmware image"
@@ -83,7 +83,7 @@ msgstr "Download firmware image"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:64
msgid "Downloading ImageBuilder archive"
-msgstr ""
+msgstr "Download af ImageBuilder-arkiv"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:339
msgid "Downloading firmware from server to browser"
@@ -115,7 +115,7 @@ msgstr "Filsystem"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:67
msgid "Generating firmware image"
-msgstr ""
+msgstr "Generering af firmware-image"
#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3
msgid "Grant UCI access to LuCI app attendedsysupgrade"
@@ -150,6 +150,8 @@ msgid ""
"Other ASU server instances that rebuild a requested image. Allows to compare "
"checksums and verify that the results are the same."
msgstr ""
+"Andre ASU-serverinstanser, der genopbygger et ønsket billede. Giver mulighed "
+"for at sammenligne checksums og bekræfte, at resultaterne er den samme."
#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15
msgid "Overview"
@@ -169,7 +171,7 @@ msgstr "Profil"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:210
msgid "Progress: %s%% %s"
-msgstr ""
+msgstr "Progress: %s%% %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:196
msgid "Queued..."
@@ -177,15 +179,15 @@ msgstr "I kø..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28
msgid "Rebuilders"
-msgstr ""
+msgstr "Ombyggere"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:143
msgid "Rebuilds"
-msgstr ""
+msgstr "Ombygninger"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:63
msgid "Received build request"
-msgstr ""
+msgstr "Modtaget byggeanmodning"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:228
msgid "Request Data:"
@@ -232,8 +234,8 @@ msgid "Server response: %s"
msgstr "Svar fra serveren: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
-msgstr ""
+msgid "Setting Up ImageBuilder"
+msgstr "Opsætning af ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
msgid "Show advanced options like package list modification"
@@ -275,7 +277,7 @@ msgstr "Uploader..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:66
msgid "Validate package selection"
-msgstr ""
+msgstr "Validering af pakkevalg"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:117
msgid "Version"
@@ -295,7 +297,7 @@ msgstr "[installeret] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Downloader ImageBuilder-arkiv"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Opsætning af ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po
index e56f011fc1..e0f6640532 100644
--- a/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2023-06-20 16:22+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
+"PO-Revision-Date: 2023-08-20 12:46+0000\n"
+"Last-Translator: Felix Baumann <felix.bau@gmx.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsattendedsysupgrade/de/>\n"
"Language: de\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.18.1\n"
+"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
@@ -181,8 +181,9 @@ msgid "Queued..."
msgstr "In Warteschlange..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28
+#, fuzzy
msgid "Rebuilders"
-msgstr ""
+msgstr "Rekonstrukteure"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:143
msgid "Rebuilds"
@@ -237,12 +238,12 @@ msgid "Server response: %s"
msgstr "Serverantwort: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "ImageBuilder einrichten"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
msgid "Show advanced options like package list modification"
-msgstr "Fortgeschrittene Einstellungen anzeigen, z.B. Paketlistenmodifizierung"
+msgstr "Erweiterte Optionen anzeigen, z.B. Paketlistenmodifizierung"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:184
msgid "Successfully created firmware image"
@@ -300,7 +301,7 @@ msgstr "[installiert] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Herunterladen des ImageBuilder-Archivs"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% ImageBuilder einrichten"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po
index 9f77ce1581..8d6865be42 100644
--- a/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po
index 247bf4e0ea..3a8e12b9c6 100644
--- a/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po
index 4355e8c6b0..b2302362c0 100644
--- a/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po
@@ -239,7 +239,7 @@ msgid "Server response: %s"
msgstr "Respuesta del servidor: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configurar ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -304,7 +304,7 @@ msgstr "%s [instalado]"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Descargando archivo ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Configuración de ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po
index 147a06c47c..baedbf03da 100644
--- a/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr "پاسخ سرور: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -296,7 +296,7 @@ msgstr "نصب شده %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% سازنده ایمیج که دانلود شده آرشیو شده است"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% تنظیم سازنده ایمیج"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po
index 8aead5fa90..1c4551df7a 100644
--- a/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr "Palvelimen vastaus: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -292,7 +292,7 @@ msgstr ""
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20 % Ladataan ImageBuilder-arkistoa"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40 % Määritetään ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po
index 7583f6c477..4fabf833fe 100644
--- a/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po
@@ -235,7 +235,7 @@ msgid "Server response: %s"
msgstr "Réponse du serveur : %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configuration d'ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -300,7 +300,7 @@ msgstr "[installé] %"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20 % Téléchargement de l'archive ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Installation d'ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po
index b612475658..c315508d84 100644
--- a/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po
@@ -233,7 +233,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po
index f1a8d37dbe..902eebdfb7 100644
--- a/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po
@@ -226,7 +226,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po
index 92ad7983ac..05f00b4a67 100644
--- a/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po
index 149141d24b..69c4e81652 100644
--- a/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po
@@ -234,7 +234,7 @@ msgid "Server response: %s"
msgstr "Risposta del server: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configura ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -299,7 +299,7 @@ msgstr "[installati] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Download dell'archivio ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Preparazione di ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po
index ffbeb0c203..e54589f4f0 100644
--- a/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr "サーバーの応答: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po
index 8d9fd50ce2..c37fd1808b 100644
--- a/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr "서버 응답: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -294,7 +294,7 @@ msgstr "[설치됨] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% ImageBuilder 아카이브 다운로드 중"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% ImageBuilder 설정"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/lt/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/lt/attendedsysupgrade.po
new file mode 100644
index 0000000000..c16d7151dc
--- /dev/null
+++ b/applications/luci-app-attendedsysupgrade/po/lt/attendedsysupgrade.po
@@ -0,0 +1,297 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2023-08-14 00:54+0000\n"
+"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
+"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsattendedsysupgrade/lt/>\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
+"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
+"1 : 2);\n"
+"X-Generator: Weblate 5.0-dev\n"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
+msgid "Address"
+msgstr "Adresas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22
+msgid "Address of the sysupgrade server"
+msgstr "„sysupgrade“ serverio adresas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:50
+msgid "Advanced Mode"
+msgstr "Pažangus režimas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:11
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:607
+#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3
+msgid "Attended Sysupgrade"
+msgstr "Prisistatoma „Sysupgrade“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:12
+msgid "Attendedsysupgrade Configuration."
+msgstr "Prisistatoma „Sysupgrade“ konfigūracija."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:518
+msgid "Board Name / Profile"
+msgstr "Plokštės pavadinimas/profilis"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:129
+msgid "Build Date"
+msgstr "Sukūrimo data"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:206
+msgid "Building Firmware..."
+msgstr "Statoma programinė įranga..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:169
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:533
+msgid "Cancel"
+msgstr "Atšaukti"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:35
+msgid "Client"
+msgstr "Klientas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:244
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:378
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:433
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:567
+msgid "Close"
+msgstr "Uždaryti"
+
+#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24
+msgid "Configuration"
+msgstr "Konfigūravimas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:427
+msgid "Could not reach API at \"%s\". Please try again later."
+msgstr ""
+"Negalėjome pasiekti „API“ \"%s\". Prašome pamėginti dar kartą vėlesniu laiku."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:526
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:622
+msgid "Currently running: %s - %s"
+msgstr "Dabar veikia: %s - %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:296
+msgid "Download"
+msgstr "Atsisiųsti"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:140
+msgid "Download firmware image"
+msgstr "Atsisiųsti programinės įrangos laikmeną"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:64
+msgid "Downloading ImageBuilder archive"
+msgstr "Atsisiunčiama „ImageBuilder“ archyvą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:339
+msgid "Downloading firmware from server to browser"
+msgstr "Atsisiunčiama programinė įranga iš serverio į naršyklę"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:335
+msgid "Downloading..."
+msgstr "Atsisiunčiama..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:248
+msgid "Error building the firmware image"
+msgstr "Klaida statant programinės įrangos laikmeną"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:423
+msgid "Error connecting to upgrade server"
+msgstr "Klaida jungiantis į atnaujinimo serverį"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:376
+msgid "Error during download of firmware. Please try again"
+msgstr "Klaida atsisiunčiant programine įrangą. Prašome pamėginti dar kartą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:131
+msgid "Filename"
+msgstr "Failo pavadinimas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:133
+msgid "Filesystem"
+msgstr "Failo sistema"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:67
+msgid "Generating firmware image"
+msgstr "Kuriame programinės įrangos laikmena"
+
+#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3
+msgid "Grant UCI access to LuCI app attendedsysupgrade"
+msgstr "Suteikti „UCI“ prieigą „LuCI app attendedsysupgrade“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:179
+msgid "Install firmware image"
+msgstr "Įdiegti programinės įrangos laikmeną"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:385
+msgid "Installing the sysupgrade. Do not unpower device!"
+msgstr "Įdiegiama „sysupgrade“. Neišjunkite įrenginio!"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:381
+msgid "Installing..."
+msgstr "Įdiegiama..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:165
+msgid "Keep settings and retain the current configuration"
+msgstr "Laikyti nustatymus ir dabartinį konfigūravimą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:523
+msgid "New firmware upgrade available"
+msgstr "Naujas programinės įrangos atnaujinimas pasiekiamas"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:558
+msgid "No upgrade available"
+msgstr "Atnaujinimo nerasta"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:30
+msgid ""
+"Other ASU server instances that rebuild a requested image. Allows to compare "
+"checksums and verify that the results are the same."
+msgstr ""
+"Kiti „ASU“ serveriai kurie atstato prašomą laikmeną. Leidžią palyginti "
+"„checksum'us“ ir patvirtinti, kad rezultatas toks pat."
+
+#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15
+msgid "Overview"
+msgstr "Apžiūra"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:519
+msgid "Packages"
+msgstr "Paketai"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226
+msgid "Please report the error message and request"
+msgstr "Prašome pranešti apie klaidos pranešimą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:125
+msgid "Profile"
+msgstr "Profilis"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:210
+msgid "Progress: %s%% %s"
+msgstr "Progresas: %s%% %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:196
+msgid "Queued..."
+msgstr "Eilėje..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28
+msgid "Rebuilders"
+msgstr "„Atstatytojai“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:143
+msgid "Rebuilds"
+msgstr "„Atstatymai“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:63
+msgid "Received build request"
+msgstr "Gauti „statymo“ prašymai"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:228
+msgid "Request Data:"
+msgstr "Prašymo data:"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:552
+msgid "Request firmware image"
+msgstr "Prašyti programinės įrangos laikmeną"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:200
+msgid "Request in build queue position %s"
+msgstr "Prašymo „statymo“ eilėje vieta – %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119
+msgid "SHA256"
+msgstr "„SHA256“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:633
+msgid "Search for firmware upgrade"
+msgstr "Ieškoti programinės įrangos atnaujinimo"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:42
+msgid "Search for new sysupgrades on opening the tab"
+msgstr "Ieškoti dėl naujo „sysupgrades“ atidarant skirtuką"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:41
+msgid "Search on opening"
+msgstr "Ieškoti atidarant"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:414
+msgid "Searching for an available sysupgrade of %s - %s"
+msgstr "Ieškojama dėl pasiekiamo „sysupgrade“ – %s - %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:410
+msgid "Searching..."
+msgstr "Ieškoma..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:15
+msgid "Server"
+msgstr "Serveris"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:222
+msgid "Server response: %s"
+msgstr "Serverio atsakas: %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
+msgid "Setting Up ImageBuilder"
+msgstr "Nustatyti „ImageBuilder“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
+msgid "Show advanced options like package list modification"
+msgstr "Rodyti pažangius nustatymus kaip paketų modifikacijų sąrašą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:184
+msgid "Successfully created firmware image"
+msgstr "Sėkmingai sukurta programinės įrangos laikmena"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:127
+msgid "Target"
+msgstr "Taikinys"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:611
+msgid ""
+"The attended sysupgrade service allows to easily upgrade vanilla and custom "
+"firmware images."
+msgstr ""
+"Prisistatoma „sysupgrade“ tarnybą leidžią lengvai atnaujinti „vanilinį“ ir "
+"atskiras programinių įrangų laikmenas."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:561
+msgid "The device runs the latest firmware version %s - %s"
+msgstr "Įrenginys veikia ant naujausios programinės įrangos versijos – %s - %s"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:617
+msgid ""
+"This is done by building a new firmware on demand via an online service."
+msgstr ""
+"Tai yra daroma „statant“ naują programine įrangą per internetine paslauga."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:361
+msgid "Uploading firmware from browser to device"
+msgstr "Įkeliama programinė įranga iš naršyklės į įrenginį"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357
+msgid "Uploading..."
+msgstr "Įkeliama..."
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:66
+msgid "Validate package selection"
+msgstr "Patikrinti paketų pasirinkimą"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:117
+msgid "Version"
+msgstr "Versija"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:373
+msgid "Wrong checksum"
+msgstr "Neatitinkamas „checksum“"
+
+#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:503
+msgid "[installed] %s"
+msgstr "[įdiegta] %s"
diff --git a/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po
index 3c1d884ca7..83ef05a159 100644
--- a/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po
index 9ba7a6ad84..e369148ce9 100644
--- a/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po
index 7a8e9cd4b6..5d6ce111fb 100644
--- a/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2023-06-20 13:52+0000\n"
+"PO-Revision-Date: 2023-08-02 12:53+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsattendedsysupgrade/nb_NO/>\n"
@@ -8,11 +8,11 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.18.1\n"
+"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
-msgstr ""
+msgstr "Adresse"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22
msgid "Address of the sysupgrade server"
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/nl/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/nl/attendedsysupgrade.po
index 128f6e38b9..949f604da5 100644
--- a/applications/luci-app-attendedsysupgrade/po/nl/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/nl/attendedsysupgrade.po
@@ -235,7 +235,7 @@ msgid "Server response: %s"
msgstr "Server antwoord: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Instellen ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -299,8 +299,8 @@ msgstr "[geïnstalleerd] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% ImageBuilder archief downloaden"
-#~ msgid "40% Setup ImageBuilder"
-#~ msgstr "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
+#~ msgstr "40% Setting Up ImageBuilder"
#~ msgid "60% Validate package selection"
#~ msgstr "60% Valideer pakketselectie"
diff --git a/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po
index 40c2b80884..8c08e399fa 100644
--- a/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po
@@ -236,7 +236,7 @@ msgid "Server response: %s"
msgstr "Odpowiedź serwera: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Konfiguracja ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -301,7 +301,7 @@ msgstr "[zainstalowano] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Pobieranie archiwum ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Konfiguracja ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po
index 948bf48bb9..7ee1019bae 100644
--- a/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po
@@ -235,7 +235,7 @@ msgid "Server response: %s"
msgstr "Resposta do servidor: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configurar o ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -299,7 +299,7 @@ msgstr "[instalado] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% baixando o arquivo do ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% configuração do ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po
index f92241449d..a38e962873 100644
--- a/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po
@@ -234,7 +234,7 @@ msgid "Server response: %s"
msgstr "Resposta do servidor: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configurar o ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -298,7 +298,7 @@ msgstr "[instalado] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% baixando o arquivo do ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% configuração do ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po
index 48fd203d4c..e57b6ad1f2 100644
--- a/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po
@@ -238,7 +238,7 @@ msgid "Server response: %s"
msgstr "Răspunsul serverului: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Configurare ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -302,7 +302,7 @@ msgstr "[installed] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Descărcarea arhivei ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Configurare ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po
index 28a820a94f..11f01c138a 100644
--- a/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po
@@ -235,7 +235,7 @@ msgid "Server response: %s"
msgstr "Ответ сервера: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Настройка ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -298,7 +298,7 @@ msgstr "[установлено] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Загрузка архива ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Установка ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po
index 8287906f98..9c77286087 100644
--- a/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2023-06-17 00:51+0000\n"
+"PO-Revision-Date: 2023-07-12 15:48+0000\n"
"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsattendedsysupgrade/sk/>\n"
@@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.18.1\n"
+"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
@@ -34,7 +34,6 @@ msgid "Attendedsysupgrade Configuration."
msgstr "Konfigurácia Attendedsysupgrade."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:518
-#, fuzzy
msgid "Board Name / Profile"
msgstr "Názov zariadenia / Profil"
@@ -77,7 +76,7 @@ msgstr "Aktuálne spustené: %s – %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:296
msgid "Download"
-msgstr ""
+msgstr "Stiahnuť"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:140
msgid "Download firmware image"
@@ -238,7 +237,7 @@ msgid "Server response: %s"
msgstr "Odpoveď servera: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Nastavenie ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -282,7 +281,7 @@ msgstr "Nahráva sa..."
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:66
msgid "Validate package selection"
-msgstr "Overenie výberu balíkov"
+msgstr "Overovanie výberu balíkov"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:117
msgid "Version"
diff --git a/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po
index 3429755b2c..cd8d1e8af6 100644
--- a/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po
@@ -233,7 +233,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot b/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot
index 9323ea4562..c82f2d484b 100644
--- a/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot
+++ b/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot
@@ -223,7 +223,7 @@ msgid "Server response: %s"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po
index b752f50e09..ec1e019b5e 100644
--- a/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po
@@ -233,7 +233,7 @@ msgid "Server response: %s"
msgstr "Sunucu cevabı: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -297,7 +297,7 @@ msgstr "[kurulu] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% ImageBuilder arşivi indiriliyor"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% ImageBuilder yükleniyor"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po
index 5ac0b0cc83..ab4cf4786e 100644
--- a/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po
@@ -236,7 +236,7 @@ msgid "Server response: %s"
msgstr "Відповідь сервера: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Налаштування ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -300,7 +300,7 @@ msgstr "[встановлено] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% Завантаження архіву ImageBuilder"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% Налаштування ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po
index ccab96529f..626e42cb02 100644
--- a/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po
@@ -234,7 +234,7 @@ msgid "Server response: %s"
msgstr "Phản hồi từ máy chủ: %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "Cài đặt ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
diff --git a/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po
index 14988f89a5..1268e34ef7 100644
--- a/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po
@@ -232,7 +232,7 @@ msgid "Server response: %s"
msgstr "服务器响应:%s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
+msgid "Setting Up ImageBuilder"
msgstr "设置 ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
@@ -292,7 +292,7 @@ msgstr "[已安装] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% 正在下载 ImageBuilder 存档"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% 安装 ImageBuilder"
#~ msgid "60% Validate package selection"
diff --git a/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po
index 0580fe49fa..a8b0153f07 100644
--- a/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po
+++ b/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2022-07-18 03:20+0000\n"
-"Last-Translator: Hulen <shift0106@gmail.com>\n"
+"PO-Revision-Date: 2023-08-06 01:52+0000\n"
+"Last-Translator: Trevor <wowpapa3232@gmail.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsattendedsysupgrade/zh_Hant/>\n"
"Language: zh_Hant\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.14-dev\n"
+"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:21
msgid "Address"
@@ -75,7 +75,7 @@ msgstr "目前執行中:%s - %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:296
msgid "Download"
-msgstr ""
+msgstr "下載"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:140
msgid "Download firmware image"
@@ -83,7 +83,7 @@ msgstr "下載韌體映像檔"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:64
msgid "Downloading ImageBuilder archive"
-msgstr ""
+msgstr "正在下載 ImageBuilder archive"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:339
msgid "Downloading firmware from server to browser"
@@ -95,7 +95,7 @@ msgstr "下載中…"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:248
msgid "Error building the firmware image"
-msgstr "組建韌體映像檔時發生錯誤"
+msgstr "產生韌體映像檔時發生錯誤"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:423
msgid "Error connecting to upgrade server"
@@ -115,7 +115,7 @@ msgstr "檔案系統"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:67
msgid "Generating firmware image"
-msgstr ""
+msgstr "正在產生韌體映像檔"
#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3
msgid "Grant UCI access to LuCI app attendedsysupgrade"
@@ -149,7 +149,8 @@ msgstr "無升級可用"
msgid ""
"Other ASU server instances that rebuild a requested image. Allows to compare "
"checksums and verify that the results are the same."
-msgstr ""
+msgstr "用來產生要求映像的其他 ASU 服務器實例。允許比對 checksums "
+"並檢查結果是否相同。"
#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15
msgid "Overview"
@@ -169,7 +170,7 @@ msgstr "設定檔"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:210
msgid "Progress: %s%% %s"
-msgstr ""
+msgstr "進度:%s%% %s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:196
msgid "Queued..."
@@ -185,7 +186,7 @@ msgstr ""
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:63
msgid "Received build request"
-msgstr ""
+msgstr "已接收建構要求"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:228
msgid "Request Data:"
@@ -232,8 +233,8 @@ msgid "Server response: %s"
msgstr "伺服器回應:%s"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65
-msgid "Setup ImageBuilder"
-msgstr ""
+msgid "Setting Up ImageBuilder"
+msgstr "設定 ImageBuilder"
#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:51
msgid "Show advanced options like package list modification"
@@ -292,7 +293,7 @@ msgstr "[已安裝] %s"
#~ msgid "20% Downloading ImageBuilder archive"
#~ msgstr "20% 正在下載 ImageBuilder 存檔"
-#~ msgid "40% Setup ImageBuilder"
+#~ msgid "40% Setting Up ImageBuilder"
#~ msgstr "40% 設定 ImageBuilder"
#~ msgid "60% Validate package selection"