# # # patch "ChangeLog" # from [f8cae14ded7b353edede456f33fb77047658f9cf] # to [1e46d717949d1b0c3ad02dfac5b5aeb04a9b7e9a] # # patch "lua.cc" # from [428c82fdc531bd1129bb642c7423b666e93cf3dc] # to [f383734fd155f9144eb978155db7da45660c5d40] # ============================================================ --- ChangeLog f8cae14ded7b353edede456f33fb77047658f9cf +++ ChangeLog 1e46d717949d1b0c3ad02dfac5b5aeb04a9b7e9a @@ -1,5 +1,9 @@ 2006-04-23 Alex Queiroz + * lua.cc: Fixed typo. + +2006-04-23 Alex Queiroz + * pt_BR.po: Fixed some fuzzy translations. 2006-04-21 Richard Levitte ============================================================ --- lua.cc 428c82fdc531bd1129bb642c7423b666e93cf3dc +++ lua.cc f383734fd155f9144eb978155db7da45660c5d40 @@ -583,7 +583,7 @@ N(pathstr, F("%s called with an invalid parameter") % "IncludeDir"); fs::path locpath(pathstr, fs::native); - N(fs::exists(locpath), F("Directory '%s' does not exists") % pathstr); + N(fs::exists(locpath), F("Directory '%s' does not exist") % pathstr); N(fs::is_directory(locpath), F("'%s' is not a directory") % pathstr); // directory, iterate over it, skipping subdirs, taking every filename,