Skip to content
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

[enhance](gui) refine the placeholder for login dialog #701

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions feeluown/gui/widgets/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __init__(self, uri=None, required_cookies_fields=None):

self.cookies_text_edit.setAcceptRichText(False)
self.cookies_text_edit.setPlaceholderText(
'请从浏览器中复制 Cookie:\n\n'
'Chrome 复制的 cookie 格式类似:key1=value1; key2=value2\n\n'
'Firefox 复制的 cookie 格式类似:{"key1": value1, "key1": value2}'
'请从浏览器中复制 Cookie:建议找到一个 Post 请求,'
'然后从请求的 Request Header 里面把 cookie 字段的值拷贝出来\n\n'
'这个值的格式类似:key1=value1; key2=value2\n\n'
)

if self._use_webview is True:
Expand Down