Skip to content

Commit

Permalink
various typos and minor text corrections
Browse files Browse the repository at this point in the history
Ignore-this: cfd3b25a8cbb2ac5b182d0de2f55820a

Mostly just spelling corrections, but also replace "c. S." with "Case"
for case-sensitive search button state.

darcs-hash:20100811052224-740ef-c7d886f29b7764bcb3edd79c62e5f87107c78a21.gz
  • Loading branch information
Jens Petersen committed Aug 11, 2010
1 parent 8413675 commit 591c75e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion data/keymap.lkshk
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
-> EditDelete -> EditDelete
<ctrl>a -> EditSelectAll "Select the whole text in the current buffer" <ctrl>a -> EditSelectAll "Select the whole text in the current buffer"


<ctrl>f -> EditFind "Search for a text string (Toggles the " <ctrl>f -> EditFind "Search for a text string"
F3 -> EditFindNext "Find the next occurence of the text string" F3 -> EditFindNext "Find the next occurence of the text string"


<shift>F3 -> EditFindPrevious "Find the previous occurence of the text string" <shift>F3 -> EditFindPrevious "Find the previous occurence of the text string"
Expand Down
4 changes: 2 additions & 2 deletions doc/leksah_manual.lyx
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ License


\begin_layout Standard \begin_layout Standard
Leksah has been put under the GNU GENERAL PUBLIC LICENSE Version 2. Leksah has been put under the GNU GENERAL PUBLIC LICENSE Version 2.
The full license text can be found in the file data/gpl.TX in the distribution. The full license text can be found in the file data/LICENSE in the distribution.
\end_layout \end_layout


\begin_layout Standard \begin_layout Standard
Expand Down Expand Up @@ -887,7 +887,7 @@ Leksah collects information about all installed packages on your system
has not succeeded to extract the source locations and comments from a module has not succeeded to extract the source locations and comments from a module
or package; they are not consequential, except that some metainformation or package; they are not consequential, except that some metainformation
may be missing. may be missing.
The metada is cached and future starts only scan newly installed packaEges, The metadata is cached and future starts only scan newly installed packages,
starts only information for new packages will be installed. starts only information for new packages will be installed.
\end_layout \end_layout


Expand Down
2 changes: 1 addition & 1 deletion src/IDE/Find.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ constructFindReplace = reifyIDE $ \ ideR -> do
tooltipsSetTip tooltips entireWordButton "When selected only entire words are matched" "" tooltipsSetTip tooltips entireWordButton "When selected only entire words are matched" ""


caseSensitiveButton <- toggleToolButtonNew caseSensitiveButton <- toggleToolButtonNew
toolButtonSetLabel caseSensitiveButton (Just "c. S.") toolButtonSetLabel caseSensitiveButton (Just "Case")
widgetSetName caseSensitiveButton "caseSensitiveButton" widgetSetName caseSensitiveButton "caseSensitiveButton"
toolbarInsert toolbar caseSensitiveButton 0 toolbarInsert toolbar caseSensitiveButton 0
caseSensitiveButton `onToolButtonClicked` (doSearch toolbar Insert ideR) caseSensitiveButton `onToolButtonClicked` (doSearch toolbar Insert ideR)
Expand Down
2 changes: 1 addition & 1 deletion src/IDE/Leksah.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ fDescription configPath = VFD emptyParams [
boolEditor] boolEditor]


-- --
-- | Called when leksah ist first called (the .leksah-xx directory does not exist) -- | Called when leksah is first called (the .leksah-xx directory does not exist)
-- --
firstStart :: Prefs -> IO () firstStart :: Prefs -> IO ()
firstStart prefs = do firstStart prefs = do
Expand Down
2 changes: 1 addition & 1 deletion src/IDE/Metainfo/Provider.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ initInfo continuation = do
prefs <- readIDE prefs prefs <- readIDE prefs
if collectAtStart prefs if collectAtStart prefs
then do then do
ideMessage Normal "Now updating sytem metadata ..." ideMessage Normal "Now updating system metadata ..."
callCollector False True True $ \ _ -> do callCollector False True True $ \ _ -> do
ideMessage Normal "Now loading metadata ..." ideMessage Normal "Now loading metadata ..."
loadSystemInfo loadSystemInfo
Expand Down
2 changes: 1 addition & 1 deletion src/IDE/Pane/Info.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ gotoSource :: IDEAction
gotoSource = do gotoSource = do
mbInfo <- getInfoCont mbInfo <- getInfoCont
case mbInfo of case mbInfo of
Nothing -> do ideMessage Normal "gotoSource:noDefition" Nothing -> do ideMessage Normal "gotoSource:noDefinition"
return () return ()
Just info -> goToDefinition info >> return () Just info -> goToDefinition info >> return ()


Expand Down
4 changes: 2 additions & 2 deletions src/IDE/Pane/Preferences.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -541,8 +541,8 @@ prefsDescription configDir packages = NFDPP [
readParser readParser
autoInstall autoInstall
(\b a -> a{autoInstall = b}) (\b a -> a{autoInstall = b})
(enumEditor ["Install always after a succesful build", (enumEditor ["Install always after a successful build",
"Install if it's a library with dependend packages in the workspace", "Install if it's a library with dependent packages in the workspace",
"Never install"]) "Never install"])
(\i -> return ()) (\i -> return ())
]), ]),
Expand Down

0 comments on commit 591c75e

Please sign in to comment.