Project/ProjectProtocolsBrowser.py

changeset 5974
dfb291b5b620
parent 5970
411f7ba577d5
child 5984
bc7ec03158fc
diff -r 54aba06fefe2 -r dfb291b5b620 Project/ProjectProtocolsBrowser.py
--- a/Project/ProjectProtocolsBrowser.py	Fri Nov 17 18:42:38 2017 +0100
+++ b/Project/ProjectProtocolsBrowser.py	Fri Nov 17 18:47:07 2017 +0100
@@ -97,10 +97,10 @@
             self.__compileAllProtocols)
         self.sourceMenu.addSeparator()
         self.sourceMenu.addAction(
-            self.tr('Compile protocol as grpc'),
+            self.tr('Compile protocol as gRPC'),
             lambda: self.__compileProtocol(grpc=True))
         self.sourceMenu.addAction(
-            self.tr('Compile all protocols as grpc'),
+            self.tr('Compile all protocols as gRPC'),
             lambda: self.__compileAllProtocols(grpc=True))
         self.sourceMenu.addSeparator()
         self.sourceMenu.addAction(self.tr('Open'), self._openItem)
@@ -141,10 +141,10 @@
             self.__compileAllProtocols)
         self.menu.addSeparator()
         self.menu.addAction(
-            self.tr('Compile protocol as grpc'),
+            self.tr('Compile protocol as gRPC'),
             lambda: self.__compileProtocol(grpc=True))
         self.menu.addAction(
-            self.tr('Compile all protocols as grpc'),
+            self.tr('Compile all protocols as gRPC'),
             lambda: self.__compileAllProtocols(grpc=True))
         self.menu.addSeparator()
         self.menu.addAction(self.tr('Open'), self._openItem)
@@ -170,7 +170,7 @@
             self.__compileAllProtocols)
         self.backMenu.addSeparator()
         self.backMenu.addAction(
-            self.tr('Compile all protocols as grpc'),
+            self.tr('Compile all protocols as gRPC'),
             lambda: self.__compileAllProtocols(grpc=True))
         self.backMenu.addSeparator()
         self.backMenu.addAction(
@@ -195,7 +195,7 @@
             self.__compileSelectedProtocols)
         self.multiMenu.addSeparator()
         self.multiMenu.addAction(
-            self.tr('Compile protocols as grpc'),
+            self.tr('Compile protocols as gRPC'),
             lambda: self.__compileSelectedProtocols(grpc=True))
         self.multiMenu.addSeparator()
         self.multiMenu.addAction(self.tr('Open'), self._openItem)
@@ -222,7 +222,7 @@
             self.__compileAllProtocols)
         self.dirMenu.addSeparator()
         self.dirMenu.addAction(
-            self.tr('Compile all protocols as grpc'),
+            self.tr('Compile all protocols as gRPC'),
             lambda: self.__compileAllProtocols(grpc=True))
         act = self.dirMenu.addAction(
             self.tr('Remove from project'), self._removeFile)
@@ -255,7 +255,7 @@
             self.__compileAllProtocols)
         self.dirMultiMenu.addSeparator()
         self.dirMultiMenu.addAction(
-            self.tr('Compile all protocols as grpc'),
+            self.tr('Compile all protocols as gRPC'),
             lambda: self.__compileAllProtocols(grpc=True))
         self.dirMultiMenu.addAction(
             self.tr('Add protocols...'), self.project.addProtoFiles)
@@ -460,7 +460,7 @@
         """
         Private method to get the compiler command.
         
-        @param grpc flag indicating to get a grpc command
+        @param grpc flag indicating to get a gRPC command
         @type bool
         @return tuple giving the executable and its parameter list
         @rtype tuple of (str, list of str)
@@ -525,7 +525,7 @@
         @type int
         @param exitStatus exit status of the process
         @type QProcess.ExitStatus
-        @param grpc flag indicating to compile as grpc files
+        @param grpc flag indicating to compile as gRPC files
         @type bool
         """
         self.__compileRunning = False
@@ -576,7 +576,7 @@
         @type bool
         @param progress reference to the progress dialog
         @type E5ProgressDialog
-        @param grpc flag indicating to compile as grpc files
+        @param grpc flag indicating to compile as gRPC files
         @type bool
         @return reference to the compile process
         @rtype QProcess
@@ -630,7 +630,7 @@
         """
         Private method to compile a protocol to Python.
         
-        @param grpc flag indicating to compile as grpc files
+        @param grpc flag indicating to compile as gRPC files
         @type bool
         """
         if self.__getCompilerCommand(grpc)[0] is not None:
@@ -643,7 +643,7 @@
         """
         Private method to compile all protocols to Python.
         
-        @param grpc flag indicating to compile as grpc files
+        @param grpc flag indicating to compile as gRPC files
         @type bool
         """
         if self.__getCompilerCommand(grpc)[0] is not None:
@@ -677,7 +677,7 @@
         """
         Private method to compile selected protocols to Python.
         
-        @param grpc flag indicating to compile as grpc files
+        @param grpc flag indicating to compile as gRPC files
         @type bool
         """
         if self.__getCompilerCommand(grpc)[0] is not None:

eric ide

mercurial