stashapp / stash

An organizer for your porn, written in Go. Documentation: https://docs.stashapp.cc
https://stashapp.cc/
GNU Affero General Public License v3.0
8.85k stars 781 forks source link

[Feature] Rename Scenes Tab to Videos #5117

Open StashManRon opened 1 month ago

StashManRon commented 1 month ago

Is your feature request related to a problem? Please describe.

The problem is new users currently don't understand that the Scenes tab means 'Here is where all of your video files will appear and then think it's all broken when 'Movies' doesn't populate with any information. Part of this issue will be solved when 'Groups' goes live.

Describe the solution you'd like

Renaming the Scenes tab & all associated with it to something like 'Videos' would make it clearer that Stash doesn't care if the file is a full movie or a web scene etc. The files will still end up under the tab

Describe alternatives you've considered

The alternative is to leave the status quo and end up with the same regular Q&A sessions on discord

BonerFide commented 4 weeks ago

In my perfect world scenes/videos/movies/groups/markers/playlists etc would all be the same generic 'list of items' and you'd just be able to pin them to the top (or more likely a left hand menu due to the non constrained nature of the number of items) the way we currently save filters or have homepage customization.

You could set defaults as 'all videos' / 'all media under this path' /r 'all images' / 'all groups of type movie' / 'all markers' / 'all media with this tag' etc. People could call them what they want and name them what they want, in a sense they'd all be just lists of filtered media. And you could then also have types of display (eg, 2:3 images, 16:9 images, lists, tagger view etc.)

We've kind of backed ourselves into a corner by making things so rigid. When we want to add a certain thing to images / markers / scenes / galleries / movies we've got to do it in 5 places because we've made a distinction between images and video in the data structure, when they really are just inherited from the same base media concept, and may just have fields that are 'unused' in the other, but also share a lot in common.

Dankonite commented 2 weeks ago

I know this doesnt fix the proposed problem for new people, but I figured I would post this here incase anyone else somehow ends up here trying to find out how to rename tabs. There may be other instances where the word "scene(s)" pops up but they can be fixed via the same general idea.

.navbar-nav a:has(.fa-circle-play) span {
  visibility: hidden;
  display: inline-block;
  font-size: 0;
}
.navbar-nav a:has(.fa-circle-play) span:after {
  visibility: visible;
  content: "Videos";
  font-size: 1rem;
}
echo6ix commented 2 weeks ago

I know this doesnt fix the proposed problem for new people, but I figured I would post this here incase anyone else somehow ends up here trying to find out how to rename tabs. There may be other instances where the word "scene(s)" pops up but they can be fixed via the same general idea.

Much simpler than this is using the Custom Localization setting.

Go to Settings > Interface > Custom Localization > Enable and Edit

{
  "scenes": "Videos"
}