Update English translation modele, + French & Chinese

This commit is contained in:
Don HO 2019-03-26 13:42:04 +01:00
parent b75ccd29e2
commit 54d2bc5528
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
5 changed files with 31 additions and 25 deletions

View File

@ -79,6 +79,7 @@
<Item id="41005" name="除此檔案外,關閉所有檔案"/> <Item id="41005" name="除此檔案外,關閉所有檔案"/>
<Item id="41009" name="關閉左側所有檔案"/> <Item id="41009" name="關閉左側所有檔案"/>
<Item id="41018" name="關閉右側所有檔案"/> <Item id="41018" name="關閉右側所有檔案"/>
<Item id="41024" name="關閉所有已存檔未變更的檔案"/>
<Item id="41006" name="儲存此檔案(&amp;S)"/> <Item id="41006" name="儲存此檔案(&amp;S)"/>
<Item id="41007" name="儲存所有檔案(&amp;E)"/> <Item id="41007" name="儲存所有檔案(&amp;E)"/>
<Item id="41008" name="另存新檔(&amp;A)..."/> <Item id="41008" name="另存新檔(&amp;A)..."/>
@ -343,9 +344,9 @@
<Item CMID="17" name="關閉左側所有檔案"/> <Item CMID="17" name="關閉左側所有檔案"/>
<Item CMID="18" name="關閉右側所有檔案"/> <Item CMID="18" name="關閉右側所有檔案"/>
<Item CMID="19" name="於檔案總管開啟檔案位置"/> <Item CMID="19" name="於檔案總管開啟檔案位置"/>
<Item CMID="20" name="於 CMD 開啟檔案位置"/> <Item CMID="20" name="於 CMD 開啟檔案位置"/>
<Item CMID="21" name="在電腦預設顯示器中開啟"/> <Item CMID="21" name="在電腦預設顯示器中開啟"/>
<Item CMID="22" name="關閉所有已存檔未變更的檔案"/>
</TabBar> </TabBar>
</Menu> </Menu>
<Dialog> <Dialog>

View File

@ -79,6 +79,7 @@
<Item id="41005" name="Close All BUT Current Document"/> <Item id="41005" name="Close All BUT Current Document"/>
<Item id="41009" name="Close All to the Left"/> <Item id="41009" name="Close All to the Left"/>
<Item id="41018" name="Close All to the Right"/> <Item id="41018" name="Close All to the Right"/>
<Item id="41024" name="Close All Unchanged"/>
<Item id="41006" name="&amp;Save"/> <Item id="41006" name="&amp;Save"/>
<Item id="41007" name="Sav&amp;e All"/> <Item id="41007" name="Sav&amp;e All"/>
<Item id="41008" name="Save &amp;As..."/> <Item id="41008" name="Save &amp;As..."/>
@ -343,6 +344,7 @@
<Item CMID="19" name="Open Containing Folder in Explorer"/> <Item CMID="19" name="Open Containing Folder in Explorer"/>
<Item CMID="20" name="Open Containing Folder in cmd"/> <Item CMID="20" name="Open Containing Folder in cmd"/>
<Item CMID="21" name="Open in Default Viewer"/> <Item CMID="21" name="Open in Default Viewer"/>
<Item CMID="22" name="Close All Unchanged"/>
</TabBar> </TabBar>
</Menu> </Menu>

View File

@ -84,6 +84,7 @@
<Item id="41005" name="Fermer tout sauf le document actuel"/> <Item id="41005" name="Fermer tout sauf le document actuel"/>
<Item id="41009" name="Fermer tout à gauche"/> <Item id="41009" name="Fermer tout à gauche"/>
<Item id="41018" name="Fermer tout à droite"/> <Item id="41018" name="Fermer tout à droite"/>
<Item id="41024" name="Fermer tous les documents non-modifiés"/>
<Item id="41006" name="&amp;Enregistrer"/> <Item id="41006" name="&amp;Enregistrer"/>
<Item id="41007" name="En&amp;registrer tout"/> <Item id="41007" name="En&amp;registrer tout"/>
<Item id="41008" name="Enregistrer &amp;sous..."/> <Item id="41008" name="Enregistrer &amp;sous..."/>
@ -340,6 +341,7 @@
<Item CMID="19" name="Ouvrir le répertoire du fichier en cours dans l'explorateur"/> <Item CMID="19" name="Ouvrir le répertoire du fichier en cours dans l'explorateur"/>
<Item CMID="20" name="Ouvrir le répertoire du fichier en cours dans l'invite de commande"/> <Item CMID="20" name="Ouvrir le répertoire du fichier en cours dans l'invite de commande"/>
<Item CMID="21" name="Ouvrir dans l'application par défaut"/> <Item CMID="21" name="Ouvrir dans l'application par défaut"/>
<Item CMID="22" name="Fermer tous les documents non-modifiés"/>
</TabBar> </TabBar>
</Menu> </Menu>
<Dialog> <Dialog>

View File

@ -1110,7 +1110,8 @@ bool Notepad_plus::fileCloseAllUnchanged()
{ {
std::vector<int> vecIndexesToClose; std::vector<int> vecIndexesToClose;
for (int i = int(_pDocTab->nbItem()) - 1; i >= 0; i--) { for (int i = int(_pDocTab->nbItem()) - 1; i >= 0; i--)
{
BufferID id = _mainDocTab.getBufferByIndex(i); BufferID id = _mainDocTab.getBufferByIndex(i);
Buffer* buf = MainFileManager->getBufferByID(id); Buffer* buf = MainFileManager->getBufferByID(id);
if ((buf->isUntitled() && buf->docLength() == 0) || !buf->isDirty()) if ((buf->isUntitled() && buf->docLength() == 0) || !buf->isDirty())