Changed "grpc" to "gRPC" in visible strings and source docu.

Fri, 17 Nov 2017 18:47:07 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 17 Nov 2017 18:47:07 +0100
changeset 5974
dfb291b5b620
parent 5973
54aba06fefe2
child 5975
3bc24855b254

Changed "grpc" to "gRPC" in visible strings and source docu.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Source/eric6.Project.ProjectProtocolsBrowser.html file | annotate | diff | comparison | revisions
Preferences/ConfigurationPages/ProtobufPage.py file | annotate | diff | comparison | revisions
Preferences/ConfigurationPages/ProtobufPage.ui file | annotate | diff | comparison | revisions
Preferences/ProgramsDialog.py file | annotate | diff | comparison | revisions
Project/ProjectProtocolsBrowser.py file | annotate | diff | comparison | revisions
i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
i18n/eric6_de.qm file | annotate | diff | comparison | revisions
i18n/eric6_de.ts file | annotate | diff | comparison | revisions
i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
i18n/eric6_en.ts file | annotate | diff | comparison | revisions
i18n/eric6_es.ts file | annotate | diff | comparison | revisions
i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
i18n/eric6_it.ts file | annotate | diff | comparison | revisions
i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Source/eric6.Project.ProjectProtocolsBrowser.html	Fri Nov 17 18:42:38 2017 +0100
+++ b/Documentation/Source/eric6.Project.ProjectProtocolsBrowser.html	Fri Nov 17 18:47:07 2017 +0100
@@ -172,7 +172,7 @@
 </p><dl>
 <dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to compile as grpc files
+flag indicating to compile as gRPC files
 </dd>
 </dl><a NAME="ProjectProtocolsBrowser.__compileProto" ID="ProjectProtocolsBrowser.__compileProto"></a>
 <h4>ProjectProtocolsBrowser.__compileProto</h4>
@@ -191,7 +191,7 @@
 reference to the progress dialog
 </dd><dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to compile as grpc files
+flag indicating to compile as gRPC files
 </dd>
 </dl><dl>
 <dt>Returns:</dt>
@@ -217,7 +217,7 @@
 exit status of the process
 </dd><dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to compile as grpc files
+flag indicating to compile as gRPC files
 </dd>
 </dl><a NAME="ProjectProtocolsBrowser.__compileProtocol" ID="ProjectProtocolsBrowser.__compileProtocol"></a>
 <h4>ProjectProtocolsBrowser.__compileProtocol</h4>
@@ -227,7 +227,7 @@
 </p><dl>
 <dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to compile as grpc files
+flag indicating to compile as gRPC files
 </dd>
 </dl><a NAME="ProjectProtocolsBrowser.__compileSelectedProtocols" ID="ProjectProtocolsBrowser.__compileSelectedProtocols"></a>
 <h4>ProjectProtocolsBrowser.__compileSelectedProtocols</h4>
@@ -237,7 +237,7 @@
 </p><dl>
 <dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to compile as grpc files
+flag indicating to compile as gRPC files
 </dd>
 </dl><a NAME="ProjectProtocolsBrowser.__configureProtobuf" ID="ProjectProtocolsBrowser.__configureProtobuf"></a>
 <h4>ProjectProtocolsBrowser.__configureProtobuf</h4>
@@ -257,7 +257,7 @@
 </p><dl>
 <dt><i>grpc</i> (bool)</dt>
 <dd>
-flag indicating to get a grpc command
+flag indicating to get a gRPC command
 </dd>
 </dl><dl>
 <dt>Returns:</dt>
--- a/Preferences/ConfigurationPages/ProtobufPage.py	Fri Nov 17 18:42:38 2017 +0100
+++ b/Preferences/ConfigurationPages/ProtobufPage.py	Fri Nov 17 18:47:07 2017 +0100
@@ -36,7 +36,7 @@
         
         self.grpcPythonPicker.setMode(E5PathPickerModes.OpenFileMode)
         self.grpcPythonPicker.setToolTip(self.tr(
-            "Press to select the Python interpreter containing the grpc"
+            "Press to select the Python interpreter containing the gRPC"
             " compiler via a file selection dialog."))
         
         # set initial values
