-
Notifications
You must be signed in to change notification settings - Fork 817
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
Remove "…" from "Create Debug Archive" button #4380
Conversation
I am not sure I understand this. Do you have a screenshot to clarify it?
They are automatically handled. |
I edited my initial post with a more elaborate explanation / motivation for this PR. |
Also note that this PR currently only covers this single button since that is the one I noticed in the client, but looking at the translation files there are more instances and (at least in the German translation) min. one occurrence where there is already no blank before the ellipsis. |
@spacegaier thanks for your contribution |
this is fine code wise but I will let our designers decide what is best here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! :)
Looks like an ellipsis (as if some text is cut off), but that is not the case => clearer without the dots Signed-off-by: Philip Allgaier <philip.allgaier@gmx.de>
AppImage file: Nextcloud-PR-4380-e75f37bf2e9c28dcf9abc467ae612fdb7eeb257f-x86_64.AppImage |
/backport to stable-3.5 |
Currently the button label for the debug archive creation, is: "Create debug archive ...".
The current label looks weird, since it makes it seem like something is missing / cut-off on that button.
The common UX approach with ellipsis in regards to menu option and buttons is that "..." is used to indicate that clicking the button requires then some further user input (but then the ellipsis should directly follow the label without a space in between). However, usually it is also said that buttons that open a dialog should not automatically have ellipsis.
In my current PR state, I removed them completely which might however be a step too far, so I would also be fine with adding them again, but getting rid of the blank in between => "Create debug archive..." to be in line with basically all commonly used applications and UX guides.
See as reference: https://docs.microsoft.com/en-us/windows/win32/uxguide/cmd-menus#using-ellipses
Are the translation files handled automatically somehow or would I need to remove the ellipsis there manually?
Signed-off-by: Philip Allgaier philip.allgaier@gmx.de