[PR #13254] [MERGED] 13150 add gettext_lazy to tables for internationalization support #14145

Closed
opened 2025-12-29 23:22:47 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/13254
Author: @arthanson
Created: 7/25/2023
Status: Merged
Merged: 7/31/2023
Merged by: @jeremystretch

Base: featureHead: 13150-table-translation


📝 Commits (10+)

  • ec4b5d6 13150 translate table column fields
  • d39a99f Merge branch 'feature' into 13150-table-translation
  • a4c7fb8 13150 internationalize dcim tables
  • 90d751d 13150 internationalize ipam tables
  • d26ead2 13150 internationalize ipam tables
  • 341a86a 13150 merge feature
  • f04e557 13150 internationalize tables
  • 217765e ActionsColumn doesn't need verbose_name (no header)
  • 769d715 Capitalization fixes
  • b36be1a Merge branch 'feature' into 13150-table-translation

📊 Changes

30 files changed (+822 additions, -327 deletions)

View changed files

📝 netbox/circuits/tables/circuits.py (+13 -8)
📝 netbox/circuits/tables/providers.py (+25 -11)
📝 netbox/core/tables/data.py (+16 -4)
📝 netbox/core/tables/jobs.py (+22 -7)
📝 netbox/dcim/tables/cables.py (+11 -10)
📝 netbox/dcim/tables/connections.py (+10 -5)
📝 netbox/dcim/tables/devices.py (+136 -49)
📝 netbox/dcim/tables/devicetypes.py (+40 -23)
📝 netbox/dcim/tables/modules.py (+18 -5)
📝 netbox/dcim/tables/power.py (+24 -7)
📝 netbox/dcim/tables/racks.py (+37 -14)
📝 netbox/dcim/tables/sites.py (+23 -9)
📝 netbox/extras/tables/tables.py (+120 -49)
📝 netbox/ipam/tables/asn.py (+8 -2)
📝 netbox/ipam/tables/fhrp.py (+11 -5)
📝 netbox/ipam/tables/ip.py (+67 -36)
📝 netbox/ipam/tables/l2vpn.py (+12 -6)
📝 netbox/ipam/tables/services.py (+12 -2)
📝 netbox/ipam/tables/vlans.py (+39 -14)
📝 netbox/ipam/tables/vrfs.py (+13 -4)

...and 10 more files

📄 Description

Fixes: #13150


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/13254 **Author:** [@arthanson](https://github.com/arthanson) **Created:** 7/25/2023 **Status:** ✅ Merged **Merged:** 7/31/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `feature` ← **Head:** `13150-table-translation` --- ### 📝 Commits (10+) - [`ec4b5d6`](https://github.com/netbox-community/netbox/commit/ec4b5d625c16ae092ddacb12c51c17480390a666) 13150 translate table column fields - [`d39a99f`](https://github.com/netbox-community/netbox/commit/d39a99f0e1b05525079fadb289affdee6b3a1a5f) Merge branch 'feature' into 13150-table-translation - [`a4c7fb8`](https://github.com/netbox-community/netbox/commit/a4c7fb82948b4ebb84751a398f38c86350409ef5) 13150 internationalize dcim tables - [`90d751d`](https://github.com/netbox-community/netbox/commit/90d751db26f60eac37d479af2e9e93e24f56a4bd) 13150 internationalize ipam tables - [`d26ead2`](https://github.com/netbox-community/netbox/commit/d26ead2f4ba6d6eb15360143467ba80e5192680a) 13150 internationalize ipam tables - [`341a86a`](https://github.com/netbox-community/netbox/commit/341a86a4e18d49ab02497035487f3652a305c5c8) 13150 merge feature - [`f04e557`](https://github.com/netbox-community/netbox/commit/f04e55743bf8102508e712dc5d321a28a4a9fd42) 13150 internationalize tables - [`217765e`](https://github.com/netbox-community/netbox/commit/217765ec6c5c01483e4e8bd025923727eb79e223) ActionsColumn doesn't need verbose_name (no header) - [`769d715`](https://github.com/netbox-community/netbox/commit/769d715542b549f454492da3ca009e98571902a0) Capitalization fixes - [`b36be1a`](https://github.com/netbox-community/netbox/commit/b36be1a9e5756d0aef41b3c4e2e0fbd27ebe8571) Merge branch 'feature' into 13150-table-translation ### 📊 Changes **30 files changed** (+822 additions, -327 deletions) <details> <summary>View changed files</summary> 📝 `netbox/circuits/tables/circuits.py` (+13 -8) 📝 `netbox/circuits/tables/providers.py` (+25 -11) 📝 `netbox/core/tables/data.py` (+16 -4) 📝 `netbox/core/tables/jobs.py` (+22 -7) 📝 `netbox/dcim/tables/cables.py` (+11 -10) 📝 `netbox/dcim/tables/connections.py` (+10 -5) 📝 `netbox/dcim/tables/devices.py` (+136 -49) 📝 `netbox/dcim/tables/devicetypes.py` (+40 -23) 📝 `netbox/dcim/tables/modules.py` (+18 -5) 📝 `netbox/dcim/tables/power.py` (+24 -7) 📝 `netbox/dcim/tables/racks.py` (+37 -14) 📝 `netbox/dcim/tables/sites.py` (+23 -9) 📝 `netbox/extras/tables/tables.py` (+120 -49) 📝 `netbox/ipam/tables/asn.py` (+8 -2) 📝 `netbox/ipam/tables/fhrp.py` (+11 -5) 📝 `netbox/ipam/tables/ip.py` (+67 -36) 📝 `netbox/ipam/tables/l2vpn.py` (+12 -6) 📝 `netbox/ipam/tables/services.py` (+12 -2) 📝 `netbox/ipam/tables/vlans.py` (+39 -14) 📝 `netbox/ipam/tables/vrfs.py` (+13 -4) _...and 10 more files_ </details> ### 📄 Description ### Fixes: #13150 <!-- Please include a summary of the proposed changes below. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 23:22:47 +01:00
adam closed this issue 2025-12-29 23:22:47 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14145