diff options
Diffstat (limited to 'applications/luci-app-hd-idle')
29 files changed, 1269 insertions, 624 deletions
diff --git a/applications/luci-app-hd-idle/Makefile b/applications/luci-app-hd-idle/Makefile index 07d5cadd99..28e1cef14b 100644 --- a/applications/luci-app-hd-idle/Makefile +++ b/applications/luci-app-hd-idle/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=Hard Disk Idle Spin-Down module -LUCI_DEPENDS:=+hd-idle +LUCI_DEPENDS:=+hd-idle +lsblk include ../../luci.mk diff --git a/applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js b/applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js index f510229523..e07413bad4 100644 --- a/applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js +++ b/applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js @@ -2,43 +2,95 @@ 'require form'; 'require fs'; 'require view'; +'require uci'; + +function disk(devs, options, section_id) { + var v = uci.get('hd-idle', section_id, 'disk') || ''; + var disk = devs.find(function(itm){ return itm.name == v; }); + var out = ''; + if(disk != undefined){ + out = options.map(function(opt){ return disk[opt].trim(); }); + out = out.filter(function(o){ return o != ''; }); + out = out.join(' '); + } + return E('span', out); +} + +function prettytime(section_id) { + return E('span', (uci.get('hd-idle', section_id, 'idle_time_interval') || '') + + ' ' + + (uci.get('hd-idle', section_id, 'idle_time_unit') || '')); +} return view.extend({ load: function() { - return fs.list('/dev').then(function(devs) { - return devs.filter(function(dev) { - return dev.type == 'block' ? dev.name.match(/^[sh]d[a-z]$/) : false; - }); + return fs.exec("/usr/bin/lsblk", ["-n", "-J", "-do", "NAME,TRAN,ROTA,RM,VENDOR,MODEL"]).then(function(res) { + if( res.code ) + return []; + var json = JSON.parse(res.stdout); + return ( 'blockdevices' in json ) ? json['blockdevices'] : []; }); }, render: function(devs) { var m, s, o; - m = new form.Map('hd-idle', _('HDD Idle'), _('HDD Idle is a utility program for spinning-down external disks after a period of idle time.')); + m = new form.Map('hd-idle', _('HDD Idle'), _('HDD Idle is a utility program for spinning-down disks after a period of idle time.')); - s = m.section(form.TypedSection, 'hd-idle', _('Settings')); + s = m.section(form.GridSection, 'hd-idle', _('Settings')); s.anonymous = true; s.addremove = true; + s.sortable = true; s.addbtntitle = _('Add new hdd setting...'); - o = s.option(form.Flag, 'enabled', _('Enable')); + + s.tab('general', _('Disk Settings')); + + + o = s.taboption('general', form.Flag, 'enabled', _('Enable')); o.rmempty = false; + o.editable = true; - o = s.option(form.Value, 'disk', _('Disk')); + o = s.taboption('general', form.ListValue, 'disk', _('Disk')); devs.forEach(function(dev) { - o.value(dev.name); + if( dev.rota ) { + o.value(dev.name, `/dev/${dev.name} [${dev.tran}:${dev.vendor} ${dev.model}]`); + } }); - o = s.option(form.Value, 'idle_time_interval', _('Idle time')); + + o = s.taboption('general', form.Value, '_bus', _('Bus')); + o.rawhtml = true; + o.write = function() {}; + o.remove = function() {}; + o.modalonly = false; + o.textvalue = disk.bind(o, devs, ['tran']); + + o = s.taboption('general', form.Value, '_vendorModel', _('Vendor / Model')); + o.rawhtml = true; + o.write = function() {}; + o.remove = function() {}; + o.modalonly = false; + o.textvalue = disk.bind(o, devs, ['vendor', 'model'] ); + + o = s.taboption('general', form.Value, 'idle_time_interval', _('Idle time')); + o.modalonly = true; o.default = 10; - o = s.option(form.ListValue, 'idle_time_unit', _('Idle time unit')); - o.value('seconds', _('s', 'Abbreviation for seconds')); - o.value('minutes', _('min', 'Abbreviation for minutes')); - o.value('hours', _('h', 'Abbreviation for hours')); - o.value('days', _('d', 'Abbreviation for days')); + o = s.taboption('general', form.ListValue, 'idle_time_unit', _('Idle time unit')); + o.modalonly = true; + o.value('seconds', _('seconds', 'Abbreviation for seconds')); + o.value('minutes', _('minutes', 'Abbreviation for minutes')); + o.value('hours', _('hours', 'Abbreviation for hours')); + o.value('days', _('days', 'Abbreviation for days')); o.default = 'minutes'; + o = s.taboption('general', form.Value, '_prettytime', _('Idle time')); + o.rawhtml = true; + o.write = function() {}; + o.remove = function() {}; + o.modalonly = false; + o.textvalue = prettytime.bind(o); + return m.render(); } }); diff --git a/applications/luci-app-hd-idle/po/ca/hd-idle.po b/applications/luci-app-hd-idle/po/ca/hd-idle.po index e776767e8f..2c0db23958 100644 --- a/applications/luci-app-hd-idle/po/ca/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ca/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disc" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Habilita" @@ -32,49 +40,54 @@ msgstr "Habilita" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle és un programa per ralentitzar els discos externs després d'un " -"període de temps inactiu." +"HDD Idle és un programa per ralentitzar els discos després d'un període de " +"temps inactiu." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Temps d'inactivitat" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unitat de temps d'inactivitat" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Paràmetres" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" # Hours diff --git a/applications/luci-app-hd-idle/po/cs/hd-idle.po b/applications/luci-app-hd-idle/po/cs/hd-idle.po index 5fc1769823..86a2eff7f0 100644 --- a/applications/luci-app-hd-idle/po/cs/hd-idle.po +++ b/applications/luci-app-hd-idle/po/cs/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Přidat další nastavení harddisku" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Povolit" @@ -32,49 +40,53 @@ msgstr "Povolit" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle je utilita pro vypnutí externích pevných disků po určité době " -"nečinnosti." +"HDD Idle je utilita pro vypnutí pevných disků po určité době nečinnosti." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Čas nečinnosti" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Čas nečinnosti - jednotka" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Nastavení" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" # Hodin diff --git a/applications/luci-app-hd-idle/po/de/hd-idle.po b/applications/luci-app-hd-idle/po/de/hd-idle.po index f18552286d..30933d7a42 100644 --- a/applications/luci-app-hd-idle/po/de/hd-idle.po +++ b/applications/luci-app-hd-idle/po/de/hd-idle.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2021-02-09 02:45+0000\n" -"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n" +"PO-Revision-Date: 2022-02-24 06:56+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/de/>\n" "Language: de\n" @@ -12,17 +12,25 @@ 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.5-dev\n" +"X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Neue Festplatteneinstellung hinzufügen ..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Bus" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Festplatte" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Laufwerkseinstellungen" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Aktivieren" @@ -30,50 +38,71 @@ msgstr "Aktivieren" msgid "Grant UCI access for luci-app-hd-idle" msgstr "UCI-Zugriff für luci-app-hd-idle erlauben" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle ist ein Hilfsprogramm um externe Festplatten nach einer " -"festgelegten Leerlaufzeit herunter zu fahren." +"HDD Idle ist ein Hilfsprogramm um Festplatten nach einer festgelegten " +"Leerlaufzeit herunter zu fahren." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Leerlaufzeit" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Leerlaufzeiteinheit" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Einstellungen" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Anbieter / Modell" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "Tage" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "Stunden" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "Minuten" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "Sekunden" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/el/hd-idle.po b/applications/luci-app-hd-idle/po/el/hd-idle.po index c6b514e041..04edcb8c0a 100644 --- a/applications/luci-app-hd-idle/po/el/hd-idle.po +++ b/applications/luci-app-hd-idle/po/el/hd-idle.po @@ -13,15 +13,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Δίσκος" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Ενεργοποίηση" @@ -29,47 +37,52 @@ msgstr "Ενεργοποίηση" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Ρυθμίσεις" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" # Hours diff --git a/applications/luci-app-hd-idle/po/en/hd-idle.po b/applications/luci-app-hd-idle/po/en/hd-idle.po index 3e1e1d431d..6ecbec3432 100644 --- a/applications/luci-app-hd-idle/po/en/hd-idle.po +++ b/applications/luci-app-hd-idle/po/en/hd-idle.po @@ -11,15 +11,23 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Enable" @@ -27,49 +35,54 @@ msgstr "Enable" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Idle time" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Idle time unit" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Settings" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" # Hours diff --git a/applications/luci-app-hd-idle/po/es/hd-idle.po b/applications/luci-app-hd-idle/po/es/hd-idle.po index 34f4e8c8cc..8290e24a50 100644 --- a/applications/luci-app-hd-idle/po/es/hd-idle.po +++ b/applications/luci-app-hd-idle/po/es/hd-idle.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2021-02-11 14:23+0000\n" +"PO-Revision-Date: 2021-10-27 18:57+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/es/>\n" @@ -12,17 +12,25 @@ 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.5-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Agregar nueva configuración de disco duro..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Bus" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disco" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Configuración de disco" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Activar" @@ -30,50 +38,71 @@ msgstr "Activar" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Conceder acceso UCI para luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle es un programa que administra la suspensión de discos externos tras " -"un tiempo de inactividad." +"HDD Idle es un programa que administra la suspensión de discos tras un " +"tiempo de inactividad." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Tiempo de inactividad" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unidad de tiempo" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Configuraciones" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Proveedor / Modelo" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "dias" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "horas" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "minutos" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "segundos" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/fr/hd-idle.po b/applications/luci-app-hd-idle/po/fr/hd-idle.po index b39cbd6ccc..75cce97b80 100644 --- a/applications/luci-app-hd-idle/po/fr/hd-idle.po +++ b/applications/luci-app-hd-idle/po/fr/hd-idle.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2021-01-15 12:32+0000\n" -"Last-Translator: Amaury <y0da@live.fr>\n" +"PO-Revision-Date: 2022-02-02 16:56+0000\n" +"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/fr/>\n" "Language: fr\n" @@ -12,68 +12,97 @@ 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.5-dev\n" +"X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Ajouter un nouveau paramètre disque dur..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Bus" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disque" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Réglages du disque" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Activer" #: applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json:3 msgid "Grant UCI access for luci-app-hd-idle" -msgstr "" +msgstr "Autoriser luci-app-hd-idle à accéder à l'UCI (Configuration)" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" -msgstr "HDD Idle" +msgstr "Disque dur inactif" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle est un utilitaire pour arrêter la rotation des disques externes " -"après une période d'inactivité." +"HDD Idle est un utilitaire pour arrêter la rotation des disques après une " +"période d'inactivité." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Temps d'inactivité" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unité de temps" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Paramètres" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Fabriquant / Modèle" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "j" +msgid "days" +msgstr "jours" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "heures" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "minutes" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "secondes" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "j" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/he/hd-idle.po b/applications/luci-app-hd-idle/po/he/hd-idle.po index 9e09f2f3c7..6b6af355ed 100644 --- a/applications/luci-app-hd-idle/po/he/hd-idle.po +++ b/applications/luci-app-hd-idle/po/he/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 4.4.1-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "כונן" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "אפשר" @@ -32,50 +40,71 @@ msgstr "אפשר" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle הינה תוכנת שירות שמטרתה להקטין את מהירות הסיבוב של כוננים חיצוניים " -"לאחר זמן מסוים של חוסר פעילות." +"HDD Idle הינה תוכנת שירות שמטרתה להקטין את מהירות הסיבוב של כוננים לאחר זמן " +"מסוים של חוסר פעילות." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "זמן חוסר פעילות" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "יחידת זמן חוסר פעילות" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "הגדרות" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/hu/hd-idle.po b/applications/luci-app-hd-idle/po/hu/hd-idle.po index d72dfa4679..aab0693d06 100644 --- a/applications/luci-app-hd-idle/po/hu/hd-idle.po +++ b/applications/luci-app-hd-idle/po/hu/hd-idle.po @@ -15,15 +15,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Lemez" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Engedélyezés" @@ -31,51 +39,61 @@ msgstr "Engedélyezés" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle egy a külső lemezek adott üresjárati idő után történő leállítására " -"szolgáló segédprogram." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Üresjárati idő" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Üresjárati idő egysége" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Beállítások" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" +#~ msgid "" +#~ "HDD Idle is a utility program for spinning-down external disks after a " +#~ "period of idle time." +#~ msgstr "" +#~ "HDD Idle egy a lemezek adott üresjárati idő után történő leállítására " +#~ "szolgáló segédprogram." + # Hours #~ msgid "h" #~ msgstr "óra" diff --git a/applications/luci-app-hd-idle/po/it/hd-idle.po b/applications/luci-app-hd-idle/po/it/hd-idle.po index 3af5814d7b..0827f241d1 100644 --- a/applications/luci-app-hd-idle/po/it/hd-idle.po +++ b/applications/luci-app-hd-idle/po/it/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Aggiungi nuova impostazione disco rigido..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disco" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Abilita" @@ -30,50 +38,71 @@ msgstr "Abilita" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Concedere l'accesso UCI per luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle è un programma per mettere in standby i dischi esterni dopo un " -"periodo di inattività." +"HDD Idle è un programma per mettere in standby i dischi dopo un periodo di " +"inattività." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Tempo di inattività" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unità di misura del tempo di inattività" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Impostazioni" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "gg" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "hh" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "gg" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "hh" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/ja/hd-idle.po b/applications/luci-app-hd-idle/po/ja/hd-idle.po index 4de389f991..b78f07dac4 100644 --- a/applications/luci-app-hd-idle/po/ja/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ja/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "新しい HDD 設定を追加..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "ディスク" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "有効化" @@ -30,50 +38,76 @@ msgstr "有効化" msgid "Grant UCI access for luci-app-hd-idle" msgstr "luci-app-hd-idleにUCIアクセスを許可" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDDアイドル" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idleはアイドル時に外部ディスクをスピンダウンさせるための、ユーティリティ" -"プログラムです。" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "アイドル時間" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "アイドル時間 (単位)" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "設定" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "日" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "時間" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "分" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "秒" +msgid "seconds" +msgstr "" + +#~ msgid "" +#~ "HDD Idle is a utility program for spinning-down external disks after a " +#~ "period of idle time." +#~ msgstr "" +#~ "HDD Idleはアイドル時にィスクをスピンダウンさせるための、ユーティリティプロ" +#~ "グラムです。" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "日" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "時間" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "分" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "秒" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/ms/hd-idle.po b/applications/luci-app-hd-idle/po/ms/hd-idle.po index 50d7ce5a10..861747447c 100644 --- a/applications/luci-app-hd-idle/po/ms/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ms/hd-idle.po @@ -12,15 +12,23 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "" @@ -28,45 +36,50 @@ msgstr "" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" diff --git a/applications/luci-app-hd-idle/po/nb_NO/hd-idle.po b/applications/luci-app-hd-idle/po/nb_NO/hd-idle.po index 6fff3a8ed7..ab98899613 100644 --- a/applications/luci-app-hd-idle/po/nb_NO/hd-idle.po +++ b/applications/luci-app-hd-idle/po/nb_NO/hd-idle.po @@ -10,15 +10,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Skru på" @@ -26,49 +34,54 @@ msgstr "Skru på" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle er et verktøy for å spinne ned eksterne disker etter en periode med " +"HDD Idle er et verktøy for å spinne ned disker etter en periode med " "inaktivitet." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Tid inaktiv" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Tidsenhet" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Innstillinger" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/pl/hd-idle.po b/applications/luci-app-hd-idle/po/pl/hd-idle.po index 9f28e3d3bb..1846f718cc 100644 --- a/applications/luci-app-hd-idle/po/pl/hd-idle.po +++ b/applications/luci-app-hd-idle/po/pl/hd-idle.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2020-11-07 18:12+0000\n" -"Last-Translator: Michal L <michalrmsmi@wp.pl>\n" +"PO-Revision-Date: 2021-10-27 18:57+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/pl/>\n" "Language: pl\n" @@ -13,17 +13,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.2\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Dodaj nowe ustawienie HDD..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Magistrala" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Dysk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Ustawienia dysku" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Włącz" @@ -31,50 +39,71 @@ msgstr "Włącz" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Udziel dostępu dla luci-app-hd-idle do UCI" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle jest narzędziem do zwalniania obrotów zewnętrznych dysków po " -"określonym czasie bezczynności." +"HDD Idle jest narzędziem do zwalniania obrotów dysków po określonym czasie " +"bezczynności." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Czas bezczynności" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Jednostka czasu bezczynności" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Ustawienia" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Dostawca / Model" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "dni" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "g" +msgid "hours" +msgstr "godziny" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "minuty" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "sekundy" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "g" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/pt/hd-idle.po b/applications/luci-app-hd-idle/po/pt/hd-idle.po index 511fba8797..284a9c2674 100644 --- a/applications/luci-app-hd-idle/po/pt/hd-idle.po +++ b/applications/luci-app-hd-idle/po/pt/hd-idle.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2020-11-05 13:59+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2022-03-16 09:23+0000\n" +"Last-Translator: moonlightz <hugo.simoes.1984@gmail.com>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/pt/>\n" "Language: pt\n" @@ -12,17 +12,25 @@ 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.3.2-dev\n" +"X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." -msgstr "Adicionar uma nova configuração de hdd..." +msgstr "Adicionar uma nova definição de hdd..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Barramento" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disco" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Definições do disco" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Ativar" @@ -30,50 +38,71 @@ msgstr "Ativar" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Conceder acesso UCI ao luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle é um programa utilitário para activar o modo \"economia de energia" -"\" (spinning-down) de discos externos após um período de ociosidade." +"HDD Idle é um programa utilitário para ativar o modo \"economia de energia\" " +"(spinning-down) de discos após um período de ociosidade." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Tempo de ociosidade" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unidade de tempo de ociosidade" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" -msgstr "Configurações" +msgstr "Definições" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Fabricante / modelo" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "dias" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "horas" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "minutos" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "segundos" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/pt_BR/hd-idle.po b/applications/luci-app-hd-idle/po/pt_BR/hd-idle.po index 7439147a85..abe25dce17 100644 --- a/applications/luci-app-hd-idle/po/pt_BR/hd-idle.po +++ b/applications/luci-app-hd-idle/po/pt_BR/hd-idle.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2020-11-02 13:09+0000\n" +"PO-Revision-Date: 2021-10-28 03:15+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshd-idle/pt_BR/>\n" @@ -12,17 +12,25 @@ 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.3.2-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Adicionar uma nova configuração de hdd..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Barramento" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disco" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Configurações do disco" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Ativar" @@ -30,50 +38,71 @@ msgstr "Ativar" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Conceda acesso UCI ao luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" "HDD Idle é um programa utilitário para ativar o modo \"economia de energia" -"\" (spinning-down) de discos externos após um período de ociosidade." +"\" (spinning-down) de discos após um período de ociosidade." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Tempo de ociosidade" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unidade do tempo da ociosidade" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Fornecedor / Modelo" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "dias" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "horas" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "minutos" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "segundos" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/ro/hd-idle.po b/applications/luci-app-hd-idle/po/ro/hd-idle.po index b77b08f1fd..6579408653 100644 --- a/applications/luci-app-hd-idle/po/ro/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ro/hd-idle.po @@ -5,77 +5,91 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2013-09-25 19:12+0200\n" -"Last-Translator: Mihai <WyRwSyK@gmail.com>\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-11-16 17:38+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshd-idle/ro/>\n" "Language: ro\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==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.9.1-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." -msgstr "" +msgstr "Adăugați o nouă setare hdd..." + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Autobuz" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disc" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Setări pentru discuri" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" -msgstr "Activeaza" +msgstr "Activați" #: applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json:3 msgid "Grant UCI access for luci-app-hd-idle" -msgstr "" +msgstr "Acordă acces UCI pentru luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" -msgstr "HDD Idle" +msgstr "HDD Inactiv" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle este un utilitar pentru a oprit din rotatie hard disc-urile externe " -"dupa o anumita perioada de inactivitate." +"HDD Idle este un utilitar pentru a oprit din rotatie hard disc-urile dupa o " +"anumita perioada de inactivitate." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Timp de inactivitate" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Unitatea de timp pentru masurarea inactivitatii" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" -msgstr "Setari" +msgstr "Setări" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Furnizor / Model" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "" +msgid "days" +msgstr "zile" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "" +msgid "hours" +msgstr "ore" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "" +msgid "minutes" +msgstr "minute" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "" +msgid "seconds" +msgstr "secunde" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/ru/hd-idle.po b/applications/luci-app-hd-idle/po/ru/hd-idle.po index 773f63e899..644fa8bb63 100644 --- a/applications/luci-app-hd-idle/po/ru/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ru/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Добавить новые настройки HDD..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Диск" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Включить" @@ -32,50 +40,71 @@ msgstr "Включить" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Предоставить доступ UCI для luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"Утилита HDD Idle позволяет замедлять внешние диски после определённого " -"времени бездействия." +"Утилита HDD Idle позволяет замедлять диски после определённого времени " +"бездействия." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Время бездействия" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Единицы времени бездействия" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "д" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "ч" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "мин" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "с" +msgid "seconds" +msgstr "" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "д" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "ч" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "мин" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "с" #~ msgid "h" #~ msgstr "ч" diff --git a/applications/luci-app-hd-idle/po/sk/hd-idle.po b/applications/luci-app-hd-idle/po/sk/hd-idle.po index acdd45be47..7947625357 100644 --- a/applications/luci-app-hd-idle/po/sk/hd-idle.po +++ b/applications/luci-app-hd-idle/po/sk/hd-idle.po @@ -12,15 +12,23 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Pridať nové nastavenie hdd..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Povoliť" @@ -28,45 +36,66 @@ msgstr "Povoliť" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Povoliť UCI prístup k luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "HDD Idle je program na uspanie disku po nastavenom čase." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Čas nečinnosti" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Jednotka času nečinnosti" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Nastavenia" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "d" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "h" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "min" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "s" +msgid "seconds" +msgstr "" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "d" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "h" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "min" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "s" diff --git a/applications/luci-app-hd-idle/po/sv/hd-idle.po b/applications/luci-app-hd-idle/po/sv/hd-idle.po index 5ef5752978..09c467b802 100644 --- a/applications/luci-app-hd-idle/po/sv/hd-idle.po +++ b/applications/luci-app-hd-idle/po/sv/hd-idle.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-11-22 15:35+0000\n" -"Last-Translator: PontusÖsterlindh <pontus@osterlindh.com>\n" +"PO-Revision-Date: 2021-11-07 15:53+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/sv/>\n" "Language: sv\n" @@ -10,17 +10,25 @@ 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.4-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Aktivera" @@ -28,45 +36,50 @@ msgstr "Aktivera" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" +msgstr "Inställningar" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" diff --git a/applications/luci-app-hd-idle/po/templates/hd-idle.pot b/applications/luci-app-hd-idle/po/templates/hd-idle.pot index ac511d9e32..b7765aa40e 100644 --- a/applications/luci-app-hd-idle/po/templates/hd-idle.pot +++ b/applications/luci-app-hd-idle/po/templates/hd-idle.pot @@ -1,15 +1,23 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "" @@ -17,45 +25,50 @@ msgstr "" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" diff --git a/applications/luci-app-hd-idle/po/tr/hd-idle.po b/applications/luci-app-hd-idle/po/tr/hd-idle.po index 34142514d4..4ab20f4a0e 100644 --- a/applications/luci-app-hd-idle/po/tr/hd-idle.po +++ b/applications/luci-app-hd-idle/po/tr/hd-idle.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2020-11-27 20:38+0000\n" +"PO-Revision-Date: 2021-11-03 16:34+0000\n" "Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/tr/>\n" @@ -14,17 +14,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Yeni hdd ayarı ekle..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "Veri yolu" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Disk" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "Disk Ayarları" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Etkinleştir" @@ -32,50 +40,71 @@ msgstr "Etkinleştir" msgid "Grant UCI access for luci-app-hd-idle" msgstr "luci-app-hd-idle için UCI erişimi verin" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "Harddisk-Park" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" "HDD Idle, belirli bir zaman sonra diskleri beklemeye alan bir yardımcı " "programdır." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Bekleme Zamanı" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "bekleme zamanı birimi" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Ayarlar" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "Satıcı / Model" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "g" +msgid "days" +msgstr "gün" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "sa" +msgid "hours" +msgstr "saat" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "dak" +msgid "minutes" +msgstr "dakika" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "sn" +msgid "seconds" +msgstr "saniye" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "g" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "sa" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "dak" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "sn" # Hours #~ msgid "h" diff --git a/applications/luci-app-hd-idle/po/uk/hd-idle.po b/applications/luci-app-hd-idle/po/uk/hd-idle.po index d4380b6378..fca1ab2498 100644 --- a/applications/luci-app-hd-idle/po/uk/hd-idle.po +++ b/applications/luci-app-hd-idle/po/uk/hd-idle.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2021-04-11 16:27+0000\n" -"Last-Translator: Tymofij Lytvynenko <till.svit@gmail.com>\n" +"PO-Revision-Date: 2021-11-04 17:37+0000\n" +"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/uk/>\n" "Language: uk\n" @@ -15,17 +15,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "Додати новий параметр жорсткого диска..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Диск" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Увімкнути" @@ -33,50 +41,70 @@ msgstr "Увімкнути" msgid "Grant UCI access for luci-app-hd-idle" msgstr "Надати доступ UCI для простою luci-app-hd-idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"Засіб HDD Idle дозволяє уповільнювати зовнішні диски після певного часу " -"бездіяльності." +"Засіб HDD Idle дозволяє уповільнювати диски після певного часу бездіяльності." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "Час простою" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "Одиниці часу бездіяльності" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" -msgstr "Налаштування" +msgstr "Параметри" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "д" +msgid "days" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" -msgstr "год" +msgid "hours" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "хв" +msgid "minutes" +msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" -msgstr "с" +msgid "seconds" +msgstr "" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "д" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "год" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "хв" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "с" # Minutes (not minimum) #~ msgid "min" diff --git a/applications/luci-app-hd-idle/po/vi/hd-idle.po b/applications/luci-app-hd-idle/po/vi/hd-idle.po index ec6d4a2942..8586611a95 100644 --- a/applications/luci-app-hd-idle/po/vi/hd-idle.po +++ b/applications/luci-app-hd-idle/po/vi/hd-idle.po @@ -13,15 +13,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "Ổ đĩa" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 #, fuzzy msgid "Enable" msgstr "Kích hoạt debug" @@ -30,51 +38,56 @@ msgstr "Kích hoạt debug" msgid "Grant UCI access for luci-app-hd-idle" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "HDD Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "" -"HDD Idle là một chương trình tiện ích để quay các đĩa ngoài sau một khoảng " -"thời gian idle." +"HDD Idle là một chương trình tiện ích để quay các đĩa sau một khoảng thời " +"gian idle." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 #, fuzzy msgid "Idle time" msgstr "Thời gian Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 #, fuzzy msgid "Idle time unit" msgstr "Đơn vị thời gian Idle" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "Sắp đặt" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "" #~ msgid "Enable debug" diff --git a/applications/luci-app-hd-idle/po/zh_Hans/hd-idle.po b/applications/luci-app-hd-idle/po/zh_Hans/hd-idle.po index c22d01ade2..5365f47a1c 100644 --- a/applications/luci-app-hd-idle/po/zh_Hans/hd-idle.po +++ b/applications/luci-app-hd-idle/po/zh_Hans/hd-idle.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2020-11-17 12:29+0000\n" -"Last-Translator: SunSpring <yearnsun@gmail.com>\n" +"PO-Revision-Date: 2021-10-27 18:57+0000\n" +"Last-Translator: Eric <spice2wolf@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshd-idle/zh_Hans/>\n" "Language: zh_Hans\n" @@ -12,17 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "添加新硬盘设置..." -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "总线" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "硬盘" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "磁盘设置" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "启用" @@ -30,49 +38,70 @@ msgstr "启用" msgid "Grant UCI access for luci-app-hd-idle" msgstr "为 luci-app-hd-idle 授予 UCI 的访问权限" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "硬盘休眠" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." msgstr "硬盘休眠是控制当硬盘在空闲一段时间后进入休眠模式的工具。" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "空闲时间" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "空闲时间单位" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "设置" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "厂商/型号" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" +msgid "days" msgstr "天" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "小时" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" +msgid "minutes" msgstr "分钟" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "秒" +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "天" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "小时" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "分钟" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "秒" + # Hours #~ msgid "h" #~ msgstr "小时" diff --git a/applications/luci-app-hd-idle/po/zh_Hant/hd-idle.po b/applications/luci-app-hd-idle/po/zh_Hant/hd-idle.po index aff00c41f2..1de62b0527 100644 --- a/applications/luci-app-hd-idle/po/zh_Hant/hd-idle.po +++ b/applications/luci-app-hd-idle/po/zh_Hant/hd-idle.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-01-14 09:20+0000\n" -"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" +"PO-Revision-Date: 2022-03-04 19:06+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshd-idle/zh_Hant/>\n" "Language: zh_Hant\n" @@ -10,17 +10,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4.1-dev\n" +"X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:22 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:43 msgid "Add new hdd setting..." msgstr "加入新硬碟設定…" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:27 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:61 +msgid "Bus" +msgstr "匯流排" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:53 msgid "Disk" msgstr "磁碟" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:24 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:46 +msgid "Disk Settings" +msgstr "磁碟設定" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "啟用" @@ -28,49 +36,76 @@ msgstr "啟用" msgid "Grant UCI access for luci-app-hd-idle" msgstr "授予 luci-app-hd-idle 擁有 UCI 存取的權限" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 #: applications/luci-app-hd-idle/root/usr/share/luci/menu.d/luci-app-hd-idle.json:3 msgid "HDD Idle" msgstr "硬碟休眠" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:17 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 msgid "" -"HDD Idle is a utility program for spinning-down external disks after a " -"period of idle time." -msgstr "HDD Idle是一個實用程式,用於在一段時間的空閒時間後對外部磁盤降低轉速。" +"HDD Idle is a utility program for spinning-down disks after a period of idle " +"time." +msgstr "硬碟休眠是控制當硬碟在空閒一段時間後進入休眠模式的工具。" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:32 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:75 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:87 msgid "Idle time" msgstr "休眠時間" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:35 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:79 msgid "Idle time unit" msgstr "休眠時間單位" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:19 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 msgid "Settings" msgstr "設定" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:39 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:68 +msgid "Vendor / Model" +msgstr "廠商/型號" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:84 msgctxt "Abbreviation for days" -msgid "d" -msgstr "日" +msgid "days" +msgstr "天" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:38 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:83 msgctxt "Abbreviation for hours" -msgid "h" +msgid "hours" msgstr "小時" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:37 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:82 msgctxt "Abbreviation for minutes" -msgid "min" -msgstr "分" +msgid "minutes" +msgstr "分鐘" -#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:36 +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:81 msgctxt "Abbreviation for seconds" -msgid "s" +msgid "seconds" msgstr "秒" +#~ msgid "" +#~ "HDD Idle is a utility program for spinning-down external disks after a " +#~ "period of idle time." +#~ msgstr "" +#~ "HDD Idle是一個實用程式,用於在一段時間的空閒時間後對部磁盤降低轉速。" + +#~ msgctxt "Abbreviation for days" +#~ msgid "d" +#~ msgstr "日" + +#~ msgctxt "Abbreviation for hours" +#~ msgid "h" +#~ msgstr "小時" + +#~ msgctxt "Abbreviation for minutes" +#~ msgid "min" +#~ msgstr "分" + +#~ msgctxt "Abbreviation for seconds" +#~ msgid "s" +#~ msgstr "秒" + #~ msgid "h" #~ msgstr "小時" diff --git a/applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json b/applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json index 4aa2f2997e..e82bf4f9f8 100644 --- a/applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json +++ b/applications/luci-app-hd-idle/root/usr/share/rpcd/acl.d/luci-app-hd-idle.json @@ -3,7 +3,7 @@ "description": "Grant UCI access for luci-app-hd-idle", "read": { "file": { - "/dev": [ "list" ] + "/usr/bin/lsblk -n -J -do NAME,TRAN,ROTA,RM,VENDOR,MODEL": [ "exec" ] }, "uci": [ "hd-idle" ] }, |