--- a/Preferences/ConfigurationPages/ProtobufPage.ui	Fri Nov 17 18:42:38 2017 +0100
+++ b/Preferences/ConfigurationPages/ProtobufPage.ui	Fri Nov 17 18:47:07 2017 +0100
@@ -60,7 +60,7 @@
    <item>
     <widget class="QGroupBox" name="groupBox_3">
      <property name="title">
-      <string>grpc Compiler</string>
+      <string>gRPC Compiler</string>
      </property>
      <layout class="QVBoxLayout" name="verticalLayout_3">
       <item>
@@ -69,7 +69,7 @@
          <enum>Qt::StrongFocus</enum>
         </property>
         <property name="toolTip">
-         <string>Enter the path of the Python interpreter containing the grpc compiler.</string>
+         <string>Enter the path of the Python interpreter containing the gRPC compiler.</string>
         </property>
        </widget>
       </item>
--- a/Preferences/ProgramsDialog.py	Fri Nov 17 18:42:38 2017 +0100
+++ b/Preferences/ProgramsDialog.py	Fri Nov 17 18:47:07 2017 +0100
@@ -220,7 +220,7 @@
         if not exe:
             exe = sys.executable
         self.__createProgramEntry(
-            self.tr("grpc Compiler"), exe, '--version', 'libprotoc', -1,
+            self.tr("gRPC Compiler"), exe, '--version', 'libprotoc', -1,
             exeModule=['-m', 'grpc_tools.protoc'])
         
         # 6. do the spell checking entry
--- 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:
--- a/i18n/eric6_cs.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_cs.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -41928,7 +41928,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -44153,12 +44153,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44223,7 +44223,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45198,12 +45198,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45218,7 +45218,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
Binary file i18n/eric6_de.qm has changed
--- a/i18n/eric6_de.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_de.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -40950,8 +40950,8 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
-        <translation>grpc Compiler</translation>
+        <source>gRPC Compiler</source>
+        <translation>gRPC Compiler</translation>
     </message>
 </context>
 <context>
@@ -43139,13 +43139,13 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
-        <translation>Protokoll als grpc übersetzen</translation>
+        <source>Compile protocol as gRPC</source>
+        <translation>Protokoll als gRPC übersetzen</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
-        <translation>Alle Protokolle als grpc übersetzen</translation>
+        <source>Compile all protocols as gRPC</source>
+        <translation>Alle Protokolle als gRPC übersetzen</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="201"/>
@@ -43209,8 +43209,8 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
-        <translation>Protokolle als grpc übersetzen</translation>
+        <source>Compile protocols as gRPC</source>
+        <translation>Protokolle als gRPC übersetzen</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="443"/>
@@ -44152,13 +44152,13 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
-        <translation>grpc Compiler</translation>
+        <source>gRPC Compiler</source>
+        <translation>gRPC Compiler</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
-        <translation>Gib den Pfad des  Python-Interpreters ein, der den grpc Compiler enthält.</translation>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
+        <translation>Gib den Pfad des  Python-Interpreters ein, der den gRPC Compiler enthält.</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="79"/>
@@ -44172,8 +44172,8 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
-        <translation>Den Python-Interpreter, der den grpc Compiler enthält, mittels eines Dateiauswahldialoges wählen.</translation>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
+        <translation>Den Python-Interpreter, der den gRPC Compiler enthält, mittels eines Dateiauswahldialoges wählen.</translation>
     </message>
 </context>
 <context>
