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

Fix MacVim localized intro text, and don't hide the :h version9 prompt #1381

Merged
merged 1 commit into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/po/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -3700,7 +3700,7 @@ msgstr "escriba :help<Intro> o <F1> para obtener ayuda "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr " escriba «:help macvim<Enter>» para obtener ayuda para MacVim"
msgstr "escriba :help macvim<Enter> para obtener ayuda para MacVim"

msgid "type :help version9<Enter> for version info"
msgstr "escriba :help version9<Intro> para obtener información de la versión"
Expand Down
2 changes: 1 addition & 1 deletion src/po/zh_CN.UTF-8.po
Original file line number Diff line number Diff line change
Expand Up @@ -3561,7 +3561,7 @@ msgstr "输入 :help<Enter> 或 <F1> 查看在线帮助 "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr " 输入 :help macvim<Enter> 查看 MacVim 的在线帮助"
msgstr " 输入 :help macvim<Enter> 查看 MacVim 的在线帮助"

msgid "type :help version9<Enter> for version info"
msgstr "输入 :help version9<Enter> 查看版本信息 "
Expand Down
2 changes: 1 addition & 1 deletion src/po/zh_CN.cp936.po
Original file line number Diff line number Diff line change
Expand Up @@ -3561,7 +3561,7 @@ msgstr "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr " ���� :help macvim<Enter> �鿴 MacVim �����߰���"
msgstr " ���� :help macvim<Enter> �鿴 MacVim �����߰���"

msgid "type :help version9<Enter> for version info"
msgstr "���� :help version9<Enter> �鿴�汾��Ϣ "
Expand Down
2 changes: 1 addition & 1 deletion src/po/zh_CN.po
Original file line number Diff line number Diff line change
Expand Up @@ -3561,7 +3561,7 @@ msgstr "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr " ���� :help macvim<Enter> �鿴 MacVim �����߰���"
msgstr " ���� :help macvim<Enter> �鿴 MacVim �����߰���"

msgid "type :help version9<Enter> for version info"
msgstr "���� :help version9<Enter> �鿴�汾��Ϣ "
Expand Down
2 changes: 1 addition & 1 deletion src/po/zh_TW.UTF-8.po
Original file line number Diff line number Diff line change
Expand Up @@ -4799,7 +4799,7 @@ msgstr "線上說明請輸入 :help<Enter> "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr "MacVim 線上說明請輸入 :help<Enter> "
msgstr "MacVim 線上說明請輸入 :help<Enter> "

msgid "type :help version9<Enter> for version info"
msgstr "新版本資訊請輸入 :help version9<Enter>"
Expand Down
2 changes: 1 addition & 1 deletion src/po/zh_TW.po
Original file line number Diff line number Diff line change
Expand Up @@ -4792,7 +4792,7 @@ msgstr "

# MacVim only
msgid "type :help macvim<Enter> for MacVim help "
msgstr "MacVim �u�W�����п�J :help<Enter> "
msgstr "MacVim �u�W�����п�J :help<Enter> "

msgid "type :help version9<Enter> for version info"
msgstr "�s������T�п�J :help version9<Enter>"
Expand Down
3 changes: 1 addition & 2 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -3933,11 +3933,10 @@ intro_message(
"",
N_("type :q<Enter> to exit "),
N_("type :help<Enter> or <F1> for on-line help"),
N_("type :help version9<Enter> for version info"),
#ifdef FEAT_GUI_MACVIM
// TODO: Don't steal the show from version8 help?
N_("type :help macvim<Enter> for MacVim help "),
#else
N_("type :help version9<Enter> for version info"),
#endif
NULL,
"",
Expand Down