diff options
Diffstat (limited to 'applications/luci-app-advanced-reboot')
13 files changed, 151 insertions, 69 deletions
diff --git a/applications/luci-app-advanced-reboot/Makefile b/applications/luci-app-advanced-reboot/Makefile index 79197c43ba..7be53efcb9 100644 --- a/applications/luci-app-advanced-reboot/Makefile +++ b/applications/luci-app-advanced-reboot/Makefile @@ -12,7 +12,7 @@ LUCI_DESCRIPTION:=Provides Web UI (found under System/Advanced Reboot) to reboot routers are listed at https://github.com/openwrt/luci/blob/master/applications/luci-app-advanced-reboot/README.md LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full LUCI_PKGARCH:=all -PKG_RELEASE:=54 +PKG_RELEASE:=55 include ../../luci.mk diff --git a/applications/luci-app-advanced-reboot/README.md b/applications/luci-app-advanced-reboot/README.md index 85c10fcc12..35b2d32d7b 100644 --- a/applications/luci-app-advanced-reboot/README.md +++ b/applications/luci-app-advanced-reboot/README.md @@ -1,5 +1,7 @@ # Advanced Reboot Web UI (luci-app-advanced-reboot) +[![HitCount](http://hits.dwyl.com/stangri/openwrt/luci-app-advanced-reboot.svg)](http://hits.dwyl.com/stangri/openwrt/luci-app-advanced-reboot) + ## Description This package allows you to reboot to an alternative partition on the supported (dual-partition) routers and to power off (power down) your OpenWrt device. diff --git a/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-e4200v2.lua b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-e4200v2.lua new file mode 100644 index 0000000000..50c4970ed9 --- /dev/null +++ b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-e4200v2.lua @@ -0,0 +1,14 @@ +return { + vendorName = "Linksys", + deviceName = "E4200v2", + boardNames = { "linksys-e4200v2", "linksys,e4200v2" }, + partition1MTD = "mtd3", + partition2MTD = "mtd5", + labelOffset = 32, + bootEnv1 = "boot_part", + bootEnv1Partition1Value = 1, + bootEnv1Partition2Value = 2, + bootEnv2 = "bootcmd", + bootEnv2Partition1Value = "run nandboot", + bootEnv2Partition2Value = "run altnandboot" +} diff --git a/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea3500.lua b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea3500.lua index 553788fd57..2b72cd4b7d 100644 --- a/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea3500.lua +++ b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea3500.lua @@ -1,7 +1,7 @@ return { vendorName = "Linksys", deviceName = "EA3500", - boardNames = { "linksys-audi", "linksys,audi" }, + boardNames = { "linksys-audi", "linksys,audi", "linksys-ea3500", "linksys,ea3500" }, partition1MTD = "mtd3", partition2MTD = "mtd5", labelOffset = 32, diff --git a/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea4500.lua b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea4500.lua new file mode 100644 index 0000000000..10f53d1d78 --- /dev/null +++ b/applications/luci-app-advanced-reboot/luasrc/advanced-reboot/devices/linksys-ea4500.lua @@ -0,0 +1,14 @@ +return { + vendorName = "Linksys", + deviceName = "EA4500", + boardNames = { "linksys-e4500", "linksys,e4500" }, + partition1MTD = "mtd3", + partition2MTD = "mtd5", + labelOffset = 32, + bootEnv1 = "boot_part", + bootEnv1Partition1Value = 1, + bootEnv1Partition2Value = 2, + bootEnv2 = "bootcmd", + bootEnv2Partition1Value = "run nandboot", + bootEnv2Partition2Value = "run altnandboot" +} diff --git a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm index 49985b32ce..a28418cc5f 100644 --- a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm +++ b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm @@ -42,12 +42,12 @@ <%- if bev1p1 == current_partition then -%> <form method="post" action="<%=url('admin/system/advanced_reboot/reboot')%>"> <input type="hidden" name="token" value="<%=token%>" /> - <input id="reboot-button" type="submit" class="cbi-button cbi-button-apply important" value="<%:Reboot to current partition%>" /> + <input id="reboot-button" type="submit" class="btn cbi-button cbi-button-apply important" value="<%:Reboot to current partition%>" /> </form> <%- else -%> <form method="post" action="<%=url('admin/system/advanced_reboot/alternative_reboot')%>"> <input type="hidden" name="token" value="<%=token%>" /> - <input id="altreboot-button" type="submit" class="cbi-button cbi-button-apply important" value="<%:Reboot to alternative partition...%>" /> + <input id="altreboot-button" type="submit" class="btn cbi-button cbi-button-apply important" value="<%:Reboot to alternative partition...%>" /> </form> <%- end -%> </div> @@ -66,12 +66,12 @@ <%- if bev1p2 == current_partition then -%> <form method="post" action="<%=url('admin/system/advanced_reboot/reboot')%>"> <input type="hidden" name="token" value="<%=token%>" /> - <input id="reboot-button" type="submit" class="cbi-button cbi-button-apply important" value="<%:Reboot to current partition%>" /> + <input id="reboot-button" type="submit" class="btn cbi-button cbi-button-apply important" value="<%:Reboot to current partition%>" /> </form> <%- else -%> <form method="post" action="<%=url('admin/system/advanced_reboot/alternative_reboot')%>"> <input type="hidden" name="token" value="<%=token%>" /> - <input id="altreboot-button" type="submit" class="cbi-button cbi-button-apply important" value="<%:Reboot to alternative partition...%>" /> + <input id="altreboot-button" type="submit" class="btn cbi-button cbi-button-apply important" value="<%:Reboot to alternative partition...%>" /> </form> <%- end -%> </div> @@ -91,7 +91,7 @@ <%- if nixio.fs.access("/sbin/poweroff") then -%> <form method="post" action="<%=url('admin/system/advanced_reboot/power_off')%>"> <input type="hidden" name="token" value="<%=token%>" /> - <input id="poweroff-button" type="submit" class="cbi-button cbi-button-apply important" value="<%:Perform power off...%>" /> + <input id="poweroff-button" type="submit" class="btn cbi-button cbi-button-apply important" value="<%:Perform power off...%>" /> </form> <%- else -%> <p class="alert-message warning"><%:Warning: This system does not support powering off!%></p> diff --git a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm index db11020628..b81aaf4558 100644 --- a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm +++ b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm @@ -21,8 +21,8 @@ <form class="inline" action="<%=REQUEST_URI%>" method="post"> <input type="hidden" name="token" value="<%=token%>" /> <input type="hidden" name="step" value="2" /> - <input class="cbi-button cbi-button-reset important" name="cancel" type="submit" value="<%:Cancel%>" /> - <input class="cbi-button cbi-button-apply important" type="submit" value="<%:Proceed%>" /> + <input class="btn cbi-button cbi-button-reset important" name="cancel" type="submit" value="<%:Cancel%>" /> + <input class="btn cbi-button cbi-button-apply important" type="submit" value="<%:Proceed%>" /> </form> </div> diff --git a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm index 1acf01b995..56200a4c1c 100644 --- a/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm +++ b/applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm @@ -17,8 +17,8 @@ <form class="inline" action="<%=REQUEST_URI%>" method="post"> <input type="hidden" name="token" value="<%=token%>" /> <input type="hidden" name="step" value="2" /> - <input class="cbi-button cbi-button-reset important" name="cancel" type="submit" value="<%:Cancel%>" /> - <input class="cbi-button cbi-button-apply important" type="submit" value="<%:Proceed%>" /> + <input class="btn cbi-button cbi-button-reset important" name="cancel" type="submit" value="<%:Cancel%>" /> + <input class="btn cbi-button cbi-button-apply important" type="submit" value="<%:Proceed%>" /> </form> </div> diff --git a/applications/luci-app-advanced-reboot/po/ar/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/ar/advanced-reboot.po index 7f4396f945..d8426c1699 100644 --- a/applications/luci-app-advanced-reboot/po/ar/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/ar/advanced-reboot.po @@ -1,128 +1,139 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-07-10 10:42+0000\n" +"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadvanced-reboot/ar/>\n" "Language: ar\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 4.2-dev\n" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:171 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:10 msgid "Advanced Reboot" -msgstr "" +msgstr "إعادة تشغيل متقدمة" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:36 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:60 msgid "Alternative" -msgstr "" +msgstr "لبديل" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:24 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:20 msgid "Cancel" -msgstr "" +msgstr "إلغاء" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:42 msgid "Changes applied." -msgstr "" +msgstr "تم تطبيق التغييرات." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:131 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:132 msgid "Compressed" -msgstr "" +msgstr "مضغوط" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:10 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:10 msgid "Confirm" -msgstr "" +msgstr "تؤكد" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:36 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:60 msgid "Current" -msgstr "" +msgstr "حالي" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:18 msgid "ERROR:" -msgstr "" +msgstr "خطأ:" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:28 msgid "Firmware" -msgstr "" +msgstr "البرامج الثابتة" #: applications/luci-app-advanced-reboot/root/usr/share/rpcd/acl.d/luci-app-advanced-reboot.json:3 msgid "Grant UCI and file access for luci-app-advanced-reboot" -msgstr "" +msgstr "امنح UCI والوصول إلى الملفات لإعادة تشغيل luci-app-advanced-reboot" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:45 msgid "Loading" -msgstr "" +msgstr "جار التحميل" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:213 msgid "No access to fw_printenv or fw_printenv!" -msgstr "" +msgstr "لا يمكن الوصول إلى fw_printenv أو fw_printenv!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:26 msgid "Partition" -msgstr "" +msgstr "تقسيم" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:23 msgid "Partitions" -msgstr "" +msgstr "أقسام" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:94 msgid "Perform power off..." -msgstr "" +msgstr "أداء السلطة ..." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:10 msgid "Power Off Device" -msgstr "" +msgstr "ايقاف تشغيل الجهاز" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:25 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:21 msgid "Proceed" -msgstr "" +msgstr "تقدم" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:29 msgid "Reboot" -msgstr "" +msgstr "اعادة التشغيل" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:10 msgid "Reboot Device to an Alternative Partition" -msgstr "" +msgstr "إعادة تشغيل الجهاز إلى قسم بديل" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:50 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:74 msgid "Reboot to alternative partition..." -msgstr "" +msgstr "إعادة التشغيل إلى قسم بديل ..." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:45 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:69 msgid "Reboot to current partition" -msgstr "" +msgstr "إعادة التشغيل إلى القسم الحالي" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:192 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:264 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:9 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:39 msgid "Rebooting..." -msgstr "" +msgstr "جارٍ إعادة التشغيل ..." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:297 msgid "Shutting down..." -msgstr "" +msgstr "اغلاق..." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:27 msgid "Status" -msgstr "" +msgstr "الحالة" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:39 msgid "System" -msgstr "" +msgstr "نظام" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:193 +#, fuzzy msgid "" "The system is rebooting now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " "address of your computer to reach the device again, depending on your " "settings." msgstr "" +"يقوم النظام بإعادة التشغيل الآن. <br /> لا تقم بإيقاف تشغيل الجهاز! <br /> " +"انتظر بضع دقائق قبل محاولة إعادة الاتصال. قد يكون من الضروري تجديد عنوان " +"الكمبيوتر الخاص بك للوصول إلى الجهاز مرة أخرى ، حسب إعداداتك." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:265 msgid "" @@ -131,6 +142,10 @@ msgid "" "might be necessary to renew the address of your computer to reach the device " "again, depending on your settings." msgstr "" +"يقوم النظام الآن بإعادة التشغيل إلى قسم بديل الآن. <br /> لا تعمل على إيقاف " +"تشغيل الجهاز! <br /> انتظر بضع دقائق قبل محاولة إعادة الاتصال. قد يكون من " +"الضروري تجديد عنوان الكمبيوتر الخاص بك للوصول إلى الجهاز مرة أخرى ، حسب " +"إعداداتك." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:298 msgid "" @@ -138,39 +153,41 @@ msgid "" "might be necessary to renew the address of your computer to reach the device " "again, depending on your settings." msgstr "" +"النظام مغلق الآن. <br /> لا تقذف الجهاز! <br /> قد يكون من الضروري تجديد " +"عنوان الكمبيوتر الخاص بك للوصول إلى الجهاز مرة أخرى ، بناءً على إعداداتك." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:144 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:145 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:248 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:249 msgid "Unable to find Dual Boot Flag Partition." -msgstr "" +msgstr "تعذر العثور على قسم علامة التمهيد المزدوج." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:220 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:221 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:234 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:235 msgid "Unable to obtain firmware environment variable: %s." -msgstr "" +msgstr "غير قادر على الحصول على متغير بيئة البرامج الثابتة:٪ s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:256 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:257 msgid "Unable to set Dual Boot Flag Partition entry for partition: %s." -msgstr "" +msgstr "غير قادر على تعيين إدخال قسم إشارة التمهيد المزدوج للقسم:٪ s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:226 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:227 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:240 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:241 msgid "Unable to set firmware environment variable: %s to %s." -msgstr "" +msgstr "غير قادر على تعيين متغير بيئة البرامج الثابتة:٪ s إلى٪ s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:126 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:127 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:131 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:132 msgid "Unknown" -msgstr "" +msgstr "مجهول" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:12 msgid "" @@ -183,6 +200,13 @@ msgid "" "back to the currently active partition.<br /><br /> Click \"Proceed\" below " "to reboot device to an alternative partition." msgstr "" +"تحذير: قد يحتوي القسم البديل على إعداداته الخاصة به والبرامج الثابتة " +"المختلفة تمامًا. <br /> <br /> نظرًا لاختلاف تكوين الشبكة و WiFi SSID / كلمة " +"المرور على القسم البديل ، قد تضطر إلى ضبط إعدادات الكمبيوتر حتى تتمكن من " +"للوصول إلى جهازك بمجرد إعادة تشغيله. <br /> <br /> يُرجى أيضًا الانتباه إلى " +"أن البرامج الثابتة للقسم البديل قد لا توفر طريقة سهلة لتحويل القسم النشط " +"وإعادة التشغيل إلى القسم النشط حاليًا. <br /> <br / > انقر فوق \"متابعة\" " +"أدناه لإعادة تشغيل الجهاز إلى قسم بديل." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:12 msgid "" @@ -190,31 +214,33 @@ msgid "" "support power off.<br /><br /> Click \"Proceed\" below to power off your " "device." msgstr "" +"تحذير: قد يؤدي إيقاف التشغيل إلى إعادة تشغيل جهاز لا يدعم إيقاف التشغيل. <br " +"/> <br /> انقر فوق \"متابعة\" أدناه لإيقاف تشغيل جهازك." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:46 msgid "Waiting for changes to be applied..." -msgstr "" +msgstr "في انتظار تطبيق التغييرات ..." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:83 msgid "Warning: Device (%s) is unknown or isn't a dual-partition device!" -msgstr "" +msgstr "تحذير: الجهاز (٪ s) غير معروف أو ليس جهازًا مزدوج القسم!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:14 msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" +msgstr "تحذير: هناك تغييرات غير محفوظة ستضيع عند إعادة التشغيل!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:97 msgid "Warning: This system does not support powering off!" -msgstr "" +msgstr "تحذير: هذا النظام لا يدعم إيقاف التشغيل!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:85 msgid "Warning: Unable to obtain device information!" -msgstr "" +msgstr "تحذير: تعذر الحصول على معلومات الجهاز!" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:45 msgid "attempting to mount alternative partition (mtd%s)" -msgstr "" +msgstr "محاولة تحميل قسم بديل (mtd٪ s)" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:54 msgid "attempting to unmount alternative partition (mtd%s)" -msgstr "" +msgstr "محاولة إلغاء تحميل قسم بديل (mtd٪ s)" diff --git a/applications/luci-app-advanced-reboot/po/de/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/de/advanced-reboot.po index 17b5cf9502..78a6252ca3 100644 --- a/applications/luci-app-advanced-reboot/po/de/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/de/advanced-reboot.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-20 07:11+0000\n" -"Last-Translator: ce4 <chregger@gmail.com>\n" +"PO-Revision-Date: 2020-07-11 21:29+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadvanced-reboot/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.0.2-dev\n" +"X-Generator: Weblate 4.2-dev\n" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:171 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:10 @@ -54,7 +54,7 @@ msgstr "Firmware" #: applications/luci-app-advanced-reboot/root/usr/share/rpcd/acl.d/luci-app-advanced-reboot.json:3 msgid "Grant UCI and file access for luci-app-advanced-reboot" -msgstr "" +msgstr "Gewähre UCI und Datei-Zugriff auf luci-app-advanced-reboot" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:45 msgid "Loading" diff --git a/applications/luci-app-advanced-reboot/po/hu/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/hu/advanced-reboot.po index 4007f1bff0..93b4977409 100644 --- a/applications/luci-app-advanced-reboot/po/hu/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/hu/advanced-reboot.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-01-12 19:22+0000\n" +"PO-Revision-Date: 2020-08-12 21:32+0000\n" "Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadvanced-reboot/hu/>\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 3.10.1\n" +"X-Generator: Weblate 4.2-dev\n" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:171 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:10 @@ -54,7 +54,7 @@ msgstr "Firmware" #: applications/luci-app-advanced-reboot/root/usr/share/rpcd/acl.d/luci-app-advanced-reboot.json:3 msgid "Grant UCI and file access for luci-app-advanced-reboot" -msgstr "" +msgstr "UCI és fájlhozzáférés megadása a luci-app-advanced-reboot alkalmazásnak" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:45 msgid "Loading" @@ -169,19 +169,21 @@ msgstr "Nem található kettős rendszerindítási jelző partíció." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:234 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:235 msgid "Unable to obtain firmware environment variable: %s." -msgstr "" +msgstr "Nem lehet megszerezni a firmware környezeti változóját: %s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:256 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:257 msgid "Unable to set Dual Boot Flag Partition entry for partition: %s." msgstr "" +"Nem lehet beállítani a kettős rendszerindítási jelző partíció bejegyzését a " +"partíciónál: %s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:226 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:227 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:240 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:241 msgid "Unable to set firmware environment variable: %s to %s." -msgstr "" +msgstr "Nem lehet beállítani a firmware környezeti változóját: %s → %s." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:126 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:127 @@ -246,11 +248,11 @@ msgstr "Figyelmeztetés: nem lehet megszerezni az eszköz információit!" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:45 msgid "attempting to mount alternative partition (mtd%s)" -msgstr "" +msgstr "kísérlet az alternatív partíció (mtd%s) csatolására" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:54 msgid "attempting to unmount alternative partition (mtd%s)" -msgstr "" +msgstr "kísérlet az alternatív partíció (mtd%s) leválasztására" #~ msgid "Unable to obtain firmware environment variable" #~ msgstr "Nem lehet megszerezni a firmware környezeti változóját" diff --git a/applications/luci-app-advanced-reboot/po/ko/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/ko/advanced-reboot.po index c1b952090d..d023e29b12 100644 --- a/applications/luci-app-advanced-reboot/po/ko/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/ko/advanced-reboot.po @@ -1,8 +1,14 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-07-28 17:55+0000\n" +"Last-Translator: TheNoFace <fprhqkrtk303@naver.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadvanced-reboot/ko/>\n" "Language: ko\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.2-dev\n" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:171 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:10 @@ -17,7 +23,7 @@ msgstr "" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/alternative_reboot.htm:24 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:20 msgid "Cancel" -msgstr "" +msgstr "취소" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:42 msgid "Changes applied." diff --git a/applications/luci-app-advanced-reboot/po/sv/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/sv/advanced-reboot.po index 4efc94ce9e..ab4b21cddf 100644 --- a/applications/luci-app-advanced-reboot/po/sv/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/sv/advanced-reboot.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-03 08:27+0000\n" -"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"PO-Revision-Date: 2020-08-20 15:36+0000\n" +"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadvanced-reboot/sv/>\n" "Language: sv\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 3.10-dev\n" +"X-Generator: Weblate 4.2.1-dev\n" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:171 #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:10 @@ -27,7 +27,7 @@ msgstr "Avbryt" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/applyreboot.htm:42 msgid "Changes applied." -msgstr "" +msgstr "Ändringar tillämpade. " #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:131 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:132 @@ -46,11 +46,11 @@ msgstr "Nuvarande" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:18 msgid "ERROR:" -msgstr "" +msgstr "FEL:" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:28 msgid "Firmware" -msgstr "" +msgstr "Firmware" #: applications/luci-app-advanced-reboot/root/usr/share/rpcd/acl.d/luci-app-advanced-reboot.json:3 msgid "Grant UCI and file access for luci-app-advanced-reboot" @@ -62,7 +62,7 @@ msgstr "Laddar" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:213 msgid "No access to fw_printenv or fw_printenv!" -msgstr "" +msgstr "Ingen åtkomst till fw_printenv eller fw_printenv! " #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:26 msgid "Partition" @@ -129,6 +129,9 @@ msgid "" "address of your computer to reach the device again, depending on your " "settings." msgstr "" +"Systemet startar om nu. <br /> STÄNG INTE AV ENHETEN!<br /> Vänta ett par " +"minuter innan du försöker ansluta. Du kan behöva förnya adressen på din " +"dator för att nå enheten igen, beroende på inställningarna." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:265 msgid "" @@ -137,6 +140,10 @@ msgid "" "might be necessary to renew the address of your computer to reach the device " "again, depending on your settings." msgstr "" +"Systemet startar om till en alternativ partition nu.<br />STÄNG INTE AV " +"ENHETEN!<br /> Vänta ett par minuter innan du försöker ansluta. Du kan " +"behöva förnya adressen på din dator för att nå enheten igen, beroende på " +"inställningarna. " #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:298 msgid "" @@ -153,7 +160,7 @@ msgstr "" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:248 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:249 msgid "Unable to find Dual Boot Flag Partition." -msgstr "" +msgstr "Det gick inte att hitta Dual Boot Flag Partition." #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:220 #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:221 @@ -192,6 +199,15 @@ msgid "" "back to the currently active partition.<br /><br /> Click \"Proceed\" below " "to reboot device to an alternative partition." msgstr "" +"VARNING: En alternativ partition kan ha sina egna inställningar och helt " +"annan firmware.<br /> <br />Eftersom din nätverkskonfiguration och WiFi SSID " +"/ lösenord på alternativ partition kan vara annorlunda, kan du behöva " +"justera dina datorinställningar för att kunna nå din enhet igen efter " +"omstart.\n" +"<br /> <br /> Tänk också på att en alternativ partition firmware kanske inte " +"är ett enkelt sätt att växla aktiv partition och starta tillbaka till den " +"aktiva partitionen. <br /> <br / > Klicka på \"Fortsätt\" nedan för att " +"starta om enheten till en alternativ partition." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:12 msgid "" @@ -210,6 +226,8 @@ msgstr "Väntar på att ändringarna ska bli verkställda..." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:83 msgid "Warning: Device (%s) is unknown or isn't a dual-partition device!" msgstr "" +"Varning: Enheten (% s) är okänd eller är inte en enhet med dubbla " +"partitioner!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:14 msgid "Warning: There are unsaved changes that will get lost on reboot!" @@ -222,7 +240,7 @@ msgstr "Varning: Det här systemet har inte stöd för avstängning!" #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/advanced_reboot.htm:85 msgid "Warning: Unable to obtain device information!" -msgstr "" +msgstr "Varning: Det går inte att få information om enheten!" #: applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua:45 msgid "attempting to mount alternative partition (mtd%s)" |