-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Projects: rename Board to Column in interface and improve consistency #22767
Conversation
I started fixing various capitalization inconsistencies and then noticed the plan in #20985 is to rename boards to columns. So I decided to do that here as well so it matches what we want it to look like in the end. That PR however has been stalled for a bit, and I don't know if it would be acceptable to merge just the interface side renaming or not. |
What is called a board now is really a column on a project board. This changes just the naming in the interface and leaves the underlying implementation unchanged. Further this improves consistency of the projects interface in a few ways: * Consistent title case for titles, buttons and menu items * Use just Column instead of Project Column consistently * Fix some wrong plural names * Consistent color of cancel and submit buttons in forms * Fix inconsistent rendering of template field in new project
571bdf2
to
7f3e8d8
Compare
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #22767 +/- ##
=======================================
Coverage 47.29% 47.29%
=======================================
Files 1111 1111
Lines 149398 149408 +10
=======================================
+ Hits 70656 70668 +12
- Misses 70350 70354 +4
+ Partials 8392 8386 -6
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
LGTM, could you resolve conflicts? |
#20985 sort of does this |
* giteaofficial/main: Revert "[skip ci] Updated translations via Crowdin" (go-gitea#23167) [skip ci] Updated translations via Crowdin Return 404 instead of 403 if user can not access the repo (go-gitea#23155) [skip ci] Updated licenses and gitignores Fix secrets overview page missing from docs sidebar (go-gitea#23143) Add "Reviewed by you" filter for pull requests (go-gitea#22927) Projects: rename Board to Column in interface and improve consistency (go-gitea#22767) Fix DBConsistency checks on MSSQL (go-gitea#23132) Add pagination for dashboard and user activity feeds (go-gitea#22937) Update go.mod dependencies (go-gitea#23126) Show empty repos in Admin Repository Management page (go-gitea#23114) Redirect to the commit page after applying patch (go-gitea#23056) Bump go.etcd.io/bbolt and blevesearch deps (go-gitea#23062) Fix height for sticky head on large screen on PR page (go-gitea#23111)
In #22767, we changed the class of `Edit Column` button from `red` to `primary` But `red` is used to find this button in js..... --------- Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
What is called a board now is really a column on a project board. This changes just the naming in the interface and leaves the underlying implementation unchanged.
Further this improves consistency of the projects interface in a few ways: