-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Conversation
// Extension Management strings | ||
"INSTALL_EXTENSION_TITLE" : "安装扩展", | ||
"INSTALL_EXTENSION_LABEL" : "扩展包地址", | ||
"INSTALL_EXTENSION_HINT" : "填写一个基于URL的ZIP扩展包地址.", |
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.
If my understanding is correct, I think URL and ZIP get flipped in the translation. And translation is missing for the part of "or GitHub repo". We're telling the user either provide the url of the zip file OR the url of the GitHub repo.
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.
@RaymondLim I know!
You still haven't solved the merge conflict in your end. It seems like you need to fix it in your git client. Are you on Windows? Please look for .gitattributes file in your Brackets folder on your machine. Open it in a text editor and see you have the following lines
If you don't have it, then fix it in your .gitattributes file. If you have it and you still cannot solve the merge conflict, please let me know. |
@RaymondLim Github .gitattributes have
|
"BAD_HTTP_STATUS" : "未在服务器上发现该文件 (HTTP {0}).", | ||
"ERROR_LOADING" : "扩展程序遇到一个错误,将重启扩展.", | ||
"MALFORMED_URL" : "无法识别的URL地址.", | ||
"UNSUPPORTED_PROTOCOL" : "需要一个Http或Https协议的地址.", |
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.
You need to look up the latest English strings in this entire block (line305 - 329) and retranslate the updated strings, not just those I pointed out. Otherwise, you may miss some of the string updates.
I know you're trying to translate all the new or updated strings, but your file has less lines (341) than English file which has 346 lines. So you have 5 strings missing. Not sure you miss any existing ones that are updated after your previous pulll request. So please diff the current English version with the previous English version that you use for your first version of translation. |
@RaymondLim Show active line is show colour to active line?or highlight line? |
Show active line is to highlight the line with the current cursor location in a different background color. |
@RaymondLim Is highlight line!!! |
"API_NOT_COMPATIBLE" : "扩展包将安装到你的扩展目录中,但是这个扩展包不适合你现在的版本.", | ||
"MISSING_MAIN" : "扩展包遗失main.js文件.", | ||
"ALREADY_INSTALLED" : "扩展将安装到你的扩张目录,但是在扩展目录中发现了以前安装了同样的扩展.", | ||
"NO_DISABLED_DIRECTORY" : "由于扩展文件夹不存在或禁用了扩展,所以无法保存扩展至扩展文件夹.", |
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.
Don't translate folder path "extensions/disabled". Keep it as is and take out 或禁用了扩展
@@ -229,7 +234,7 @@ define({ | |||
"CMD_QUICK_EDIT_NEXT_MATCH" : "下一个匹配项", | |||
"CMD_NEXT_DOC" : "下一个文件", | |||
"CMD_PREV_DOC" : "上一个文件", | |||
"CMD_SHOW_IN_TREE" : "定位于工作目录中", | |||
"CMD_SHOW_IN_TREE" : "转到工作目录", |
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.
I don't think 转到 is better than 定位于 since it means "goto" and does not imply locating it in the file tree. Maybe we should have translation of "Show Current Document in File Tree".
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.
@RaymondLim "转到" equal "定位于" ,and more reasonable in the Chinese language!
You may want to check English version strings again. I noticed that you don't have translation for "CANNOT_WRITE_TEMP" string. Not sure that if there are any strings that were updated after you started your translation. After you merge the latest and finish all translation, then I'll try to fix the line ending issue on our end for you. |
I still can't resolve the merge conflict in this pull request. So I created a new pull request #3287 and close this one |
No description provided.