--- a/i18n/eric6_empty.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_empty.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -40740,7 +40740,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -42928,12 +42928,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -42998,7 +42998,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43930,12 +43930,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43950,7 +43950,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_en.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_en.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -40779,7 +40779,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -42968,12 +42968,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43038,7 +43038,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43970,12 +43970,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43990,7 +43990,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_es.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_es.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -40952,7 +40952,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -43151,12 +43151,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43221,7 +43221,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44163,12 +44163,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44183,7 +44183,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_fr.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_fr.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -41669,7 +41669,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -43883,12 +43883,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43953,7 +43953,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44930,12 +44930,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44950,7 +44950,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_it.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_it.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -40900,7 +40900,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -43099,12 +43099,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -43169,7 +43169,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44112,12 +44112,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44132,7 +44132,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_pt.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_pt.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -42362,7 +42362,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -44561,12 +44561,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44631,7 +44631,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45609,12 +45609,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45629,7 +45629,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_ru.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_ru.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -41036,8 +41036,8 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
-        <translation>Компилятор grpc</translation>
+        <source>gRPC Compiler</source>
+        <translation type="unfinished">Компилятор grpc</translation>
     </message>
 </context>
 <context>
@@ -43245,13 +43245,13 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
-        <translation>Компилировать протокол в виде grpc</translation>
+        <source>Compile protocol as gRPC</source>
+        <translation type="unfinished">Компилировать протокол в виде grpc</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
-        <translation>Компилировать все протоколы в виде grpc</translation>
+        <source>Compile all protocols as gRPC</source>
+        <translation type="unfinished">Компилировать все протоколы в виде grpc</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="201"/>
@@ -43315,8 +43315,8 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
-        <translation>Компилировать протоколы в виде grpc</translation>
+        <source>Compile protocols as gRPC</source>
+        <translation type="unfinished">Компилировать протоколы в виде grpc</translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="443"/>
@@ -44259,13 +44259,13 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
-        <translation>Компилятор grpc</translation>
+        <source>gRPC Compiler</source>
+        <translation type="unfinished">Компилятор grpc</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
-        <translation>Задайте путь до интерпретатора Python, содержащего компилятор grpc.</translation>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
+        <translation type="unfinished">Задайте путь до интерпретатора Python, содержащего компилятор grpc.</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="79"/>
@@ -44279,8 +44279,8 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
-        <translation>Выбор интерпретатора Python, содержащий компилятор grpc, посредством диалога выбора файлов.</translation>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
+        <translation type="unfinished">Выбор интерпретатора Python, содержащий компилятор grpc, посредством диалога выбора файлов.</translation>
     </message>
 </context>
 <context>
--- a/i18n/eric6_tr.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_tr.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -41754,7 +41754,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -43953,12 +43953,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44023,7 +44023,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44999,12 +44999,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45019,7 +45019,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
--- a/i18n/eric6_zh_CN.ts	Fri Nov 17 18:42:38 2017 +0100
+++ b/i18n/eric6_zh_CN.ts	Fri Nov 17 18:47:07 2017 +0100
@@ -41751,7 +41751,7 @@
     </message>
     <message>
         <location filename="../Preferences/ProgramsDialog.py" line="222"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -43964,12 +43964,12 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="143"/>
-        <source>Compile protocol as grpc</source>
+        <source>Compile protocol as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="257"/>
-        <source>Compile all protocols as grpc</source>
+        <source>Compile all protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -44034,7 +44034,7 @@
     </message>
     <message>
         <location filename="../Project/ProjectProtocolsBrowser.py" line="197"/>
-        <source>Compile protocols as grpc</source>
+        <source>Compile protocols as gRPC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45009,12 +45009,12 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="63"/>
-        <source>grpc Compiler</source>
+        <source>gRPC Compiler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.ui" line="72"/>
-        <source>Enter the path of the Python interpreter containing the grpc compiler.</source>
+        <source>Enter the path of the Python interpreter containing the gRPC compiler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -45029,7 +45029,7 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/ProtobufPage.py" line="38"/>
-        <source>Press to select the Python interpreter containing the grpc compiler via a file selection dialog.</source>
+        <source>Press to select the Python interpreter containing the gRPC compiler via a file selection dialog.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>

eric ide

mercurial