diff options
Diffstat (limited to 'applications/luci-app-hd-idle')
28 files changed, 1222 insertions, 578 deletions
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..745f524ba8 100644 --- a/applications/luci-app-hd-idle/po/de/hd-idle.po +++ b/applications/luci-app-hd-idle/po/de/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\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 "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 "" + +#: 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 "" + +#: 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 "" + +#: 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/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..584b9fdf40 100644 --- a/applications/luci-app-hd-idle/po/es/hd-idle.po +++ b/applications/luci-app-hd-idle/po/es/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\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 "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 "" + +#: 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 "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 "" + +#: 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/fr/hd-idle.po b/applications/luci-app-hd-idle/po/fr/hd-idle.po index b39cbd6ccc..bb0ee08d9e 100644 --- a/applications/luci-app-hd-idle/po/fr/hd-idle.po +++ b/applications/luci-app-hd-idle/po/fr/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\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 "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 "" + +#: 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 "" + +#: applications/luci-app-hd-idle/htdocs/luci-static/resources/view/hd_idle.js:49 msgid "Enable" msgstr "Activer" @@ -30,50 +38,71 @@ msgstr "Activer" 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 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 "" + +#: 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 "" -#: 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 "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 49336490c7..0827f241d1 100644 --- a/applications/luci-app-hd-idle/po/it/hd-idle.po +++ b/applications/luci-app-hd-idle/po/it/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-10 16:32+0000\n" -"Last-Translator: bovirus <roberto.boriotti@canon-europe.com>\n" +"PO-Revision-Date: 2021-09-15 08:34+0000\n" +"Last-Translator: pisquan8 <cimurro@outlook.de>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshd-idle/it/>\n" "Language: it\n" @@ -12,69 +12,98 @@ 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.1-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 "Aggiungi nuova impostazione disco rigido..." + +#: 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:27 +#: 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" #: 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 "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" +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 "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" #~ msgstr "ora/e" 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..b8cc2fd3f6 100644 --- a/applications/luci-app-hd-idle/po/pl/hd-idle.po +++ b/applications/luci-app-hd-idle/po/pl/hd-idle.po @@ -15,15 +15,23 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.3.2\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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "g" +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 "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..a03074bab1 100644 --- a/applications/luci-app-hd-idle/po/pt/hd-idle.po +++ b/applications/luci-app-hd-idle/po/pt/hd-idle.po @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2-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 "" + +#: 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 "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." +"\" (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" -#: 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/pt_BR/hd-idle.po b/applications/luci-app-hd-idle/po/pt_BR/hd-idle.po index 7439147a85..b602cbf350 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 @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3.2-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 "" + +#: 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 "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 "" + +#: 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/ro/hd-idle.po b/applications/luci-app-hd-idle/po/ro/hd-idle.po index b77b08f1fd..7b8cd7622d 100644 --- a/applications/luci-app-hd-idle/po/ro/hd-idle.po +++ b/applications/luci-app-hd-idle/po/ro/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "20)) ? 1 : 2);;\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 "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 "Activeaza" @@ -32,49 +40,54 @@ msgstr "Activeaza" 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 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" -#: 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/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..dfe3bd4cae 100644 --- a/applications/luci-app-hd-idle/po/sv/hd-idle.po +++ b/applications/luci-app-hd-idle/po/sv/hd-idle.po @@ -12,15 +12,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.4-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 "" -#: 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/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..e0f21400e5 100644 --- a/applications/luci-app-hd-idle/po/tr/hd-idle.po +++ b/applications/luci-app-hd-idle/po/tr/hd-idle.po @@ -16,15 +16,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-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 "" + +#: 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 "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 "" + +#: 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 "" -#: 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 "" -#: 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 "" -#: 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 "" + +#~ 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..242806d853 100644 --- a/applications/luci-app-hd-idle/po/uk/hd-idle.po +++ b/applications/luci-app-hd-idle/po/uk/hd-idle.po @@ -17,15 +17,23 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 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 "Додати новий параметр жорсткого диска..." -#: 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 "Налаштування" -#: 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..e39c1e343b 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 @@ -14,15 +14,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-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,48 +38,69 @@ 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" -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 "秒" # Hours #~ msgid "h" 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..7e856ebce3 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 @@ -12,15 +12,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\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 "啟用" @@ -28,48 +36,75 @@ 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" -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 "秒" #~ 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" ] }, |