summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--doc/ranger.14
-rw-r--r--doc/ranger.pod4
-rw-r--r--ranger/core/actions.py2
-rw-r--r--ranger/core/fm.py2
-rw-r--r--ranger/core/main.py4
-rw-r--r--ranger/data/config_examples/options.py2
-rw-r--r--ranger/defaults/options.py2
7 files changed, 10 insertions, 10 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1
index 9b323d31..2e9ed749 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -160,7 +160,7 @@ full traceback.  The default behavior is to merely print the name of the
 exception in the statusbar/log and try to keep running.
 .IP "\fB\-c\fR, \fB\-\-clean\fR" 14
 .IX Item "-c, --clean"
-Activate the clean mode:  Ranger will not access or create any configuration
+Activate the clean mode:  ranger will not access or create any configuration
 files nor will it leave any traces on your system.  This is useful when your
 configuration is broken, when you want to avoid clutter, etc.
 .IP "\fB\-\-choosefile\fR=\fItargetfile\fR" 14
@@ -660,7 +660,7 @@ See \f(CW\*(C`copymap\*(C'\fR
 Removes key mappings of the console. Works like the \f(CW\*(C`unmap\*(C'\fR command.
 .IP "delete [\fIconfirmation\fR]" 2
 .IX Item "delete [confirmation]"
-Destroy all files in the selection with a roundhouse kick.  Ranger will ask for
+Destroy all files in the selection with a roundhouse kick.  ranger will ask for
 a confirmation if you attempt to delete multiple (marked) files or non-empty
 directories.
 .Sp
diff --git a/doc/ranger.pod b/doc/ranger.pod
index c3c8fe7d..ee4757ac 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -45,7 +45,7 @@ exception in the statusbar/log and try to keep running.
 
 =item B<-c>, B<--clean>
 
-Activate the clean mode:  Ranger will not access or create any configuration
+Activate the clean mode:  ranger will not access or create any configuration
 files nor will it leave any traces on your system.  This is useful when your
 configuration is broken, when you want to avoid clutter, etc.
 
@@ -688,7 +688,7 @@ Removes key mappings of the console. Works like the C<unmap> command.
 
 =item delete [I<confirmation>]
 
-Destroy all files in the selection with a roundhouse kick.  Ranger will ask for
+Destroy all files in the selection with a roundhouse kick.  ranger will ask for
 a confirmation if you attempt to delete multiple (marked) files or non-empty
 directories.
 
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index b382a684..02e0f9b7 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -84,7 +84,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 		try:
 			item = self.loader.queue[0]
 		except:
-			self.notify("Type Q or :quit<Enter> to exit Ranger")
+			self.notify("Type Q or :quit<Enter> to exit ranger")
 		else:
 			self.notify("Aborting: " + item.get_description())
 			self.loader.remove(index=0)
diff --git a/ranger/core/fm.py b/ranger/core/fm.py
index e2a86399..f68942bd 100644
--- a/ranger/core/fm.py
+++ b/ranger/core/fm.py
@@ -54,7 +54,7 @@ class FM(Actions, SignalDispatcher):
 		self.current_tab = 1
 		self.loader = Loader()
 
-		self.log.append('Ranger {0} started! Process ID is {1}.' \
+		self.log.append('ranger {0} started! Process ID is {1}.' \
 				.format(__version__, os.getpid()))
 		self.log.append('Running on Python ' + sys.version.replace('\n',''))
 
diff --git a/ranger/core/main.py b/ranger/core/main.py
index d58081bc..5fe93d61 100644
--- a/ranger/core/main.py
+++ b/ranger/core/main.py
@@ -115,12 +115,12 @@ def main():
 		except (AttributeError, NameError):
 			pass
 		if crash_traceback:
-			print("Ranger version: %s, executed with python %s" %
+			print("ranger version: %s, executed with python %s" %
 					(ranger.__version__, sys.version.split()[0]))
 			print("Locale: %s" % '.'.join(str(s) for s in locale.getlocale()))
 			print("Current file: %s" % filepath)
 			print(crash_traceback)
-			print("Ranger crashed.  " \
+			print("ranger crashed.  " \
 				"Please report this traceback at:")
 			print("http://savannah.nongnu.org/bugs/?group=ranger&func=additem")
 			return 1
diff --git a/ranger/data/config_examples/options.py b/ranger/data/config_examples/options.py
index 7006ebd5..6a0a3bc4 100644
--- a/ranger/data/config_examples/options.py
+++ b/ranger/data/config_examples/options.py
@@ -12,7 +12,7 @@
 # This line imports some basic variables
 from ranger.api.options import *
 
-# Ranger can use a customizable external script for previews.  The included
+# ranger can use a customizable external script for previews.  The included
 # default script prints previews of archives, html/pdf documents and even
 # images.  This is, however, disabled by default for performance reasons.  Turn
 # it on by uncommenting this line:
diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py
index 9e183720..d9f6278c 100644
--- a/ranger/defaults/options.py
+++ b/ranger/defaults/options.py
@@ -47,7 +47,7 @@ hidden_filter = regexp(
 show_hidden = False
 
 # Which script is used to generate file previews?
-# Ranger ships with scope.sh, a script that calls external programs (see
+# ranger ships with scope.sh, a script that calls external programs (see
 # README for dependencies) to preview images, archives, etc.
 preview_script = '~/.config/ranger/scope.sh'