@@ -1215,18 +1215,18 @@ void wxMaximaFrame::SetupMaximaMenu() {
1215
1215
stringMenu->Append (wxWindow::NewControlId (), _ (" Transformations" ), transformMenu);
1216
1216
m_MaximaMenu->Append (wxWindow::NewControlId (), _ (" String" ), stringMenu);
1217
1217
wxMenu *regexMenu = new wxMenu;
1218
- regexMenu->Append (EventIDs::menu_sregex_load, _ (" Load the regex processor " ));
1219
- regexMenu->Append (EventIDs::menu_sregex_regex_compile, _ (" Compile a regex " ));
1218
+ regexMenu->Append (EventIDs::menu_sregex_load, _ (" Load the regular expression package (sregex) " ));
1219
+ regexMenu->Append (EventIDs::menu_sregex_regex_compile, _ (" Compile a regular expression " ));
1220
1220
regexMenu->Append (EventIDs::menu_sregex_regex_match_pos, _ (" Position of a match" ));
1221
1221
regexMenu->Append (EventIDs::menu_sregex_regex_match, _ (" Return a match" ));
1222
1222
regexMenu->Append (EventIDs::menu_sregex_regex_split, _ (" Split on match" ));
1223
1223
regexMenu->Append (EventIDs::menu_sregex_subst_first, _ (" Substitute first match" ));
1224
1224
regexMenu->Append (EventIDs::menu_sregex_regex_subst, _ (" Substitute all matches" ));
1225
1225
regexMenu->Append (EventIDs::menu_sregex_string_to_regex,
1226
- _ (" Regex that matches a string" ));
1227
- stringMenu->Append (wxWindow::NewControlId (), _ (" RegEx " ), regexMenu);
1226
+ _ (" Regular expression that matches a string" ));
1227
+ stringMenu->Append (wxWindow::NewControlId (), _ (" Regular expressions " ), regexMenu);
1228
1228
wxMenu *operatingSystemMenu = new wxMenu;
1229
- regexMenu ->Append (EventIDs::menu_opsyst_load, _ (" Load the file/dir operations" ));
1229
+ operatingSystemMenu ->Append (EventIDs::menu_opsyst_load, _ (" Load the file/dir operations (operatingsystem) " ));
1230
1230
wxMenu *dirMenu = new wxMenu;
1231
1231
dirMenu->Append (EventIDs::menu_opsyst_directory, _ (" List directory" ));
1232
1232
dirMenu->Append (EventIDs::menu_opsyst_getcurrentdirectory, _ (" Get current directory" ));
@@ -1249,17 +1249,17 @@ void wxMaximaFrame::SetupMaximaMenu() {
1249
1249
wxMenu *envMenu = new wxMenu;
1250
1250
envMenu->Append (EventIDs::menu_opsyst_getenv, _ (" Read environment variable..." ));
1251
1251
operatingSystemMenu->Append (wxWindow::NewControlId (), _ (" Environment variables" ), envMenu);
1252
- m_MaximaMenu->Append (wxWindow::NewControlId (), _ (" mkdir,... " ), operatingSystemMenu);
1252
+ m_MaximaMenu->Append (wxWindow::NewControlId (), _ (" File/directory functions " ), operatingSystemMenu);
1253
1253
1254
1254
m_gentranMenu = new wxMenu;
1255
- m_gentranMenu->Append (EventIDs::gentran_load, _ (" Load the translation generator" ));
1255
+ m_gentranMenu->Append (EventIDs::gentran_load, _ (" Load the translation generator (gentran) " ));
1256
1256
m_gentranMenu->AppendRadioItem (EventIDs::gentran_lang_c, _ (" Output C" ));
1257
1257
m_gentranMenu->AppendRadioItem (EventIDs::gentran_lang_fortran, _ (" Output Fortran" ));
1258
1258
m_gentranMenu->AppendRadioItem (EventIDs::gentran_lang_ratfor,
1259
1259
_ (" Output Rational Fortran" ));
1260
1260
m_gentranMenu->Append (EventIDs::gentran_to_stdout, _ (" Convert" ));
1261
1261
m_gentranMenu->Append (EventIDs::gentran_to_file, _ (" Convert + Write to file" ));
1262
- m_MaximaMenu->Append (wxWindow::NewControlId (), _ (" maxima to other language" ), m_gentranMenu);
1262
+ m_MaximaMenu->Append (wxWindow::NewControlId (), _ (" Maxima to other language" ), m_gentranMenu);
1263
1263
m_MenuBar->Append (m_MaximaMenu, _ (" &Maxima" ));
1264
1264
}
1265
1265
0 commit comments