Remove an obsolete command and its translation
This commit is contained in:
parent
013305f306
commit
9eecb1da13
@ -1103,8 +1103,6 @@ You can define several column markers by using white space to separate the diffe
|
|||||||
<MessageBox> <!-- $INT_REPLACE$ is a place holder, don't translate it -->
|
<MessageBox> <!-- $INT_REPLACE$ is a place holder, don't translate it -->
|
||||||
<ContextMenuXmlEditWarning title="Editing contextMenu" message="Editing contextMenu.xml allows you to modify your Notepad++ popup context menu.
|
<ContextMenuXmlEditWarning title="Editing contextMenu" message="Editing contextMenu.xml allows you to modify your Notepad++ popup context menu.
|
||||||
You have to restart your Notepad++ to take effect after modifying contextMenu.xml."/>
|
You have to restart your Notepad++ to take effect after modifying contextMenu.xml."/>
|
||||||
<NppHelpAbsentWarning title="File does not exist" message="
|
|
||||||
doesn't exist. Please download it on Notepad++ site."/>
|
|
||||||
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.
|
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.
|
||||||
All the saved modifications can not be undone.
|
All the saved modifications can not be undone.
|
||||||
|
|
||||||
|
@ -1077,7 +1077,6 @@ Vous pouvez définir plusieurs marqueurs de colonne en utilisant un espace pour
|
|||||||
<SettingsOnCloudError title="Les paramètres dans le cloud" message="Il semble que les paramètres dans le cloud se trouve sur un lecteur en lecture seule,
|
<SettingsOnCloudError title="Les paramètres dans le cloud" message="Il semble que les paramètres dans le cloud se trouve sur un lecteur en lecture seule,
|
||||||
ou à un dossier restreint. Votre paramètres dans le cloud seront annulés.
|
ou à un dossier restreint. Votre paramètres dans le cloud seront annulés.
|
||||||
Veuillez réinitialiser une valeur cohérente au dialogue Préférences."/>
|
Veuillez réinitialiser une valeur cohérente au dialogue Préférences."/>
|
||||||
<NppHelpAbsentWarning title="Le fichier n'existe pas" message=" n'existe pas. Veuillez le télécharger sur le site de Notepad++."/>
|
|
||||||
<SaveCurrentModifWarning title="Sauvegarder la modification en cours" message="Vous devez enregistrer la modification en cours. Toutes les modifications enregistrées ne peuvent pas être annulées. Continuer ?"/>
|
<SaveCurrentModifWarning title="Sauvegarder la modification en cours" message="Vous devez enregistrer la modification en cours. Toutes les modifications enregistrées ne peuvent pas être annulées. Continuer ?"/>
|
||||||
<FilePathNotFoundWarning title="Ouvrir" message="Le fichier que vous essayez d'ouvrir n'existe pas."/>
|
<FilePathNotFoundWarning title="Ouvrir" message="Le fichier que vous essayez d'ouvrir n'existe pas."/>
|
||||||
<SessionFileInvalidError title="Impossible de charger la session" message="Le fichier de session est endommagé ou non valide."/>
|
<SessionFileInvalidError title="Impossible de charger la session" message="Le fichier de session est endommagé ou non valide."/>
|
||||||
|
@ -1077,8 +1077,6 @@
|
|||||||
<MessageBox>
|
<MessageBox>
|
||||||
<ContextMenuXmlEditWarning title="編輯快顯功能表" message="編輯 contextMenu.xml 可以變更 Notepad++ 之快顯功能表。
|
<ContextMenuXmlEditWarning title="編輯快顯功能表" message="編輯 contextMenu.xml 可以變更 Notepad++ 之快顯功能表。
|
||||||
請於修改後重新啟動 Notepad++ 以使變更生效。"/>
|
請於修改後重新啟動 Notepad++ 以使變更生效。"/>
|
||||||
<NppHelpAbsentWarning title="檔案不存在" message="
|
|
||||||
不存在。請在 Notepad++ 網站上下載。"/>
|
|
||||||
<SaveCurrentModifWarning title="警告" message="您必須儲存目前的修改,而儲存後將無法復原。
|
<SaveCurrentModifWarning title="警告" message="您必須儲存目前的修改,而儲存後將無法復原。
|
||||||
您確定要繼續嗎?"/>
|
您確定要繼續嗎?"/>
|
||||||
<LoseUndoAbilityWarning title="警告" message="您必須儲存目前的修改,而儲存後將無法復原。
|
<LoseUndoAbilityWarning title="警告" message="您必須儲存目前的修改,而儲存後將無法復原。
|
||||||
|
@ -2976,29 +2976,6 @@ void Notepad_plus::command(int id)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case IDM_HELP :
|
|
||||||
{
|
|
||||||
generic_string tmp((NppParameters::getInstance()).getNppPath());
|
|
||||||
generic_string nppHelpPath = tmp.c_str();
|
|
||||||
|
|
||||||
nppHelpPath += TEXT("\\user.manual\\documentation\\notepad-online-document.html");
|
|
||||||
if (::PathFileExists(nppHelpPath.c_str()))
|
|
||||||
::ShellExecute(NULL, TEXT("open"), nppHelpPath.c_str(), NULL, NULL, SW_SHOWNORMAL);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
generic_string msg = nppHelpPath;
|
|
||||||
generic_string warning, title;
|
|
||||||
if (!_nativeLangSpeaker.getMsgBoxLang("NppHelpAbsentWarning", title, warning))
|
|
||||||
{
|
|
||||||
title = TEXT("File does not exist");
|
|
||||||
warning = TEXT("\rdoesn't exist. Please download it on Notepad++ site.");
|
|
||||||
}
|
|
||||||
msg += warning;
|
|
||||||
::MessageBox(_pPublicInterface->getHSelf(), msg.c_str(), title.c_str(), MB_OK);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case IDM_HOMESWEETHOME :
|
case IDM_HOMESWEETHOME :
|
||||||
{
|
{
|
||||||
::ShellExecute(NULL, TEXT("open"), TEXT("https://notepad-plus-plus.org/"), NULL, NULL, SW_SHOWNORMAL);
|
::ShellExecute(NULL, TEXT("open"), TEXT("https://notepad-plus-plus.org/"), NULL, NULL, SW_SHOWNORMAL);
|
||||||
|
@ -416,7 +416,6 @@ static const WinMenuKeyDefinition winKeyDefs[] =
|
|||||||
{ VK_NULL, IDM_CONFUPDATERPROXY, false, false, false, TEXT("Set Updater Proxy...") },
|
{ VK_NULL, IDM_CONFUPDATERPROXY, false, false, false, TEXT("Set Updater Proxy...") },
|
||||||
{ VK_NULL, IDM_DEBUGINFO, false, false, false, nullptr },
|
{ VK_NULL, IDM_DEBUGINFO, false, false, false, nullptr },
|
||||||
{ VK_F1, IDM_ABOUT, false, false, false, nullptr }
|
{ VK_F1, IDM_ABOUT, false, false, false, nullptr }
|
||||||
// { VK_F1, IDM_HELP, false, false, true, nullptr }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -553,7 +553,7 @@
|
|||||||
//#define IDM_PLUGINSHOME (IDM_ABOUT + 5)
|
//#define IDM_PLUGINSHOME (IDM_ABOUT + 5)
|
||||||
#define IDM_UPDATE_NPP (IDM_ABOUT + 6)
|
#define IDM_UPDATE_NPP (IDM_ABOUT + 6)
|
||||||
#define IDM_WIKIFAQ (IDM_ABOUT + 7)
|
#define IDM_WIKIFAQ (IDM_ABOUT + 7)
|
||||||
#define IDM_HELP (IDM_ABOUT + 8)
|
//#define IDM_HELP (IDM_ABOUT + 8)
|
||||||
#define IDM_CONFUPDATERPROXY (IDM_ABOUT + 9)
|
#define IDM_CONFUPDATERPROXY (IDM_ABOUT + 9)
|
||||||
#define IDM_CMDLINEARGUMENTS (IDM_ABOUT + 10)
|
#define IDM_CMDLINEARGUMENTS (IDM_ABOUT + 10)
|
||||||
#define IDM_ONLINESUPPORT (IDM_ABOUT + 11)
|
#define IDM_ONLINESUPPORT (IDM_ABOUT + 11)
|
||||||
|
Loading…
Reference in New Issue
Block a user