Skip to content
  1. Jun 18, 2021
  2. Jun 17, 2021
    • Hosted Weblate's avatar
      Translated using Weblate (Hungarian) · a100ce1e
      Hosted Weblate authored
      
      
      Currently translated at 0.9% (2 of 211 strings)
      
      Translation: OpenWrt/LuCI/applications/dockerman
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/hu/
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 10.6% (18 of 169 strings)
      
      Translation: OpenWrt/LuCI/applications/travelmate
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/hu/
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 7.7% (15 of 193 strings)
      
      Translation: OpenWrt/LuCI/applications/banip
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/hu/
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 23.6% (40 of 169 strings)
      
      Translation: OpenWrt/LuCI/applications/adblock
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/hu/
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 6.2% (2 of 32 strings)
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 100.0% (72 of 72 strings)
      
      Translated using Weblate (Hungarian)
      
      Currently translated at 100.0% (11 of 11 strings)
      
      Translated using Weblate (Chinese (Traditional))
      
      Currently translated at 19.1% (37 of 193 strings)
      
      Translation: OpenWrt/LuCI/applications/banip
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
      
      Translated using Weblate (Chinese (Traditional))
      
      Currently translated at 95.2% (161 of 169 strings)
      
      Translation: OpenWrt/LuCI/applications/adblock
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
      
      Translated using Weblate (Portuguese)
      
      Currently translated at 100.0% (196 of 196 strings)
      
      Translation: OpenWrt/LuCI/applications/ddns
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt/
      
      Translated using Weblate (Portuguese)
      
      Currently translated at 100.0% (32 of 32 strings)
      
      Translated using Weblate (Turkish)
      
      Currently translated at 100.0% (1739 of 1739 strings)
      
      Translation: OpenWrt/LuCI/modules/luci-base
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
      
      Co-authored-by: default avatarGergő Szalka <kisszalimo@gmail.com>
      Co-authored-by: default avatarHosted Weblate <hosted@weblate.org>
      Co-authored-by: default avatarsemih <semiht@gmail.com>
      Co-authored-by: default avatarssantos <ssantos@web.de>
      Co-authored-by: default avatar曹恩逢 <nelson22768384@gmail.com>
      Signed-off-by: default avatarGergő Szalka <kisszalimo@gmail.com>
      Signed-off-by: default avatarsemih <semiht@gmail.com>
      Signed-off-by: default avatarssantos <ssantos@web.de>
      Signed-off-by: default avatar曹恩逢 <nelson22768384@gmail.com>
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/hu/
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/hu/
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/hu/
      Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/pt/
      Translation: OpenWrt/LuCI/applications/opkg
      Translation: OpenWrt/LuCI/applications/p910nd
      Translation: OpenWrt/LuCI/applications/watchcat
      a100ce1e
    • Jo-Philipp Wich's avatar
      luci-mod-network: parse ports without tag/pvid annotation as well · e57f8663
      Jo-Philipp Wich authored
      Fixes: 01eac366
      
       ("luci-mod-network: fix tagging/pvid state parsing in bridge-vlan ports")
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      e57f8663
    • Jo-Philipp Wich's avatar
      luci-mod-network: fix tagging/pvid state parsing in bridge-vlan ports · 01eac366
      Jo-Philipp Wich authored
      
      
      The previous code naively looked for a `t` in the entire port spec,
      wrongly matching untagged ports having a `t` in their name, such
      as `eth0`.
      
      Rework the logic to be more strict when parsing the port member
      specification to avoid this issue.
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      01eac366
    • Jo-Philipp Wich's avatar
      luci-theme-openwrt-2020: fix spinning disk animation · e8a6f0bb
      Jo-Philipp Wich authored
      
      
      Fixes: #4824
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      e8a6f0bb
    • Jo-Philipp Wich's avatar
      luci-mod-network: refactor device configuration · f689d0d2
      Jo-Philipp Wich authored
      Since all netifd device types inherit generic device settings, we can
      simplify various aspects of the device configuration ui and drop unused
      code while we're at it.
      
       - Remove setIfActive() helper, superseded by commit
         f3f74bd0 ("luci-base: form.js: consider aliased options in AbstractValue.remove()")
      
       - Remove most dependency constraints to make all generic device settings
         available for all device types
      
       - Add MTU value validation to disallow exceeding parent device MTU for
         VLAN interfaces
      
       - Dynamically update placeholder values when changing base or parent
         device options
      
       - Undo VLAN network config hack since all options are available now.
         Reverts commit
         3c6b5950
      
       ("luci-mod-interfaces: simplify configuring MAC address of 802.1q devices")
      
       - Do not suggest inactive wireless networks as existing device or base
         device choices
      
       - Disallow specifying names of already existing network devices when
         creating new device settings
      
       - Fix a number of multicast dependency specifications
      
       - Drop now unused functions
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      f689d0d2
    • Jo-Philipp Wich's avatar
    • Jo-Philipp Wich's avatar
      luci-mod-network: only consider bridge vlans belonging to the current device · f6f1eacb
      Jo-Philipp Wich authored
      
      
      In case multiple bridges with bridge vlans are declared, LuCI did not
      correctly filter the VLANs to show only the ones belonging to the
      bridge being configured currently.
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      f6f1eacb
  3. Jun 16, 2021
  4. Jun 15, 2021
  5. Jun 14, 2021
  6. Jun 13, 2021
  7. Jun 12, 2021
  8. Jun 11, 2021
  9. Jun 10, 2021
  10. Jun 09, 2021