Changed the grey/magenta/cyan/yellow label text slightly.

Changed Color Ties label to Color Variation Ties
diff --git a/Tools/pynche/DetailsViewer.py b/Tools/pynche/DetailsViewer.py
index 130e18f..fd0f2aa 100644
--- a/Tools/pynche/DetailsViewer.py
+++ b/Tools/pynche/DetailsViewer.py
@@ -85,7 +85,7 @@
         # color ties
         frame = self.__frame = Frame(root)
         frame.pack(expand=YES, fill=X)
-        self.__l1 = Label(frame, text='Color Ties:')
+        self.__l1 = Label(frame, text='Color Variation Ties:')
         self.__l1.grid(row=0, column=0, columnspan=3, sticky=E)
         self.__rvar = IntVar()
         self.__rvar.set(4)
@@ -146,10 +146,10 @@
         if tie in (0, 1, 2, 4):
             text = ''
         else:
-            text = '(%s)' % {3: 'Cyan',
-                             5: 'Magenta',
-                             6: 'Yellow',
-                             7: 'Grey'}[tie]
+            text = '(= %s Level)' % {3: 'Cyan',
+                                     5: 'Magenta',
+                                     6: 'Yellow',
+                                     7: 'Grey'}[tie]
         self.__l2.configure(text=text)
 
     def __quit(self, event=None):