svnno****@sourc*****
svnno****@sourc*****
2013年 2月 20日 (水) 16:42:47 JST
Revision: 5128 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5128 Author: doda Date: 2013-02-20 16:42:47 +0900 (Wed, 20 Feb 2013) Log Message: ----------- typo fix. Modified Paths: -------------- trunk/installer/release/lang/English.lng trunk/installer/release/lang/German.lng trunk/ttpmenu/registry.cpp trunk/ttpmenu/registry.h trunk/ttpmenu/ttpmenu.cpp -------------- next part -------------- Modified: trunk/installer/release/lang/English.lng =================================================================== --- trunk/installer/release/lang/English.lng 2013-02-20 07:35:33 UTC (rev 5127) +++ trunk/installer/release/lang/English.lng 2013-02-20 07:42:47 UTC (rev 5128) @@ -931,7 +931,7 @@ DLG_ETC_USER=User Name DLG_ETC_PASS=Password -MSG_ERROR_READREG=Couldn't read the registory data.\n +MSG_ERROR_READREG=Couldn't read the registry data.\n MSG_ERROR_MAKETTL=Could not make 'ttpmenu.TTL'\n MSG_ERROR_LAUNCH=Launching the application was failure.\n MSG_ERROR_NOREGNAME=error: no registry name @@ -939,11 +939,11 @@ MSG_ERROR_NOHOST=error: no host name MSG_ERROR_NOMACRO=error: no macro filename MSG_ERROR_CHECKFILE=checking [%s] file was failure.\n -MSG_ERROR_SAVEREG=error: couldn't save to registory.\n -MSG_ERROR_OPENREG=error: couldn't open registory.\n +MSG_ERROR_SAVEREG=error: couldn't save to registry.\n +MSG_ERROR_OPENREG=error: couldn't open registry.\n MSG_ERROR_SELECTREG=Select deleted registry name MSG_ERROR_GETDELETEREG=Couldn't get the deleting entry -MSG_ERROR_DELETEREG=Couldn't delete the registory.\n +MSG_ERROR_DELETEREG=Couldn't delete the registry.\n MSG_ERROR_WINCLASS=Couldn't register the window class.\n FILEDLG_MACRO_TITLE=specifying macro file Modified: trunk/installer/release/lang/German.lng =================================================================== --- trunk/installer/release/lang/German.lng 2013-02-20 07:35:33 UTC (rev 5127) +++ trunk/installer/release/lang/German.lng 2013-02-20 07:42:47 UTC (rev 5128) @@ -920,7 +920,7 @@ DLG_ETC_USER=Benutzename DLG_ETC_PASS=Passwort -MSG_ERROR_READREG=Couldn't read the registory data.\n +MSG_ERROR_READREG=Couldn't read the registry data.\n MSG_ERROR_MAKETTL=Could not make 'ttpmenu.TTL'\n MSG_ERROR_LAUNCH=Launching the application was failure.\n MSG_ERROR_NOREGNAME=error: no registry name @@ -928,11 +928,11 @@ MSG_ERROR_NOHOST=Fehler: Kein Hostname MSG_ERROR_NOMACRO=Fehler: Kein Makrodateiname MSG_ERROR_CHECKFILE=checking [%s] file was failure.\n -MSG_ERROR_SAVEREG=error: couldn't save to registory.\n -MSG_ERROR_OPENREG=error: couldn't open registory.\n +MSG_ERROR_SAVEREG=error: couldn't save to registry.\n +MSG_ERROR_OPENREG=error: couldn't open registry.\n MSG_ERROR_SELECTREG=Select deleted registry name MSG_ERROR_GETDELETEREG=Couldn't get the deleting entry -MSG_ERROR_DELETEREG=Couldn't delete the registory.\n +MSG_ERROR_DELETEREG=Couldn't delete the registry.\n MSG_ERROR_WINCLASS=Couldn't register the window class.\n FILEDLG_MACRO_TITLE=specifying macro file Modified: trunk/ttpmenu/registry.cpp =================================================================== --- trunk/ttpmenu/registry.cpp 2013-02-20 07:35:33 UTC (rev 5127) +++ trunk/ttpmenu/registry.cpp 2013-02-20 07:42:47 UTC (rev 5128) @@ -4,7 +4,7 @@ "@(#)Copyright (C) NTT-IT 1998 -- registry.cpp -- Ver1.00b1"; /* ========================================================================== Project Name : Universal Library - Outline : Registory Function + Outline : Registry Function Create : 1998-02-17(Tue) Update : Copyright : S.Hayakawa NTT-IT Modified: trunk/ttpmenu/registry.h =================================================================== --- trunk/ttpmenu/registry.h 2013-02-20 07:35:33 UTC (rev 5127) +++ trunk/ttpmenu/registry.h 2013-02-20 07:42:47 UTC (rev 5128) @@ -3,7 +3,7 @@ /* @(#)Copyright (C) NTT-IT 1998 -- registry.h -- Ver1.00b1 */ /* ======================================================================== Project Name : Universal Library - Outline : Registory function Header + Outline : Registry function Header Create : 1998-02-17(Tue) Update : Copyright : S.Hayakawa NTT-IT Modified: trunk/ttpmenu/ttpmenu.cpp =================================================================== --- trunk/ttpmenu/ttpmenu.cpp 2013-02-20 07:35:33 UTC (rev 5127) +++ trunk/ttpmenu/ttpmenu.cpp 2013-02-20 07:42:47 UTC (rev 5128) @@ -1216,7 +1216,7 @@ if (RegLoadLoginHostInformation(szName, &jobInfo) == FALSE) { dwErr = ::GetLastError(); UTIL_get_lang_msg("MSG_ERROR_MAKETTL", uimsg, sizeof(uimsg), - "Couldn't read the registory data.\n", UILanguageFile); + "Couldn't read the registry data.\n", UILanguageFile); ErrorMessage(hWnd, dwErr, uimsg); return FALSE; } @@ -1800,7 +1800,7 @@ if (RegSaveLoginHostInformation(&g_JobInfo) == FALSE) { dwErr = ::GetLastError(); UTIL_get_lang_msg("MSG_ERROR_SAVEREG", uimsg, sizeof(uimsg), - "error: couldn't save to registory.\n", UILanguageFile); + "error: couldn't save to registry.\n", UILanguageFile); ErrorMessage(hWnd, dwErr, uimsg); SetCurrentDirectory(cur); return FALSE; @@ -1846,7 +1846,7 @@ if (RegLoadLoginHostInformation(szName, &g_JobInfo) == FALSE) { dwErr = ::GetLastError(); UTIL_get_lang_msg("MSG_ERROR_OPENREG", uimsg, sizeof(uimsg), - "Couldn't open the registory.\n", UILanguageFile); + "Couldn't open the registry.\n", UILanguageFile); ErrorMessage(hWnd, dwErr, uimsg); return FALSE; } @@ -1983,7 +1983,7 @@ if (RegDelete(HKEY_CURRENT_USER, szSubKey) != ERROR_SUCCESS) { dwErr = ::GetLastError(); UTIL_get_lang_msg("MSG_ERROR_DELETEREG", uimsg, sizeof(uimsg), - "Couldn't delete the registory.\n", UILanguageFile); + "Couldn't delete the registry.\n", UILanguageFile); ErrorMessage(hWnd, dwErr, uimsg); return FALSE; }