Sun, 05 Apr 2020 16:19:12 +0200
Added breeze style icons for the Translator plug-in.
--- a/eric6.e4p Sun Apr 05 12:00:11 2020 +0200 +++ b/eric6.e4p Sun Apr 05 16:19:12 2020 +0200 @@ -2080,15 +2080,22 @@ <Other>eric6/IconEditor/cursors/eraser-cursor.xpm</Other> <Other>eric6/IconEditor/cursors/fill-cursor.xpm</Other> <Other>eric6/IconEditor/cursors/paintbrush-cursor.xpm</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/glosbe.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev1.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev2.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/promt.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flag.png</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/glosbe.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev1.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev2.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/promt.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-light.svg</Other> <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/af.png</Other> <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ar.png</Other> <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/be.png</Other> @@ -2139,9 +2146,12 @@ <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/vi.png</Other> <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/zh-CN.png</Other> <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/zh-TW.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/swap.png</Other> - <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/translate.png</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-light.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-dark.svg</Other> + <Other>eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-light.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/conflict.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/git.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/git92.svg</Other>
--- a/eric6/Plugins/PluginTranslator.py Sun Apr 05 12:00:11 2020 +0200 +++ b/eric6/Plugins/PluginTranslator.py Sun Apr 05 16:19:12 2020 +0200 @@ -60,13 +60,17 @@ @return dictionary containing the relevant data """ + if e5App().usesDarkPalette(): + icon = os.path.join("UiExtensionPlugins", "Translator", "icons", + "flag-dark") + else: + icon = os.path.join("UiExtensionPlugins", "Translator", "icons", + "flag-light") return { "translatorPage": [ QCoreApplication.translate("TranslatorPlugin", "Translator"), - os.path.join("UiExtensionPlugins", "Translator", "icons", - "flag.png"), - createTranslatorPage, None, None], + icon, createTranslatorPage, None, None], } @@ -141,7 +145,7 @@ global translatorPluginObject translatorPluginObject = self - self.__object = Translator(self, self.__ui) + self.__object = Translator(self, e5App().usesDarkPalette(), self.__ui) self.__object.activate() e5App().registerPluginObject("Translator", self.__object)
--- a/eric6/Plugins/UiExtensionPlugins/Translator/Translator.py Sun Apr 05 12:00:11 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/Translator.py Sun Apr 05 16:19:12 2020 +0200 @@ -22,7 +22,7 @@ """ Class implementing the translator object. """ - def __init__(self, plugin, parent=None): + def __init__(self, plugin, usesDarkPalette, parent=None): """ Constructor @@ -35,6 +35,11 @@ self.__ui = parent self.__widget = None + + if usesDarkPalette: + self.__iconSuffix = "dark" + else: + self.__iconSuffix = "light" def activate(self): """ @@ -46,7 +51,8 @@ self.__ui.addSideWidget( self.__ui.BottomSide, self.__widget, UI.PixmapCache.getIcon( - os.path.join(os.path.dirname(__file__), "icons", "flag.png")), + os.path.join(os.path.dirname(__file__), "icons", + "flag-{0}".format(self.__iconSuffix))), self.tr("Translator")) self.__activateAct = E5Action( @@ -85,7 +91,9 @@ @return icon (QIcon) """ return UI.PixmapCache.getIcon(os.path.join( - os.path.dirname(__file__), "icons", name)) + os.path.dirname(__file__), "icons", + "{0}-{1}".format(name, self.__iconSuffix) + )) def __activateWidget(self): """
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Sun Apr 05 12:00:11 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Sun Apr 05 16:19:12 2020 +0200 @@ -13,6 +13,8 @@ from PyQt5.QtCore import QCoreApplication from PyQt5.QtGui import QIcon +from E5Gui.E5Application import e5App + import UI.PixmapCache @@ -107,10 +109,20 @@ @return engine icon @rtype QIcon """ + if e5App().usesDarkPalette(): + iconSuffix = "dark" + else: + iconSuffix = "light" if name in supportedEngineNames(): - return UI.PixmapCache.getIcon(os.path.join( + icon = UI.PixmapCache.getIcon(os.path.join( os.path.dirname(__file__), "..", "icons", "engines", - "{0}.png".format(name))) + "{0}-{1}".format(name, iconSuffix))) + if icon.isNull(): + # try variant without suffix + icon = UI.PixmapCache.getIcon(os.path.join( + os.path.dirname(__file__), "..", "icons", "engines", + "{0}".format(name))) + return icon else: return QIcon()
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorWidget.py Sun Apr 05 12:00:11 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorWidget.py Sun Apr 05 16:19:12 2020 +0200 @@ -59,13 +59,13 @@ self.pronounceTransButton.setVisible(audioAvailable) self.pronounceOrigButton.setIcon( - self.__translator.getAppIcon("pronounce.png")) + self.__translator.getAppIcon("pronounce")) self.pronounceTransButton.setIcon( - self.__translator.getAppIcon("pronounce.png")) + self.__translator.getAppIcon("pronounce")) self.swapButton.setIcon( - self.__translator.getAppIcon("swap.png")) + self.__translator.getAppIcon("swap")) self.translateButton.setIcon( - self.__translator.getAppIcon("translate.png")) + self.__translator.getAppIcon("translate")) self.clearButton.setIcon(UI.PixmapCache.getIcon("editDelete.png")) self.preferencesButton.setIcon(UI.PixmapCache.getIcon("configure.png"))
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(0 -284.3)"> + <path d="m7.6799 296.37c-1.0956-0.62413-3.3561-1.9093-5.0554-2.8741-0.498-0.28275-0.93515-0.53712-0.97146-0.56527-0.10781-0.0836-0.23751-0.26711-0.28556-0.40413l-0.0446-0.127v-5.0691l0.04257-0.10991c0.05791-0.14977 0.14214-0.27412 0.24933-0.36827 0.05516-0.0484 0.91852-0.54468 2.2359-1.2852 2.254-1.267 2.2575-1.2688 2.4862-1.2715 0.25016-3e-3 0.19984-0.0284 2.4985 1.2642 1.1801 0.66359 2.1834 1.2379 2.2295 1.2763 0.11123 0.0925 0.21208 0.23978 0.26726 0.39029l0.0449 0.12257v5.0505l-0.0449 0.12257c-0.05527 0.15085-0.1563 0.29815-0.26726 0.38983-0.04612 0.0381-0.5508 0.33407-1.1214 0.65764-0.57062 0.32356-1.0481 0.59685-1.0611 0.60731-0.018489 0.0149-0.023569 0.32146-0.023569 1.4186v1.3996l-0.042465-9.3e-4c-0.023366-4.9e-4 -0.53478-0.2814-1.1365-0.62418zm-2.559-3.6121c0.2289-0.0719 0.44031-0.27568 0.53343-0.51426 0.03007-0.0771 0.04114-0.1485 0.04277-0.27562l2e-3 -0.17157 0.74934-0.42261c0.41214-0.23243 0.74955-0.42767 0.74982-0.43386 2.844e-4 -6e-3 -0.028039-0.048-0.062884-0.093-0.069996-0.0902-0.16529-0.25867-0.19696-0.34813l-0.02042-0.0577-0.75665 0.42785-0.75666 0.42784-0.08655-0.0564c-0.44368-0.28929-1.0248-0.13011-1.264 0.34623-0.06217 0.12383-0.07081 0.15857-0.07761 0.31099-0.0126 0.28245 0.06735 0.48595 0.263 0.66962 0.24013 0.22546 0.55407 0.29336 0.88128 0.19062zm3.4774-1.9826c0.27656-0.0841 0.50559-0.31809 0.58095-0.59358 0.012292-0.045 0.022045-0.14935 0.02174-0.23179-0.00203-0.39533-0.2598-0.71667-0.65698-0.8185-0.24186-0.062-0.50725-0.01-0.72764 0.14329l-0.052217 0.0362-1.0257-0.58175-1.0257-0.58175-0.0071-0.19496c-0.0061-0.17242-0.01412-0.20954-0.06735-0.321-0.08412-0.176-0.2386-0.33061-0.4171-0.41745-0.12899-0.0627-0.15699-0.0691-0.33126-0.0754-0.15817-6e-3 -0.2109-2e-5 -0.31194 0.0336-0.4054 0.13474-0.6542 0.52633-0.59075 0.92981 0.09661 0.61458 0.81418 0.94113 1.3248 0.6029l0.09661-0.064 1.032 0.58533 1.0319 0.58534 0.00203 0.16132c0.00305 0.24518 0.076294 0.41437 0.25704 0.5945 0.096307 0.096 0.30321 0.21257 0.41053 0.23128 0.12831 0.0224 0.3417 0.0114 0.45625-0.0234z" fill="#eff0f1" stroke-width=".018715"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(0 -284.3)"> + <path d="m7.6799 296.37c-1.0956-0.62413-3.3561-1.9093-5.0554-2.8741-0.498-0.28275-0.93515-0.53712-0.97146-0.56527-0.10781-0.0836-0.23751-0.26711-0.28556-0.40413l-0.0446-0.127v-5.0691l0.04257-0.10991c0.05791-0.14977 0.14214-0.27412 0.24933-0.36827 0.05516-0.0484 0.91852-0.54468 2.2359-1.2852 2.254-1.267 2.2575-1.2688 2.4862-1.2715 0.25016-3e-3 0.19984-0.0284 2.4985 1.2642 1.1801 0.66359 2.1834 1.2379 2.2295 1.2763 0.11123 0.0925 0.21208 0.23978 0.26726 0.39029l0.0449 0.12257v5.0505l-0.0449 0.12257c-0.05527 0.15085-0.1563 0.29815-0.26726 0.38983-0.04612 0.0381-0.5508 0.33407-1.1214 0.65764-0.57062 0.32356-1.0481 0.59685-1.0611 0.60731-0.018489 0.0149-0.023569 0.32146-0.023569 1.4186v1.3996l-0.042465-9.3e-4c-0.023366-4.9e-4 -0.53478-0.2814-1.1365-0.62418zm-2.559-3.6121c0.2289-0.0719 0.44031-0.27568 0.53343-0.51426 0.03007-0.0771 0.04114-0.1485 0.04277-0.27562l2e-3 -0.17157 0.74934-0.42261c0.41214-0.23243 0.74955-0.42767 0.74982-0.43386 2.844e-4 -6e-3 -0.028039-0.048-0.062884-0.093-0.069996-0.0902-0.16529-0.25867-0.19696-0.34813l-0.02042-0.0577-0.75665 0.42785-0.75666 0.42784-0.08655-0.0564c-0.44368-0.28929-1.0248-0.13011-1.264 0.34623-0.06217 0.12383-0.07081 0.15857-0.07761 0.31099-0.0126 0.28245 0.06735 0.48595 0.263 0.66962 0.24013 0.22546 0.55407 0.29336 0.88128 0.19062zm3.4774-1.9826c0.27656-0.0841 0.50559-0.31809 0.58095-0.59358 0.012292-0.045 0.022045-0.14935 0.02174-0.23179-0.00203-0.39533-0.2598-0.71667-0.65698-0.8185-0.24186-0.062-0.50725-0.01-0.72764 0.14329l-0.052217 0.0362-1.0257-0.58175-1.0257-0.58175-0.0071-0.19496c-0.0061-0.17242-0.01412-0.20954-0.06735-0.321-0.08412-0.176-0.2386-0.33061-0.4171-0.41745-0.12899-0.0627-0.15699-0.0691-0.33126-0.0754-0.15817-6e-3 -0.2109-2e-5 -0.31194 0.0336-0.4054 0.13474-0.6542 0.52633-0.59075 0.92981 0.09661 0.61458 0.81418 0.94113 1.3248 0.6029l0.09661-0.064 1.032 0.58533 1.0319 0.58534 0.00203 0.16132c0.00305 0.24518 0.076294 0.41437 0.25704 0.5945 0.096307 0.096 0.30321 0.21257 0.41053 0.23128 0.12831 0.0224 0.3417 0.0114 0.45625-0.0234z" fill="#232629" stroke-width=".018715"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/glosbe.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(0 -284.3)"> + <g transform="matrix(.13599 0 0 .13437 -17.402 257.84)" stroke="#232629" stroke-width="1.0102"> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m695.31 204.03c-21.035-21.821-27.856-39.687-25.07-65.672 2.2764-21.236 7.8317-35.343 18.712-47.518 10.959-12.263 22.952-18.884 38.841-21.441 6.347-1.0216 8.9576-0.97132 15.657 0.30139 17.292 3.2848 25.48 8.542 33.695 21.635 2.4268 3.8676 5.3216 7.5998 6.433 8.2939 1.1113 0.69404 9.9928 3.0405 19.737 5.2143 9.7438 2.1738 17.874 4.1104 18.067 4.3035s-2.9664 0.63158-7.0213 0.97434c-8.9917 0.76008-22.765 4.6483-32.66 9.2198-24.296 11.225-38.436 27.24-66.049 74.804-5.1606 8.8894-9.9234 16.747-10.584 17.462-0.95777 1.0363-2.935-0.49908-9.7591-7.578zm53.93-84.948c7.6619-7.6619 2.5452-21.368-8.598-23.031-10.024-1.4961-18.547 11.823-13.276 20.746 4.415 7.474 15.525 8.6348 21.874 2.2855z" fill="#ff6e00"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m555.26 377.49c0.29382-0.83338 3.5257-8.8356 7.1819-17.783s9.3498-23.721 12.652-32.83 6.3206-17.358 6.7066-18.33c0.55133-1.3886 1.9246-1.7715 6.4022-1.7853 13.901-0.0428 28.333-5.4423 37.888-14.175 3.0092-2.7502 5.9067-5.0004 6.4389-5.0004 0.5322 0 1.7975 1.8403 2.8118 4.0896 2.1552 4.7794 3.6325 2.8308-12.649 16.685-15.333 13.047-45.622 43.587-56.036 56.502-10.433 12.938-12.195 14.89-11.397 12.627z" fill="#ff6e00"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m688.86 312.76c-11.807-4.1528-25.978-15.816-34.805-28.646-4.6453-6.7516-10.701-20.014-13.869-30.37-2.668-8.7243-2.7816-9.9887-2.8122-31.315-0.0293-20.416 0.15679-22.824 2.2883-29.607 2.5149-8.0034 10.205-25.446 11.219-25.446 0.34365 0 2.5446 4.432 4.891 9.849 12.529 28.925 27.833 47.246 56.321 67.426 17.002 12.044 24.141 18.568 27.441 25.08 7.375 14.554 0.76067 32.945-14.967 41.616-5.0162 2.7657-6.2697 2.999-17.524 3.2623-10.229 0.23925-13.068-0.0493-18.183-1.8483z" fill="#0cf"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m583.18 286.19c-8.7118-3.1132-16.94-10.624-21.503-19.628-1.4052-2.7731-3.3294-8.9836-4.276-13.801-1.4695-7.4792-1.5495-10.047-0.54718-17.576 1.3397-10.062 4.7102-20.719 9.2248-29.166 9.4933-17.763 28.103-35.519 45.83-43.728 7.2044-3.3362 21.564-7.7076 22.44-6.8313 0.32735 0.32735-1.2676 4.3002-3.5444 8.8285-4.6161 9.181-9.2031 22.169-11.823 33.478-1.3889 5.9946-1.6708 11.222-1.4117 26.178 0.77303 44.62 0.77417 44.586-1.6208 49.061-6.115 11.427-20.965 17.402-32.769 13.184z" fill="#6c0"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m517.46 210.47c-13.32-3.743-20.716-17.39-18.08-33.357 3.4129-20.666 21.13-38.102 46.665-45.926 21.935-6.7208 47.585-4.5524 67.056 5.6689l4.0406 2.1211-4.5457 1.7742c-6.5257 2.547-20.525 9.8926-25.895 13.587-10.987 7.5592-21.426 18.539-32.881 34.583-8.7048 12.192-13.026 17.112-17.406 19.819-4.2457 2.624-12.945 3.4176-18.954 1.7292z" fill="#fc0"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m618.88 119.28c-18.625-9.2704-28.21-10.912-58.37-9.995-20.376 0.61944-23.788 0.50051-27.26-0.95041-8.2354-3.441-12.908-10.971-12.916-20.814-0.0156-20.521 26.82-33.593 52.355-25.504 24.003 7.6043 45.37 28.482 52.668 51.462 1.3577 4.2755 2.3363 8.2657 2.1746 8.8672-0.16813 0.6253-3.8728-0.68778-8.6519-3.0666z" fill="#c09"/> + <path transform="matrix(.26458 0 0 .26458 0 191.17)" d="m646.56 118.89c-0.30018-0.83338-1.2809-4.4699-2.1794-8.0812-2.1021-8.4489-9.5471-24.225-14.516-30.761-2.1326-2.8048-8.5373-10.1-14.233-16.211-15.152-16.258-16.807-21.6-10.015-32.311 6.0999-9.6186 19.627-12.288 30.974-6.1121 8.4861 4.6187 17.088 14.201 20.91 23.293 4.7437 11.285 6.1856 32.184 3.1297 45.36-2.6376 11.373-12.589 28.931-14.069 24.823z" fill="#069"/> + </g> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev1.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> +<style type="text/css"> + .st0{fill:#4285F4;} + .st1{fill:#34A853;} + .st2{fill:#FBBC04;} + .st3{fill:#EA4335;} +</style> + +<g transform="matrix(.089963 0 0 .088184 .0044982 .0016273)"> + <path class="st0" d="m533.5 278.4c0-18.5-1.5-37.1-4.7-55.3h-256.7v104.8h147c-6.1 33.8-25.7 63.7-54.4 82.7v68h87.7c51.5-47.4 81.1-117.4 81.1-200.2z" fill="#4285f4"/> + <path class="st1" d="m272.1 544.3c73.4 0 135.3-24.1 180.4-65.7l-87.7-68c-24.4 16.6-55.9 26-92.6 26-71 0-131.2-47.9-152.8-112.3h-90.5v70.1c46.2 91.9 140.3 149.9 243.2 149.9z" fill="#34a853"/> + <path class="st2" d="m119.3 324.3c-11.4-33.8-11.4-70.4 0-104.2v-70.1h-90.4c-38.6 76.9-38.6 167.5 0 244.4z" fill="#fbbc04"/> + <path class="st3" d="m272.1 107.7c38.8-0.6 76.3 14 104.4 40.8l77.7-77.7c-49.2-46.2-114.5-71.6-182.1-70.8-102.9 0-197 58-243.2 150l90.4 70.1c21.5-64.5 81.8-112.4 152.8-112.4z" fill="#ea4335"/> +</g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev2.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" enable-background="new 0 0 998.1 998.3" version="1.1" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + +<g transform="matrix(.048091 0 0 .048082 0 1e-5)"> + <path d="m931.7 998.3c36.5 0 66.4-29.4 66.4-65.4v-667.1c0-36-29.9-65.4-66.4-65.4h-648.1l260.1 797.9z" fill="#dbdbdb"/> + + + <path d="m931.7 230.4c9.7 0 18.9 3.8 25.8 10.6 6.8 6.7 10.6 15.5 10.6 24.8v667.1c0 9.3-3.7 18.1-10.6 24.8-6.9 6.8-16.1 10.6-25.8 10.6h-366.2l-240.6-737.9h606.8m0-30h-648.1l260.1 797.9h388c36.5 0 66.4-29.4 66.4-65.4v-667.1c0-36-29.9-65.4-66.4-65.4z" fill="#dcdcdc"/> + + + + <polygon points="482.3 809.8 543.7 998.3 714.4 809.8" fill="#4352b8"/> + + <path d="m936.1 476.1v-39.1h-188.5v-63.2h-61.2v63.2h-120.3v39.1h239.4c-12.8 45.1-41.1 87.7-68.7 120.8-48.9-57.9-49.1-76.7-49.1-76.7h-50.8s2.1 28.2 70.7 108.6c-22.3 22.8-39.2 36.3-39.2 36.3l15.6 48.8s23.6-20.3 53.1-51.6c29.6 32.1 67.8 70.7 117.2 116.7l32.1-32.1c-52.9-48-91.7-86.1-120.2-116.7 38.2-45.2 77-102.1 85.2-154.2h84.6v0.1z" fill="#607988"/> + <path d="m66.4 0c-36.5 0-66.4 29.9-66.4 66.5v677c0 36.5 29.9 66.4 66.4 66.4h648.1l-260.1-809.9z" fill="#4285f4"/> + <linearGradient id="SVGID_1_" x1="534.3" x2="998.1" y1="433.2" y2="433.2" gradientUnits="userSpaceOnUse"> + <stop stop-color="#fff" stop-opacity=".2" offset="0"/> + <stop stop-color="#fff" stop-opacity=".02" offset="1"/> + </linearGradient> + <path d="m534.3 200.4h397.4c36.5 0 66.4 29.4 66.4 65.4v400.2z" enable-background="new " fill="url(#SVGID_1_)"/> + <path d="m371.4 430.6c-2.5 30.3-28.4 75.2-91.1 75.2-54.3 0-98.3-44.9-98.3-100.2s44-100.2 98.3-100.2c30.9 0 51.5 13.4 63.3 24.3l41.2-39.6c-27.1-25-62.4-40.6-104.5-40.6-86.1 0-156 69.9-156 156s69.9 156 156 156c90.2 0 149.8-63.3 149.8-152.6 0-12.8-1.6-22.2-3.7-31.8h-146v53.4z" fill="#eee"/> +</g> +<radialGradient id="SVGID_2_" cx="65.208" cy="19.365" r="1398.3" gradientTransform="matrix(.048091 0 0 .048082 0 1.0959e-5)" gradientUnits="userSpaceOnUse"> + <stop stop-color="#fff" stop-opacity=".1" offset="0"/> + <stop stop-color="#fff" stop-opacity="0" offset="1"/> +</radialGradient> +<path d="m44.807 9.6356h-19.857l-3.0971-9.6356h-18.659c-1.7553 0-3.1933 1.4376-3.1933 3.1974v32.551c0 1.755 1.4379 3.1926 3.1933 3.1926h20.001l2.9528 9.0586h18.659c1.7553 0 3.1933-1.4136 3.1933-3.1445v-32.075c0-1.7309-1.4379-3.1445-3.1933-3.1445z" fill="url(#SVGID_2_)" stroke-width=".048087"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 14.746 14.747" xmlns="http://www.w3.org/2000/svg"> + <g transform="matrix(.019202 0 0 .019037 -.0024016 13.862)" fill="#eff0f1"> + <path d="m305.67-467.18c1.437 0.05 2.874 0.1 4.388 0.01 3.202 0.096 6.279 0.124 9.403 0.362 14.293 0.645 28.547 2.554 42.618 5.097 17.167 3.132 34.14 7.81 50.574 13.477 21.535 7.351 42.317 16.677 62.174 27.7 21.486 11.912 41.97 25.662 60.793 41.259 8.95 7.454 17.542 15.263 25.825 23.639 7.01 7.13 13.742 14.474 20.116 22.174 10.906 13.11 20.694 27.077 29.16 41.974 6.634 11.695 12.429 24.033 17.085 36.668 3.722 10.472 6.836 21.163 8.812 32.15 1.33 7.7 2.332 15.403 2.601 23.257 0.366 8.274 0.075 16.556-0.996 24.78-0.666 5.691-1.786 11.319-3.156 16.81-1.524 5.774-3.3 11.41-5.528 16.984-3.55 8.888-8.103 17.23-13.408 25.16-4.254 6.302-9.058 12.121-14.363 17.666-4.08 4.196-8.536 8.186-13.166 11.897-3.23 2.64-6.51 5.07-9.963 7.223a140.33 140.33 0 0 1-7.87 4.879c-1.93 1.149-3.984 2.23-6.038 3.31-14.863 7.851-30.912 13.404-47.27 17.136a119.07 119.07 0 0 1-8.593 1.732c-3.587 0.61-7.175 1.221-10.686 1.69a165.05 165.05 0 0 1-14.466 1.462c-5.932 0.432-11.786 0.723-17.688 0.804a301.42 301.42 0 0 1-45.666-3.091c-18.584-2.621-37.024-6.998-54.971-12.575-24.458-7.662-48.182-17.86-70.623-30.109-22.691-12.387-44.351-26.962-64.197-43.668-16.298-13.667-31.495-28.752-45.063-45.334-10.357-12.626-19.672-25.968-27.868-40.167-6.76-11.764-12.631-23.96-17.211-36.737-3.924-10.4-6.835-21.163-8.811-32.15-1.33-7.7-2.332-15.403-2.679-23.116-0.365-8.273-0.075-16.556 0.794-24.706 0.666-5.692 1.66-11.388 3.03-16.88a129.05 129.05 0 0 1 5.634-17.476c3.55-8.888 8.103-17.23 13.409-25.16 4.254-6.302 9.057-12.12 14.362-17.666 4.235-4.478 8.893-8.541 13.726-12.326 3.23-2.64 6.635-5.002 9.963-7.222a140.33 140.33 0 0 1 7.87-4.88c1.93-1.148 3.984-2.229 6.038-3.31 14.863-7.85 31.037-13.335 47.394-17.067a119.07 119.07 0 0 1 8.594-1.732 211.84 211.84 0 0 1 11.544-1.772c4.9-0.629 9.722-1.116 14.467-1.462l12.036-0.586c1.968-0.027 3.81-0.122 5.7-8e-3 0.733-0.15 1.514-0.091 2.17-0.1zm-1.382 27.871c-2.093-0.041-4.263 0.059-6.433 0.159l-12.036 0.586c-5.073 0.35-10.175 1.052-15.277 1.753-3.916 0.615-7.832 1.23-11.7 2.055-2.806 0.67-5.738 1.272-8.419 2.01-2.401 0.524-4.755 1.258-7.108 1.992-14.043 4.262-27.651 10.412-39.872 18.789-1.6 1.144-3.202 2.289-4.88 3.575-2.315 1.855-4.63 3.711-6.82 5.636-2.903 2.635-5.68 5.34-8.285 8.322-4.109 4.546-7.716 9.367-11.025 14.533-4.003 6.44-7.254 13.29-9.801 20.34a127.47 127.47 0 0 0-4.014 14.508 115.81 115.81 0 0 0-1.892 14.197c-1.004 13.765 0.412 27.566 3.622 41.063 2.169 9.441 5.196 18.8 8.908 27.8 4.57 11.302 10.23 22.099 16.652 32.394 7.86 12.73 16.885 24.814 26.702 36.045a337.6 337.6 0 0 0 39.566 38.113c17.927 14.556 37.311 27.34 57.698 38.284 20.889 11.22 42.983 20.527 65.656 27.582 16.289 5.038 32.944 8.808 49.792 11.032a254.67 254.67 0 0 0 40.072 2.607c6.105-0.154 12.21-0.308 18.344-0.813a209.38 209.38 0 0 0 14.621-1.745c3.713-0.542 7.378-1.294 11.043-2.046l8.42-2.01c2.276-0.592 4.427-1.253 6.578-1.914 13.917-4.33 27.371-10.198 39.39-18.501 1.803-1.218 3.607-2.435 5.362-3.862 2.315-1.856 4.63-3.712 6.82-5.636a84.345 84.345 0 0 0 8.641-8.678 116.31 116.31 0 0 0 10.514-13.895c3.926-6.298 7.303-13.08 9.85-20.13 1.688-4.584 2.923-9.231 3.907-14.015a123.1 123.1 0 0 0 2.123-14.622c1.005-13.765-0.334-27.708-3.293-41.067-2.17-9.441-5.196-18.8-8.909-27.8-4.57-11.303-10.23-22.1-16.652-32.394-7.907-12.94-17.058-25.093-27.048-36.601-12.68-14.63-26.914-27.904-41.968-39.975-16.905-13.448-34.987-25.337-53.917-35.67a360.51 360.51 0 0 0-59.32-25.775 361.74 361.74 0 0 0-41.093-10.871c-12.837-2.42-25.856-4.205-38.963-4.937-3.327-0.165-6.655-0.33-9.857-0.426-1.437-0.05-3.076-0.028-4.513-0.078-0.328 4e-3 -0.733 0.15-1.186 0.086z"/> + <path d="m384.83-529.93c2.458-0.032 5.042 5e-3 7.385 0.185 5.292 0.142 10.47 0.495 15.646 0.849 14.799 1.21 29.28 3.895 43.665 7.352a288.92 288.92 0 0 1 33.96 11.12c9.73 3.937 19.229 8.298 28.38 13.294 8.902 4.859 17.572 10.14 25.896 16.058a322.45 322.45 0 0 1 24.152 18.953c9.26 8.077 17.932 16.932 25.882 26.216 7.95 9.285 15.293 18.787 21.922 29 7.412 11.463 14.1 23.356 19.826 35.822 5.455 11.768 10.071 24.178 13.705 36.601 4.183 14.097 7.153 28.63 9.014 43.107a265.73 265.73 0 0 1 1.92 44.18 282.21 282.21 0 0 1-6.07 47.785c-3.402 15.176-8.038 30.228-13.928 44.595a262.32 262.32 0 0 1-12.822 27.066 275.5 275.5 0 0 1-18.286 29.029c-7.272 10.042-15.17 19.741-23.83 28.75-11.743 12.271-24.509 23.435-38.307 33.21-14.992 10.772-30.902 19.945-47.613 27.306-17.193 7.648-35.061 13.553-53.49 17.504-19.037 4.17-38.393 6.24-57.702 6.14-10.7-0.072-21.421-0.704-32.161-1.896-10.865-1.261-21.51-3.225-32.048-5.681a247.32 247.32 0 0 1-36.438-11.649c-9.98-4.074-19.98-8.708-29.508-13.91a277.66 277.66 0 0 1-24.13-14.82c-7.687-5.294-15.268-11.081-22.368-17.154-8.613-7.174-16.64-15.127-24.184-23.366-8.306-8.93-15.774-18.5-22.77-28.638-7.643-11.04-14.447-22.721-20.403-34.764-6.478-12.876-11.75-26.469-16.04-40.074-4.435-14.234-7.78-28.972-9.776-43.798-2.122-14.894-2.778-30.087-2.441-45.013a259.3 259.3 0 0 1 5.914-48.694 276.54 276.54 0 0 1 13.562-44.52c4.07-10.14 8.884-20.15 14.199-29.887 5.545-10.16 11.843-19.908 18.643-29.383a256.58 256.58 0 0 1 21.585-26.13c11.974-12.694 25.212-24.424 39.491-34.486 14.396-10.274 29.939-19.371 46.158-26.726 11.623-5.194 23.757-9.835 35.93-13.355a271.31 271.31 0 0 1 35.875-7.889 216.89 216.89 0 0 1 26.836-2.658c3.066-0.25 6.015-0.288 8.965-0.326 1.35-0.088 2.825-0.107 4.059 0.017 0.636 0.623 1.128 0.616 1.745 0.678zm-1.485 27.761-4.424 0.057c-2.7 0.175-5.409 0.07-8.108 0.245-7.856 0.382-15.693 1.324-23.404 2.334-11.866 1.765-23.577 4.438-35.008 8.088-9.975 3.071-19.931 6.703-29.491 11.1-14.523 6.632-28.505 14.659-41.455 24.073a245.25 245.25 0 0 0-35.435 30.932c-6.994 7.446-13.486 15.166-19.467 23.44-6.096 8.485-11.691 17.244-16.66 26.345a258.13 258.13 0 0 0-12.706 26.855c-5.206 12.817-9.285 26.25-12.244 40.019-3.066 14.26-4.762 28.994-5.234 43.571a247.7 247.7 0 0 0 2.159 40.464 242.53 242.53 0 0 0 8.76 39.398c3.875 12.28 8.607 24.477 14.428 36.171 5.425 10.929 11.824 21.565 18.82 31.702a220.06 220.06 0 0 0 20.06 24.96c6.897 7.337 14.036 14.53 21.762 20.946a252.24 252.24 0 0 0 41.829 28.602c9.026 4.927 18.4 9.22 27.878 13.02 9.97 3.794 20.172 7.165 30.47 9.764 9.179 2.264 18.589 4.104 27.97 5.103 10.007 1.342 20.11 1.912 30.435 1.779 17.458-0.086 34.857-1.852 51.821-5.503 16.473-3.646 32.645-8.829 48.017-15.823 15.014-6.639 29.479-14.952 42.795-24.441a252.17 252.17 0 0 0 34.366-29.867c7.35-7.8 14.198-15.876 20.41-24.573 6.337-8.628 12.163-17.81 17.237-27.403 4.275-7.832 8.164-16.148 11.561-24.459 5.322-13.028 9.526-26.393 12.495-39.882 3.075-13.98 4.907-28.365 5.504-42.874 0.521-13.177-0.076-26.69-1.763-39.698-1.686-13.009-4.356-26.004-8.124-38.776a243.84 243.84 0 0 0-13.009-34.298c-5.184-11.072-11.217-21.782-17.972-32.063-5.713-8.613-12.033-17.008-18.825-24.836-7.429-8.451-15.34-16.615-23.837-24.001a258.41 258.41 0 0 0-21.74-16.813 245.17 245.17 0 0 0-22.626-13.999 223.73 223.73 0 0 0-28.37-13.013c-8.978-3.527-18.302-6.42-27.606-8.75-12.535-3.272-25.396-5.347-38.353-6.65-4.936-0.498-9.863-0.714-14.789-0.93-2.217-0.112-4.434-0.224-6.642-0.055-0.501-0.274-0.993-0.267-1.485-0.261z"/> + <path d="m479.4-504.04c0.925 0.04 2.022 0.013 2.947 0.052 2.124 0.072 4.35 0.203 6.504 0.457a78.452 78.452 0 0 1 16.376 3.517 81.74 81.74 0 0 1 16.997 7.834c3.786 2.35 7.357 5.072 10.685 7.983 2.383 2.2 4.695 4.525 6.936 6.974 1.602 1.914 3.204 3.828 4.632 5.807 1.064 1.44 2.057 3.002 3.05 4.565 5.794 8.952 9.919 18.92 12.874 29.038 0.444 1.576 0.888 3.152 1.23 4.669 0.474 1.758 0.846 3.457 1.249 5.339 0.492 2.428 0.955 4.674 1.346 7.044 0.512 3.1 0.952 6.322 1.392 9.545 0.52 4.258 0.764 8.523 0.938 12.91 0.21 5.73 0.32 11.401 0.155 17.078-0.27 7.266-0.814 14.538-1.562 21.694-1.149 9.726-2.603 19.277-4.504 28.9a426.41 426.41 0 0 1-7.978 32.338c-3.39 11.732-7.359 23.294-11.703 34.805-5.07 13.235-10.72 26.302-16.846 39.257-6.228 12.898-12.862 25.56-20.105 37.871-7.285 12.617-15.178 24.882-23.406 36.79-7.942 11.412-16.29 22.59-25.177 33.293-7.582 9.147-15.468 18.118-23.79 26.672-7.691 7.93-15.615 15.559-23.975 22.772-5.774 5.078-11.853 9.98-18.063 14.64-6.21 4.662-12.551 9.082-19.126 13.203-5.74 3.613-11.51 7.043-17.544 9.992-5.169 2.623-10.439 5.188-15.871 7.33-8.616 3.436-17.495 6.391-26.585 8.07-7.647 1.523-15.586 2.382-23.432 2.14-4.32-0.02-8.628-0.528-12.865-1.16-4.165-0.756-8.36-1.694-12.443-3.061-5.922-1.934-11.516-4.67-16.651-7.964-3.888-2.41-7.388-5.255-10.817-8.224-2.383-2.201-4.696-4.526-6.865-7.098a52.06 52.06 0 0 1-4.297-5.45c-0.963-1.38-1.926-2.76-2.787-4.082-5.59-8.835-9.757-18.498-12.713-28.615-0.443-1.576-0.887-3.152-1.23-4.669-0.503-1.94-1.007-3.88-1.338-5.885-0.625-2.67-1.076-5.404-1.527-8.139-0.44-3.223-0.88-6.446-1.22-9.61-0.519-4.258-0.692-8.646-0.937-12.91-0.21-5.73-0.147-11.466 0.018-17.143 0.27-7.266 0.814-14.538 1.633-21.817 1.15-9.727 2.675-19.402 4.677-28.966 2.199-10.605 4.773-21.159 7.824-31.602 3.42-11.55 7.246-22.864 11.448-34.128 4.814-12.558 10.035-24.882 15.763-36.914a544.79 544.79 0 0 1 20.33-38.73 559.99 559.99 0 0 1 23.734-37.59c7.555-10.976 15.689-21.783 24.086-32.108a477.59 477.59 0 0 1 23.2-26.353c7.834-8.177 15.901-16.054 24.475-23.638 5.703-4.954 11.435-9.726 17.472-14.322 5.865-4.531 11.86-8.821 18.09-12.811 5.394-3.483 10.818-6.784 16.475-9.784 5.312-2.871 10.827-5.625 16.402-8.014a175.51 175.51 0 0 1 22.57-7.914c6.692-1.745 13.646-3.007 20.62-3.599 1.82-0.104 3.71-0.332 5.631-0.377l2.47-0.058c0.58 0.169 0.853 0.162 1.128 0.156zm-0.813 27.898c-1.748-0.02-3.466 0.143-5.113 0.182-5.357 0.37-10.624 1.288-15.729 2.629-7.139 1.816-13.984 4.296-20.74 7.322-4.71 2.064-9.288 4.368-13.664 6.79a188.02 188.02 0 0 0-15.021 9.14c-5.466 3.606-10.729 7.33-15.931 11.418-5.447 4.277-10.864 8.736-16.078 13.312-7.21 6.393-14.186 13.085-20.757 20.012-7.447 7.74-14.558 15.84-21.467 24.055a450.23 450.23 0 0 0-21.527 28.144 554.5 554.5 0 0 0-21.61 33.209c-6.63 11.015-12.753 22.323-18.47 33.866s-11.058 23.138-15.891 35.026c-4.108 10.163-7.911 20.502-11.238 30.95-3.1 9.59-5.795 19.415-8.215 29.233-2.205 9.447-4.065 18.763-5.418 28.373-1.063 7.468-1.852 14.929-2.265 22.442a188.02 188.02 0 0 0-0.404 17.579c0.102 4.512 0.275 8.9 0.723 13.282 0.297 3.47 0.798 7.057 1.37 10.521 0.45 2.735 0.974 5.345 1.598 8.015 0.534 2.122 1.068 4.245 1.674 6.244 0.443 1.575 0.989 3.21 1.504 4.661 0.455 1.088 0.838 2.299 1.293 3.386 0.354 1.029 0.779 1.934 1.204 2.839 2.8 6.4 6.568 12.534 11.283 17.73 0.8 0.957 1.572 1.731 2.444 2.565 1.207 1.191 2.485 2.26 3.763 3.327 1.99 1.478 3.978 2.956 6.181 4.063 2.944 1.7 6.102 3.028 9.301 4.05 5.038 1.59 10.402 2.378 15.748 2.496 6.098 0.222 12.218-0.533 18.176-1.71 3.55-0.756 6.895-1.628 10.312-2.624 4.109-1.256 8.188-2.694 12.135-4.374a147.56 147.56 0 0 0 14.04-6.737c5.312-2.87 10.42-5.858 15.398-9.087a310.02 310.02 0 0 0 15.4-10.735 280.97 280.97 0 0 0 17.401-14.198c7.383-6.458 14.431-13.274 21.348-20.33 7.304-7.494 14.273-15.345 20.937-23.372 7.51-9.023 14.686-18.404 21.629-28.085 7.9-11.107 15.467-22.571 22.425-34.387 6.63-11.016 12.753-22.324 18.571-33.809 5.819-11.484 11.058-23.137 15.892-35.026 4.25-10.41 8.024-20.93 11.493-31.627 3.213-10.02 6.122-20.215 8.38-30.456 2.134-9.323 3.964-18.822 5.347-28.25 1.022-7.161 1.739-14.499 2.182-21.83 0.41-5.866 0.442-11.784 0.303-17.637a304.78 304.78 0 0 0-0.825-13.34c-0.297-3.47-0.869-6.934-1.44-10.398a122.15 122.15 0 0 0-1.6-8.015c-0.533-2.122-1.067-4.245-1.673-6.244a75.495 75.495 0 0 0-1.504-4.662c-0.455-1.087-0.838-2.298-1.293-3.385-2.952-7.312-6.972-14.416-12.254-20.27-0.8-0.956-1.775-1.848-2.748-2.74-1.207-1.192-2.486-2.26-3.764-3.328a66.038 66.038 0 0 0-6.282-4.121c-3.045-1.759-6.275-2.963-9.576-4.044-3.372-0.958-6.785-1.61-10.342-2.013-1.3-0.092-2.601-0.183-3.8-0.215-0.65-0.046-1.474-0.027-2.124-0.072 0.03 0.182-0.245 0.189-0.692 0.26z"/> + <path d="m499.42-448.8c3.135 2e-3 6.46 0.047 9.66 0.162 8.597 0.323 17.209 1.241 25.77 2.643 7.869 1.347 15.687 3.176 23.207 5.631 10.487 3.31 20.69 7.841 29.924 13.837a1.5749e16 1.5749e16 0 0 1 14.753 11.269c3.271 3.095 6.55 6.489 9.268 10.055 4.332 5.503 8.111 11.478 11.083 17.767a94.313 94.313 0 0 1 5.49 14.652c0.959 3.374 1.794 6.82 2.315 10.294 0.5 2.58 0.754 5.304 1.065 7.843 0.174 2.014 0.282 3.916 0.39 5.817 0.501 13.152-1.317 26.285-4.838 39.041-0.582 1.847-0.976 3.736-1.56 5.583-0.757 2.401-1.515 4.802-2.396 7.275-1.115 3.21-2.419 6.38-3.723 9.55a163.67 163.67 0 0 1-5.724 12.367c-2.454 4.89-5.032 9.852-7.864 14.66-3.735 6.385-7.666 12.43-11.91 18.506-4.732 6.659-9.595 13.09-14.712 19.368a375.8 375.8 0 0 1-16.362 18.509c-6.237 6.622-12.671 12.904-19.294 19.144a421.01 421.01 0 0 1-24.517 20.952c-9.17 7.257-18.658 14.246-28.41 20.782-10.798 7.292-21.858 14.13-33.114 20.629a541.06 541.06 0 0 1-36.606 18.869c-11.226 5.122-22.772 9.976-34.333 14.234-11.19 4.043-22.451 7.676-33.851 10.783a397.56 397.56 0 0 1-32.992 7.418c-9.617 1.625-19.364 3.024-29.003 3.756-8.51 0.684-17.217 1.03-25.75 0.82-10.161-0.175-20.337-0.946-30.345-2.568-8.873-1.372-17.637-3.41-26.168-6.189-10.428-3.494-20.507-8.096-29.742-14.093l-4.014-2.667c-3.7-2.696-7.22-5.649-10.68-8.786-3.206-2.982-6.106-6.292-8.949-9.786-4.266-5.39-7.98-11.252-10.951-17.541a91.238 91.238 0 0 1-5.36-14.426c-0.959-3.374-1.793-6.819-2.315-10.293-0.377-2.653-0.754-5.305-1.065-7.844-0.173-2.014-0.281-3.915-0.39-5.816-0.501-13.153 1.317-26.286 4.838-39.042 0.583-1.847 0.977-3.736 1.56-5.583 0.757-2.4 1.515-4.802 2.397-7.274 1.114-3.211 2.418-6.38 3.722-9.55 1.66-3.98 3.51-7.917 5.36-11.855 2.389-5.004 5.032-9.853 7.864-14.66 3.612-6.314 7.667-12.43 11.787-18.435 4.244-6.075 8.743-11.995 13.307-17.802 5.48-6.79 11.158-13.239 17.148-19.718 6.296-6.806 12.911-13.344 19.782-19.728 7.546-6.924 15.224-13.623 23.222-20.052a476.37 476.37 0 0 1 26.735-19.967 500.91 500.91 0 0 1 33.603-21.213c10.761-6.213 21.785-11.973 32.88-17.322 11.78-5.593 23.756-10.846 35.935-15.46 10.687-4.056 21.571-7.773 32.469-10.893 10.272-3.06 20.683-5.597 31.042-7.651 8.111-1.663 16.419-2.985 24.544-4.051 7.377-0.936 14.884-1.645 22.463-1.944 3.695-0.17 7.456-0.226 11.217-0.283 0.821 0.28 1.512 0.335 2.138 0.276zm-1.092 27.817c-2.946 0.04-5.892 0.08-8.773 0.232-7.077 0.31-14.337 0.877-21.4 1.783-7.69 0.965-15.495 2.3-23.235 3.748-9.734 1.995-19.271 4.33-28.86 7.147-10.709 3.162-21.345 6.735-31.72 10.761-9.443 3.64-18.814 7.691-28.055 11.969-10.23 4.849-20.452 9.996-30.29 15.524a459.61 459.61 0 0 0-50.382 32.713c-14.474 10.924-28.301 22.683-41.292 35.319a336.6 336.6 0 0 0-16.085 16.99c-4.884 5.538-9.637 11.303-14.2 17.11a233.2 233.2 0 0 0-13.825 19.762c-3.262 5.206-6.458 10.525-9.276 15.928-2.22 4.152-4.187 8.459-6.153 12.766-1.428 3.24-2.725 6.708-3.898 10.104a137.17 137.17 0 0 0-2.681 8.496l-1.728 6.434c-0.459 1.776-0.73 3.593-1.188 5.369l-0.657 4.004c-1.286 9.2-1.502 18.538 0.035 27.77 0.225 1.532 0.573 2.993 0.921 4.453 0.552 2.098 1.169 4.31 1.91 6.45 1.075 3.004 2.208 5.823 3.777 8.542a67.136 67.136 0 0 0 7.283 10.9c2.13 2.546 4.507 4.949 7.008 7.281 2.37 2.106 4.987 4.068 7.54 5.918 3.758 2.511 7.7 4.767 11.757 6.653 4.822 2.352 9.818 4.15 14.872 5.763 6.378 1.906 12.997 3.37 19.543 4.425 8.182 1.317 16.474 1.967 24.817 2.135 8.03 0.197 16.112-0.09 24.186-0.673 8.634-0.756 17.262-1.81 25.817-3.275 10.49-1.828 20.842-4.18 31.121-6.943a348.82 348.82 0 0 0 31.61-10.094c10.194-3.77 20.256-7.767 30.18-12.288 10.731-4.837 21.325-10.198 31.723-15.899 17.142-9.444 33.696-19.908 49.596-31.504a380.56 380.56 0 0 0 23.694-18.664 416.52 416.52 0 0 0 19.272-17.47 360.62 360.62 0 0 0 16.826-17.418 328.7 328.7 0 0 0 14.878-17.652 273.53 273.53 0 0 0 14.014-19.72 205.89 205.89 0 0 0 9.763-16.512c2.28-4.336 4.493-8.786 6.394-13.207 1.486-3.425 2.906-6.964 4.137-10.544a137.17 137.17 0 0 0 2.682-8.496l1.728-6.435c0.459-1.776 0.729-3.593 1.188-5.368l0.657-4.005c1.41-9.271 1.495-18.836-0.108-28.181-0.224-1.532-0.573-2.992-0.921-4.453-0.552-2.098-1.169-4.31-1.91-6.45-1.14-3.117-2.462-5.978-3.973-8.882-2.1-3.922-4.76-7.673-7.726-11.096-2.32-2.588-4.762-5.105-7.386-7.365-2.494-2.034-5.112-3.997-7.787-5.775-3.949-2.554-8.079-4.851-12.326-6.78-4.945-2.28-10.065-4.006-15.243-5.548-5.869-1.595-11.796-3.006-17.775-3.935a194.57 194.57 0 0 0-20.926-1.965c-2.51-0.061-4.895-0.194-7.339-0.142a5.01 5.01 0 0 1-1.811 0.29zm-116.06-274.89c0.604 0 0.755 0 1.359 0.157 1.057 0.157 2.265 0.472 3.322 0.944 1.962 0.787 3.623 2.046 4.982 3.462 1.36 1.573 2.416 3.304 3.02 5.35 0.302 0.944 0.453 1.73 0.604 2.674v88.115c0 0.472 0 0.944-0.151 1.416-0.302 1.573-0.755 3.147-1.51 4.563-0.604 1.259-1.51 2.36-2.416 3.304-1.51 1.416-3.17 2.518-5.133 3.305-1.963 0.629-4.077 0.944-6.04 0.786-1.359-0.157-2.718-0.472-3.926-0.944-1.51-0.63-2.869-1.416-4.076-2.517-1.36-1.26-2.416-2.675-3.171-4.406-0.604-1.259-1.057-2.518-1.208-3.934 0-0.472-0.151-0.944-0.151-1.416v-88.114c0.15-1.102 0.302-2.203 0.755-3.304 0.755-1.889 1.812-3.777 3.322-5.193s3.17-2.517 5.133-3.304c1.057-0.315 2.265-0.63 3.322-0.787h1.359c0.15-0.157 0.302-0.157 0.604-0.157zm214.45 57.634c0.21-0.061 0.47 0.09 0.68 0.029 0.471 0.09 0.811 0.105 1.282 0.195 1.282 0.195 2.538 0.739 3.584 1.342 1.91 0.921 3.504 2.387 4.81 4.05 1.228 1.799 2.168 3.795 2.558 5.837 0.182 1.195 0.285 2.526 0.048 3.843-0.159 1.18-0.396 2.497-0.973 3.799-0.236 0.409-0.263 0.757-0.499 1.165l-0.314 0.545-43.035 74.538-0.314 0.545c-0.236 0.409-0.394 0.681-0.76 1.015-0.84 1.15-2.018 2.287-3.302 3a13.484 13.484 0 0 1-4.66 2.032c-1.597 0.35-3.377 0.413-5.13 0.128-1.884-0.361-3.74-1.07-5.44-2.052-1.622-1.117-2.955-2.432-4.13-4.02-0.732-1.148-1.333-2.222-1.645-3.492-0.444-1.347-0.73-2.965-0.623-4.357 2e-3 -1.816 0.396-3.405 1-5.055 0.236-0.409 0.263-0.757 0.499-1.166l0.315-0.545 43.034-74.537 0.63-1.09c0.523-0.606 1.126-1.348 1.65-1.954 0.891-0.94 1.965-1.591 3.039-2.243s2.33-1.016 3.587-1.381c0.628-0.182 1.178-0.228 1.937-0.335 0.55-0.046 0.68 0.03 1.23-0.017 0.602 0.166 0.811 0.105 0.942 0.18zm-429.08-0.065c0.55 0.046 0.68-0.029 1.309 0.153 0.55 0.046 1.308 0.153 1.937 0.335 1.256 0.365 2.382 0.805 3.535 1.593 1.073 0.652 2.095 1.516 2.986 2.455 0.445 0.47 0.89 0.94 1.206 1.484l0.629 1.09 43.034 74.538c0.08 0.136 0.236 0.409 0.315 0.545 0.236 0.409 0.393 0.681 0.499 1.166 0.604 1.65 0.998 3.239 1 5.054-0.024 1.468-0.18 3.01-0.623 4.357a14.709 14.709 0 0 1-2.82 5.08c-1.254 1.451-2.876 2.57-4.654 3.414-1.125 0.468-2.46 0.875-3.741 1.07-1.753 0.285-3.402 0.147-5.13-0.127a13.484 13.484 0 0 1-4.66-2.033 23.105 23.105 0 0 1-3.302-3c-0.236-0.409-0.524-0.606-0.76-1.015l-0.314-0.545-43.035-74.537-0.314-0.545c-0.236-0.409-0.394-0.682-0.5-1.166-0.576-1.302-0.97-2.89-0.946-4.358a22.52 22.52 0 0 1 0.257-3.783c0.52-2.117 1.46-4.113 2.767-5.776s3.11-3.068 5.02-3.989c1.125-0.467 2.459-0.874 3.74-1.07 0.472-0.09 0.812-0.104 1.283-0.194 0.21 0.06 0.47-0.09 0.68-0.03 0.052-0.212 0.262-0.15 0.602-0.166zm-152.84 155.82c0.56-0.025 0.696 0.054 1.18 0.159 0.696 0.053 1.317 0.237 1.937 0.42 0.62 0.185 1.241 0.369 1.787 0.683l1.09 0.63 74.537 43.034 0.545 0.315c0.409 0.236 0.682 0.393 1.015 0.76 1.348 1.127 2.484 2.306 3.394 3.877 1.046 1.65 1.593 3.535 1.928 5.472 0.199 1.859 0.11 3.9-0.387 5.705-0.331 1.203-0.874 2.459-1.615 3.426a10.457 10.457 0 0 1-3.007 3.32c-1.375 1.124-2.872 1.829-4.505 2.455a13.484 13.484 0 0 1-5.053 0.57 23.105 23.105 0 0 1-4.359-0.948c-0.409-0.236-0.757-0.262-1.166-0.498l-0.545-0.315-74.537-43.034c-0.136-0.08-0.409-0.236-0.545-0.315-0.409-0.236-0.682-0.393-1.015-0.76-1.15-0.84-2.287-2.018-3-3.301-0.924-1.231-1.425-2.567-1.85-4.033-0.365-1.256-0.518-2.565-0.534-3.795 0.073-1.701 0.359-3.454 1.053-4.971 0.558-1.596 1.6-3.086 2.703-4.367a17.261 17.261 0 0 1 3.038-2.43c1.648-0.967 3.493-1.645 5.46-1.904 0.423-0.105 0.771-0.078 1.331-0.104 0.212-0.052 0.348 0.027 0.696 0.054-0.06-0.21 0.151-0.262 0.424-0.105zm739.74-0.085c0.212 0.052 0.424 0.104 0.56 0.025 0.424 0.105 0.772 0.078 1.331 0.103 1.407 0.234 2.965 0.73 4.25 1.382 1.573 0.836 2.873 1.829 4.051 3.24 1.028 1.15 1.783 2.459 2.401 3.845 0.468 1.125 0.875 2.459 0.858 3.689 0.196 1.282 0.043 2.59-0.11 3.9-0.214 1.517-0.715 2.853-1.427 4.136-0.834 1.702-2.168 3.17-3.652 4.375-0.409 0.236-0.606 0.524-1.015 0.76l-0.545 0.315-74.537 43.034-0.545 0.315c-0.409 0.236-0.681 0.393-1.166 0.498-1.302 0.578-2.89 0.972-4.358 0.948a13.484 13.484 0 0 1-5.053-0.57 13.849 13.849 0 0 1-4.506-2.455 14.821 14.821 0 0 1-2.705-2.797c-1.118-1.62-1.963-3.4-2.324-5.283-0.36-1.884-0.374-3.795 0.098-5.81 0.289-1.388 0.85-2.932 1.639-4.085 0.91-1.571 2.046-2.75 3.394-3.877 0.408-0.236 0.605-0.524 1.014-0.76l0.545-0.315 74.538-43.034 1.09-0.63c1.03-0.42 1.922-0.76 3.027-1.05a5.935 5.935 0 0 1 1.877-0.212c0.211 0.052 0.348-0.026 0.696-0.053 0.15 0.262 0.362 0.314 0.574 0.366z"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 14.746 14.747" xmlns="http://www.w3.org/2000/svg"> + <g transform="matrix(.019202 0 0 .019037 -.0024016 13.862)" fill="#232629"> + <path d="m305.67-467.18c1.437 0.05 2.874 0.1 4.388 0.01 3.202 0.096 6.279 0.124 9.403 0.362 14.293 0.645 28.547 2.554 42.618 5.097 17.167 3.132 34.14 7.81 50.574 13.477 21.535 7.351 42.317 16.677 62.174 27.7 21.486 11.912 41.97 25.662 60.793 41.259 8.95 7.454 17.542 15.263 25.825 23.639 7.01 7.13 13.742 14.474 20.116 22.174 10.906 13.11 20.694 27.077 29.16 41.974 6.634 11.695 12.429 24.033 17.085 36.668 3.722 10.472 6.836 21.163 8.812 32.15 1.33 7.7 2.332 15.403 2.601 23.257 0.366 8.274 0.075 16.556-0.996 24.78-0.666 5.691-1.786 11.319-3.156 16.81-1.524 5.774-3.3 11.41-5.528 16.984-3.55 8.888-8.103 17.23-13.408 25.16-4.254 6.302-9.058 12.121-14.363 17.666-4.08 4.196-8.536 8.186-13.166 11.897-3.23 2.64-6.51 5.07-9.963 7.223a140.33 140.33 0 0 1-7.87 4.879c-1.93 1.149-3.984 2.23-6.038 3.31-14.863 7.851-30.912 13.404-47.27 17.136a119.07 119.07 0 0 1-8.593 1.732c-3.587 0.61-7.175 1.221-10.686 1.69a165.05 165.05 0 0 1-14.466 1.462c-5.932 0.432-11.786 0.723-17.688 0.804a301.42 301.42 0 0 1-45.666-3.091c-18.584-2.621-37.024-6.998-54.971-12.575-24.458-7.662-48.182-17.86-70.623-30.109-22.691-12.387-44.351-26.962-64.197-43.668-16.298-13.667-31.495-28.752-45.063-45.334-10.357-12.626-19.672-25.968-27.868-40.167-6.76-11.764-12.631-23.96-17.211-36.737-3.924-10.4-6.835-21.163-8.811-32.15-1.33-7.7-2.332-15.403-2.679-23.116-0.365-8.273-0.075-16.556 0.794-24.706 0.666-5.692 1.66-11.388 3.03-16.88a129.05 129.05 0 0 1 5.634-17.476c3.55-8.888 8.103-17.23 13.409-25.16 4.254-6.302 9.057-12.12 14.362-17.666 4.235-4.478 8.893-8.541 13.726-12.326 3.23-2.64 6.635-5.002 9.963-7.222a140.33 140.33 0 0 1 7.87-4.88c1.93-1.148 3.984-2.229 6.038-3.31 14.863-7.85 31.037-13.335 47.394-17.067a119.07 119.07 0 0 1 8.594-1.732 211.84 211.84 0 0 1 11.544-1.772c4.9-0.629 9.722-1.116 14.467-1.462l12.036-0.586c1.968-0.027 3.81-0.122 5.7-8e-3 0.733-0.15 1.514-0.091 2.17-0.1zm-1.382 27.871c-2.093-0.041-4.263 0.059-6.433 0.159l-12.036 0.586c-5.073 0.35-10.175 1.052-15.277 1.753-3.916 0.615-7.832 1.23-11.7 2.055-2.806 0.67-5.738 1.272-8.419 2.01-2.401 0.524-4.755 1.258-7.108 1.992-14.043 4.262-27.651 10.412-39.872 18.789-1.6 1.144-3.202 2.289-4.88 3.575-2.315 1.855-4.63 3.711-6.82 5.636-2.903 2.635-5.68 5.34-8.285 8.322-4.109 4.546-7.716 9.367-11.025 14.533-4.003 6.44-7.254 13.29-9.801 20.34a127.47 127.47 0 0 0-4.014 14.508 115.81 115.81 0 0 0-1.892 14.197c-1.004 13.765 0.412 27.566 3.622 41.063 2.169 9.441 5.196 18.8 8.908 27.8 4.57 11.302 10.23 22.099 16.652 32.394 7.86 12.73 16.885 24.814 26.702 36.045a337.6 337.6 0 0 0 39.566 38.113c17.927 14.556 37.311 27.34 57.698 38.284 20.889 11.22 42.983 20.527 65.656 27.582 16.289 5.038 32.944 8.808 49.792 11.032a254.67 254.67 0 0 0 40.072 2.607c6.105-0.154 12.21-0.308 18.344-0.813a209.38 209.38 0 0 0 14.621-1.745c3.713-0.542 7.378-1.294 11.043-2.046l8.42-2.01c2.276-0.592 4.427-1.253 6.578-1.914 13.917-4.33 27.371-10.198 39.39-18.501 1.803-1.218 3.607-2.435 5.362-3.862 2.315-1.856 4.63-3.712 6.82-5.636a84.345 84.345 0 0 0 8.641-8.678 116.31 116.31 0 0 0 10.514-13.895c3.926-6.298 7.303-13.08 9.85-20.13 1.688-4.584 2.923-9.231 3.907-14.015a123.1 123.1 0 0 0 2.123-14.622c1.005-13.765-0.334-27.708-3.293-41.067-2.17-9.441-5.196-18.8-8.909-27.8-4.57-11.303-10.23-22.1-16.652-32.394-7.907-12.94-17.058-25.093-27.048-36.601-12.68-14.63-26.914-27.904-41.968-39.975-16.905-13.448-34.987-25.337-53.917-35.67a360.51 360.51 0 0 0-59.32-25.775 361.74 361.74 0 0 0-41.093-10.871c-12.837-2.42-25.856-4.205-38.963-4.937-3.327-0.165-6.655-0.33-9.857-0.426-1.437-0.05-3.076-0.028-4.513-0.078-0.328 4e-3 -0.733 0.15-1.186 0.086z"/> + <path d="m384.83-529.93c2.458-0.032 5.042 5e-3 7.385 0.185 5.292 0.142 10.47 0.495 15.646 0.849 14.799 1.21 29.28 3.895 43.665 7.352a288.92 288.92 0 0 1 33.96 11.12c9.73 3.937 19.229 8.298 28.38 13.294 8.902 4.859 17.572 10.14 25.896 16.058a322.45 322.45 0 0 1 24.152 18.953c9.26 8.077 17.932 16.932 25.882 26.216 7.95 9.285 15.293 18.787 21.922 29 7.412 11.463 14.1 23.356 19.826 35.822 5.455 11.768 10.071 24.178 13.705 36.601 4.183 14.097 7.153 28.63 9.014 43.107a265.73 265.73 0 0 1 1.92 44.18 282.21 282.21 0 0 1-6.07 47.785c-3.402 15.176-8.038 30.228-13.928 44.595a262.32 262.32 0 0 1-12.822 27.066 275.5 275.5 0 0 1-18.286 29.029c-7.272 10.042-15.17 19.741-23.83 28.75-11.743 12.271-24.509 23.435-38.307 33.21-14.992 10.772-30.902 19.945-47.613 27.306-17.193 7.648-35.061 13.553-53.49 17.504-19.037 4.17-38.393 6.24-57.702 6.14-10.7-0.072-21.421-0.704-32.161-1.896-10.865-1.261-21.51-3.225-32.048-5.681a247.32 247.32 0 0 1-36.438-11.649c-9.98-4.074-19.98-8.708-29.508-13.91a277.66 277.66 0 0 1-24.13-14.82c-7.687-5.294-15.268-11.081-22.368-17.154-8.613-7.174-16.64-15.127-24.184-23.366-8.306-8.93-15.774-18.5-22.77-28.638-7.643-11.04-14.447-22.721-20.403-34.764-6.478-12.876-11.75-26.469-16.04-40.074-4.435-14.234-7.78-28.972-9.776-43.798-2.122-14.894-2.778-30.087-2.441-45.013a259.3 259.3 0 0 1 5.914-48.694 276.54 276.54 0 0 1 13.562-44.52c4.07-10.14 8.884-20.15 14.199-29.887 5.545-10.16 11.843-19.908 18.643-29.383a256.58 256.58 0 0 1 21.585-26.13c11.974-12.694 25.212-24.424 39.491-34.486 14.396-10.274 29.939-19.371 46.158-26.726 11.623-5.194 23.757-9.835 35.93-13.355a271.31 271.31 0 0 1 35.875-7.889 216.89 216.89 0 0 1 26.836-2.658c3.066-0.25 6.015-0.288 8.965-0.326 1.35-0.088 2.825-0.107 4.059 0.017 0.636 0.623 1.128 0.616 1.745 0.678zm-1.485 27.761-4.424 0.057c-2.7 0.175-5.409 0.07-8.108 0.245-7.856 0.382-15.693 1.324-23.404 2.334-11.866 1.765-23.577 4.438-35.008 8.088-9.975 3.071-19.931 6.703-29.491 11.1-14.523 6.632-28.505 14.659-41.455 24.073a245.25 245.25 0 0 0-35.435 30.932c-6.994 7.446-13.486 15.166-19.467 23.44-6.096 8.485-11.691 17.244-16.66 26.345a258.13 258.13 0 0 0-12.706 26.855c-5.206 12.817-9.285 26.25-12.244 40.019-3.066 14.26-4.762 28.994-5.234 43.571a247.7 247.7 0 0 0 2.159 40.464 242.53 242.53 0 0 0 8.76 39.398c3.875 12.28 8.607 24.477 14.428 36.171 5.425 10.929 11.824 21.565 18.82 31.702a220.06 220.06 0 0 0 20.06 24.96c6.897 7.337 14.036 14.53 21.762 20.946a252.24 252.24 0 0 0 41.829 28.602c9.026 4.927 18.4 9.22 27.878 13.02 9.97 3.794 20.172 7.165 30.47 9.764 9.179 2.264 18.589 4.104 27.97 5.103 10.007 1.342 20.11 1.912 30.435 1.779 17.458-0.086 34.857-1.852 51.821-5.503 16.473-3.646 32.645-8.829 48.017-15.823 15.014-6.639 29.479-14.952 42.795-24.441a252.17 252.17 0 0 0 34.366-29.867c7.35-7.8 14.198-15.876 20.41-24.573 6.337-8.628 12.163-17.81 17.237-27.403 4.275-7.832 8.164-16.148 11.561-24.459 5.322-13.028 9.526-26.393 12.495-39.882 3.075-13.98 4.907-28.365 5.504-42.874 0.521-13.177-0.076-26.69-1.763-39.698-1.686-13.009-4.356-26.004-8.124-38.776a243.84 243.84 0 0 0-13.009-34.298c-5.184-11.072-11.217-21.782-17.972-32.063-5.713-8.613-12.033-17.008-18.825-24.836-7.429-8.451-15.34-16.615-23.837-24.001a258.41 258.41 0 0 0-21.74-16.813 245.17 245.17 0 0 0-22.626-13.999 223.73 223.73 0 0 0-28.37-13.013c-8.978-3.527-18.302-6.42-27.606-8.75-12.535-3.272-25.396-5.347-38.353-6.65-4.936-0.498-9.863-0.714-14.789-0.93-2.217-0.112-4.434-0.224-6.642-0.055-0.501-0.274-0.993-0.267-1.485-0.261z"/> + <path d="m479.4-504.04c0.925 0.04 2.022 0.013 2.947 0.052 2.124 0.072 4.35 0.203 6.504 0.457a78.452 78.452 0 0 1 16.376 3.517 81.74 81.74 0 0 1 16.997 7.834c3.786 2.35 7.357 5.072 10.685 7.983 2.383 2.2 4.695 4.525 6.936 6.974 1.602 1.914 3.204 3.828 4.632 5.807 1.064 1.44 2.057 3.002 3.05 4.565 5.794 8.952 9.919 18.92 12.874 29.038 0.444 1.576 0.888 3.152 1.23 4.669 0.474 1.758 0.846 3.457 1.249 5.339 0.492 2.428 0.955 4.674 1.346 7.044 0.512 3.1 0.952 6.322 1.392 9.545 0.52 4.258 0.764 8.523 0.938 12.91 0.21 5.73 0.32 11.401 0.155 17.078-0.27 7.266-0.814 14.538-1.562 21.694-1.149 9.726-2.603 19.277-4.504 28.9a426.41 426.41 0 0 1-7.978 32.338c-3.39 11.732-7.359 23.294-11.703 34.805-5.07 13.235-10.72 26.302-16.846 39.257-6.228 12.898-12.862 25.56-20.105 37.871-7.285 12.617-15.178 24.882-23.406 36.79-7.942 11.412-16.29 22.59-25.177 33.293-7.582 9.147-15.468 18.118-23.79 26.672-7.691 7.93-15.615 15.559-23.975 22.772-5.774 5.078-11.853 9.98-18.063 14.64-6.21 4.662-12.551 9.082-19.126 13.203-5.74 3.613-11.51 7.043-17.544 9.992-5.169 2.623-10.439 5.188-15.871 7.33-8.616 3.436-17.495 6.391-26.585 8.07-7.647 1.523-15.586 2.382-23.432 2.14-4.32-0.02-8.628-0.528-12.865-1.16-4.165-0.756-8.36-1.694-12.443-3.061-5.922-1.934-11.516-4.67-16.651-7.964-3.888-2.41-7.388-5.255-10.817-8.224-2.383-2.201-4.696-4.526-6.865-7.098a52.06 52.06 0 0 1-4.297-5.45c-0.963-1.38-1.926-2.76-2.787-4.082-5.59-8.835-9.757-18.498-12.713-28.615-0.443-1.576-0.887-3.152-1.23-4.669-0.503-1.94-1.007-3.88-1.338-5.885-0.625-2.67-1.076-5.404-1.527-8.139-0.44-3.223-0.88-6.446-1.22-9.61-0.519-4.258-0.692-8.646-0.937-12.91-0.21-5.73-0.147-11.466 0.018-17.143 0.27-7.266 0.814-14.538 1.633-21.817 1.15-9.727 2.675-19.402 4.677-28.966 2.199-10.605 4.773-21.159 7.824-31.602 3.42-11.55 7.246-22.864 11.448-34.128 4.814-12.558 10.035-24.882 15.763-36.914a544.79 544.79 0 0 1 20.33-38.73 559.99 559.99 0 0 1 23.734-37.59c7.555-10.976 15.689-21.783 24.086-32.108a477.59 477.59 0 0 1 23.2-26.353c7.834-8.177 15.901-16.054 24.475-23.638 5.703-4.954 11.435-9.726 17.472-14.322 5.865-4.531 11.86-8.821 18.09-12.811 5.394-3.483 10.818-6.784 16.475-9.784 5.312-2.871 10.827-5.625 16.402-8.014a175.51 175.51 0 0 1 22.57-7.914c6.692-1.745 13.646-3.007 20.62-3.599 1.82-0.104 3.71-0.332 5.631-0.377l2.47-0.058c0.58 0.169 0.853 0.162 1.128 0.156zm-0.813 27.898c-1.748-0.02-3.466 0.143-5.113 0.182-5.357 0.37-10.624 1.288-15.729 2.629-7.139 1.816-13.984 4.296-20.74 7.322-4.71 2.064-9.288 4.368-13.664 6.79a188.02 188.02 0 0 0-15.021 9.14c-5.466 3.606-10.729 7.33-15.931 11.418-5.447 4.277-10.864 8.736-16.078 13.312-7.21 6.393-14.186 13.085-20.757 20.012-7.447 7.74-14.558 15.84-21.467 24.055a450.23 450.23 0 0 0-21.527 28.144 554.5 554.5 0 0 0-21.61 33.209c-6.63 11.015-12.753 22.323-18.47 33.866s-11.058 23.138-15.891 35.026c-4.108 10.163-7.911 20.502-11.238 30.95-3.1 9.59-5.795 19.415-8.215 29.233-2.205 9.447-4.065 18.763-5.418 28.373-1.063 7.468-1.852 14.929-2.265 22.442a188.02 188.02 0 0 0-0.404 17.579c0.102 4.512 0.275 8.9 0.723 13.282 0.297 3.47 0.798 7.057 1.37 10.521 0.45 2.735 0.974 5.345 1.598 8.015 0.534 2.122 1.068 4.245 1.674 6.244 0.443 1.575 0.989 3.21 1.504 4.661 0.455 1.088 0.838 2.299 1.293 3.386 0.354 1.029 0.779 1.934 1.204 2.839 2.8 6.4 6.568 12.534 11.283 17.73 0.8 0.957 1.572 1.731 2.444 2.565 1.207 1.191 2.485 2.26 3.763 3.327 1.99 1.478 3.978 2.956 6.181 4.063 2.944 1.7 6.102 3.028 9.301 4.05 5.038 1.59 10.402 2.378 15.748 2.496 6.098 0.222 12.218-0.533 18.176-1.71 3.55-0.756 6.895-1.628 10.312-2.624 4.109-1.256 8.188-2.694 12.135-4.374a147.56 147.56 0 0 0 14.04-6.737c5.312-2.87 10.42-5.858 15.398-9.087a310.02 310.02 0 0 0 15.4-10.735 280.97 280.97 0 0 0 17.401-14.198c7.383-6.458 14.431-13.274 21.348-20.33 7.304-7.494 14.273-15.345 20.937-23.372 7.51-9.023 14.686-18.404 21.629-28.085 7.9-11.107 15.467-22.571 22.425-34.387 6.63-11.016 12.753-22.324 18.571-33.809 5.819-11.484 11.058-23.137 15.892-35.026 4.25-10.41 8.024-20.93 11.493-31.627 3.213-10.02 6.122-20.215 8.38-30.456 2.134-9.323 3.964-18.822 5.347-28.25 1.022-7.161 1.739-14.499 2.182-21.83 0.41-5.866 0.442-11.784 0.303-17.637a304.78 304.78 0 0 0-0.825-13.34c-0.297-3.47-0.869-6.934-1.44-10.398a122.15 122.15 0 0 0-1.6-8.015c-0.533-2.122-1.067-4.245-1.673-6.244a75.495 75.495 0 0 0-1.504-4.662c-0.455-1.087-0.838-2.298-1.293-3.385-2.952-7.312-6.972-14.416-12.254-20.27-0.8-0.956-1.775-1.848-2.748-2.74-1.207-1.192-2.486-2.26-3.764-3.328a66.038 66.038 0 0 0-6.282-4.121c-3.045-1.759-6.275-2.963-9.576-4.044-3.372-0.958-6.785-1.61-10.342-2.013-1.3-0.092-2.601-0.183-3.8-0.215-0.65-0.046-1.474-0.027-2.124-0.072 0.03 0.182-0.245 0.189-0.692 0.26z"/> + <path d="m499.42-448.8c3.135 2e-3 6.46 0.047 9.66 0.162 8.597 0.323 17.209 1.241 25.77 2.643 7.869 1.347 15.687 3.176 23.207 5.631 10.487 3.31 20.69 7.841 29.924 13.837a1.5749e16 1.5749e16 0 0 1 14.753 11.269c3.271 3.095 6.55 6.489 9.268 10.055 4.332 5.503 8.111 11.478 11.083 17.767a94.313 94.313 0 0 1 5.49 14.652c0.959 3.374 1.794 6.82 2.315 10.294 0.5 2.58 0.754 5.304 1.065 7.843 0.174 2.014 0.282 3.916 0.39 5.817 0.501 13.152-1.317 26.285-4.838 39.041-0.582 1.847-0.976 3.736-1.56 5.583-0.757 2.401-1.515 4.802-2.396 7.275-1.115 3.21-2.419 6.38-3.723 9.55a163.67 163.67 0 0 1-5.724 12.367c-2.454 4.89-5.032 9.852-7.864 14.66-3.735 6.385-7.666 12.43-11.91 18.506-4.732 6.659-9.595 13.09-14.712 19.368a375.8 375.8 0 0 1-16.362 18.509c-6.237 6.622-12.671 12.904-19.294 19.144a421.01 421.01 0 0 1-24.517 20.952c-9.17 7.257-18.658 14.246-28.41 20.782-10.798 7.292-21.858 14.13-33.114 20.629a541.06 541.06 0 0 1-36.606 18.869c-11.226 5.122-22.772 9.976-34.333 14.234-11.19 4.043-22.451 7.676-33.851 10.783a397.56 397.56 0 0 1-32.992 7.418c-9.617 1.625-19.364 3.024-29.003 3.756-8.51 0.684-17.217 1.03-25.75 0.82-10.161-0.175-20.337-0.946-30.345-2.568-8.873-1.372-17.637-3.41-26.168-6.189-10.428-3.494-20.507-8.096-29.742-14.093l-4.014-2.667c-3.7-2.696-7.22-5.649-10.68-8.786-3.206-2.982-6.106-6.292-8.949-9.786-4.266-5.39-7.98-11.252-10.951-17.541a91.238 91.238 0 0 1-5.36-14.426c-0.959-3.374-1.793-6.819-2.315-10.293-0.377-2.653-0.754-5.305-1.065-7.844-0.173-2.014-0.281-3.915-0.39-5.816-0.501-13.153 1.317-26.286 4.838-39.042 0.583-1.847 0.977-3.736 1.56-5.583 0.757-2.4 1.515-4.802 2.397-7.274 1.114-3.211 2.418-6.38 3.722-9.55 1.66-3.98 3.51-7.917 5.36-11.855 2.389-5.004 5.032-9.853 7.864-14.66 3.612-6.314 7.667-12.43 11.787-18.435 4.244-6.075 8.743-11.995 13.307-17.802 5.48-6.79 11.158-13.239 17.148-19.718 6.296-6.806 12.911-13.344 19.782-19.728 7.546-6.924 15.224-13.623 23.222-20.052a476.37 476.37 0 0 1 26.735-19.967 500.91 500.91 0 0 1 33.603-21.213c10.761-6.213 21.785-11.973 32.88-17.322 11.78-5.593 23.756-10.846 35.935-15.46 10.687-4.056 21.571-7.773 32.469-10.893 10.272-3.06 20.683-5.597 31.042-7.651 8.111-1.663 16.419-2.985 24.544-4.051 7.377-0.936 14.884-1.645 22.463-1.944 3.695-0.17 7.456-0.226 11.217-0.283 0.821 0.28 1.512 0.335 2.138 0.276zm-1.092 27.817c-2.946 0.04-5.892 0.08-8.773 0.232-7.077 0.31-14.337 0.877-21.4 1.783-7.69 0.965-15.495 2.3-23.235 3.748-9.734 1.995-19.271 4.33-28.86 7.147-10.709 3.162-21.345 6.735-31.72 10.761-9.443 3.64-18.814 7.691-28.055 11.969-10.23 4.849-20.452 9.996-30.29 15.524a459.61 459.61 0 0 0-50.382 32.713c-14.474 10.924-28.301 22.683-41.292 35.319a336.6 336.6 0 0 0-16.085 16.99c-4.884 5.538-9.637 11.303-14.2 17.11a233.2 233.2 0 0 0-13.825 19.762c-3.262 5.206-6.458 10.525-9.276 15.928-2.22 4.152-4.187 8.459-6.153 12.766-1.428 3.24-2.725 6.708-3.898 10.104a137.17 137.17 0 0 0-2.681 8.496l-1.728 6.434c-0.459 1.776-0.73 3.593-1.188 5.369l-0.657 4.004c-1.286 9.2-1.502 18.538 0.035 27.77 0.225 1.532 0.573 2.993 0.921 4.453 0.552 2.098 1.169 4.31 1.91 6.45 1.075 3.004 2.208 5.823 3.777 8.542a67.136 67.136 0 0 0 7.283 10.9c2.13 2.546 4.507 4.949 7.008 7.281 2.37 2.106 4.987 4.068 7.54 5.918 3.758 2.511 7.7 4.767 11.757 6.653 4.822 2.352 9.818 4.15 14.872 5.763 6.378 1.906 12.997 3.37 19.543 4.425 8.182 1.317 16.474 1.967 24.817 2.135 8.03 0.197 16.112-0.09 24.186-0.673 8.634-0.756 17.262-1.81 25.817-3.275 10.49-1.828 20.842-4.18 31.121-6.943a348.82 348.82 0 0 0 31.61-10.094c10.194-3.77 20.256-7.767 30.18-12.288 10.731-4.837 21.325-10.198 31.723-15.899 17.142-9.444 33.696-19.908 49.596-31.504a380.56 380.56 0 0 0 23.694-18.664 416.52 416.52 0 0 0 19.272-17.47 360.62 360.62 0 0 0 16.826-17.418 328.7 328.7 0 0 0 14.878-17.652 273.53 273.53 0 0 0 14.014-19.72 205.89 205.89 0 0 0 9.763-16.512c2.28-4.336 4.493-8.786 6.394-13.207 1.486-3.425 2.906-6.964 4.137-10.544a137.17 137.17 0 0 0 2.682-8.496l1.728-6.435c0.459-1.776 0.729-3.593 1.188-5.368l0.657-4.005c1.41-9.271 1.495-18.836-0.108-28.181-0.224-1.532-0.573-2.992-0.921-4.453-0.552-2.098-1.169-4.31-1.91-6.45-1.14-3.117-2.462-5.978-3.973-8.882-2.1-3.922-4.76-7.673-7.726-11.096-2.32-2.588-4.762-5.105-7.386-7.365-2.494-2.034-5.112-3.997-7.787-5.775-3.949-2.554-8.079-4.851-12.326-6.78-4.945-2.28-10.065-4.006-15.243-5.548-5.869-1.595-11.796-3.006-17.775-3.935a194.57 194.57 0 0 0-20.926-1.965c-2.51-0.061-4.895-0.194-7.339-0.142a5.01 5.01 0 0 1-1.811 0.29zm-116.06-274.89c0.604 0 0.755 0 1.359 0.157 1.057 0.157 2.265 0.472 3.322 0.944 1.962 0.787 3.623 2.046 4.982 3.462 1.36 1.573 2.416 3.304 3.02 5.35 0.302 0.944 0.453 1.73 0.604 2.674v88.115c0 0.472 0 0.944-0.151 1.416-0.302 1.573-0.755 3.147-1.51 4.563-0.604 1.259-1.51 2.36-2.416 3.304-1.51 1.416-3.17 2.518-5.133 3.305-1.963 0.629-4.077 0.944-6.04 0.786-1.359-0.157-2.718-0.472-3.926-0.944-1.51-0.63-2.869-1.416-4.076-2.517-1.36-1.26-2.416-2.675-3.171-4.406-0.604-1.259-1.057-2.518-1.208-3.934 0-0.472-0.151-0.944-0.151-1.416v-88.114c0.15-1.102 0.302-2.203 0.755-3.304 0.755-1.889 1.812-3.777 3.322-5.193s3.17-2.517 5.133-3.304c1.057-0.315 2.265-0.63 3.322-0.787h1.359c0.15-0.157 0.302-0.157 0.604-0.157zm214.45 57.634c0.21-0.061 0.47 0.09 0.68 0.029 0.471 0.09 0.811 0.105 1.282 0.195 1.282 0.195 2.538 0.739 3.584 1.342 1.91 0.921 3.504 2.387 4.81 4.05 1.228 1.799 2.168 3.795 2.558 5.837 0.182 1.195 0.285 2.526 0.048 3.843-0.159 1.18-0.396 2.497-0.973 3.799-0.236 0.409-0.263 0.757-0.499 1.165l-0.314 0.545-43.035 74.538-0.314 0.545c-0.236 0.409-0.394 0.681-0.76 1.015-0.84 1.15-2.018 2.287-3.302 3a13.484 13.484 0 0 1-4.66 2.032c-1.597 0.35-3.377 0.413-5.13 0.128-1.884-0.361-3.74-1.07-5.44-2.052-1.622-1.117-2.955-2.432-4.13-4.02-0.732-1.148-1.333-2.222-1.645-3.492-0.444-1.347-0.73-2.965-0.623-4.357 2e-3 -1.816 0.396-3.405 1-5.055 0.236-0.409 0.263-0.757 0.499-1.166l0.315-0.545 43.034-74.537 0.63-1.09c0.523-0.606 1.126-1.348 1.65-1.954 0.891-0.94 1.965-1.591 3.039-2.243s2.33-1.016 3.587-1.381c0.628-0.182 1.178-0.228 1.937-0.335 0.55-0.046 0.68 0.03 1.23-0.017 0.602 0.166 0.811 0.105 0.942 0.18zm-429.08-0.065c0.55 0.046 0.68-0.029 1.309 0.153 0.55 0.046 1.308 0.153 1.937 0.335 1.256 0.365 2.382 0.805 3.535 1.593 1.073 0.652 2.095 1.516 2.986 2.455 0.445 0.47 0.89 0.94 1.206 1.484l0.629 1.09 43.034 74.538c0.08 0.136 0.236 0.409 0.315 0.545 0.236 0.409 0.393 0.681 0.499 1.166 0.604 1.65 0.998 3.239 1 5.054-0.024 1.468-0.18 3.01-0.623 4.357a14.709 14.709 0 0 1-2.82 5.08c-1.254 1.451-2.876 2.57-4.654 3.414-1.125 0.468-2.46 0.875-3.741 1.07-1.753 0.285-3.402 0.147-5.13-0.127a13.484 13.484 0 0 1-4.66-2.033 23.105 23.105 0 0 1-3.302-3c-0.236-0.409-0.524-0.606-0.76-1.015l-0.314-0.545-43.035-74.537-0.314-0.545c-0.236-0.409-0.394-0.682-0.5-1.166-0.576-1.302-0.97-2.89-0.946-4.358a22.52 22.52 0 0 1 0.257-3.783c0.52-2.117 1.46-4.113 2.767-5.776s3.11-3.068 5.02-3.989c1.125-0.467 2.459-0.874 3.74-1.07 0.472-0.09 0.812-0.104 1.283-0.194 0.21 0.06 0.47-0.09 0.68-0.03 0.052-0.212 0.262-0.15 0.602-0.166zm-152.84 155.82c0.56-0.025 0.696 0.054 1.18 0.159 0.696 0.053 1.317 0.237 1.937 0.42 0.62 0.185 1.241 0.369 1.787 0.683l1.09 0.63 74.537 43.034 0.545 0.315c0.409 0.236 0.682 0.393 1.015 0.76 1.348 1.127 2.484 2.306 3.394 3.877 1.046 1.65 1.593 3.535 1.928 5.472 0.199 1.859 0.11 3.9-0.387 5.705-0.331 1.203-0.874 2.459-1.615 3.426a10.457 10.457 0 0 1-3.007 3.32c-1.375 1.124-2.872 1.829-4.505 2.455a13.484 13.484 0 0 1-5.053 0.57 23.105 23.105 0 0 1-4.359-0.948c-0.409-0.236-0.757-0.262-1.166-0.498l-0.545-0.315-74.537-43.034c-0.136-0.08-0.409-0.236-0.545-0.315-0.409-0.236-0.682-0.393-1.015-0.76-1.15-0.84-2.287-2.018-3-3.301-0.924-1.231-1.425-2.567-1.85-4.033-0.365-1.256-0.518-2.565-0.534-3.795 0.073-1.701 0.359-3.454 1.053-4.971 0.558-1.596 1.6-3.086 2.703-4.367a17.261 17.261 0 0 1 3.038-2.43c1.648-0.967 3.493-1.645 5.46-1.904 0.423-0.105 0.771-0.078 1.331-0.104 0.212-0.052 0.348 0.027 0.696 0.054-0.06-0.21 0.151-0.262 0.424-0.105zm739.74-0.085c0.212 0.052 0.424 0.104 0.56 0.025 0.424 0.105 0.772 0.078 1.331 0.103 1.407 0.234 2.965 0.73 4.25 1.382 1.573 0.836 2.873 1.829 4.051 3.24 1.028 1.15 1.783 2.459 2.401 3.845 0.468 1.125 0.875 2.459 0.858 3.689 0.196 1.282 0.043 2.59-0.11 3.9-0.214 1.517-0.715 2.853-1.427 4.136-0.834 1.702-2.168 3.17-3.652 4.375-0.409 0.236-0.606 0.524-1.015 0.76l-0.545 0.315-74.537 43.034-0.545 0.315c-0.409 0.236-0.681 0.393-1.166 0.498-1.302 0.578-2.89 0.972-4.358 0.948a13.484 13.484 0 0 1-5.053-0.57 13.849 13.849 0 0 1-4.506-2.455 14.821 14.821 0 0 1-2.705-2.797c-1.118-1.62-1.963-3.4-2.324-5.283-0.36-1.884-0.374-3.795 0.098-5.81 0.289-1.388 0.85-2.932 1.639-4.085 0.91-1.571 2.046-2.75 3.394-3.877 0.408-0.236 0.605-0.524 1.014-0.76l0.545-0.315 74.538-43.034 1.09-0.63c1.03-0.42 1.922-0.76 3.027-1.05a5.935 5.935 0 0 1 1.877-0.212c0.211 0.052 0.348-0.026 0.696-0.053 0.15 0.262 0.362 0.314 0.574 0.366z"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" fill="#000000" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> + <path d="m48 0-48 6.5283v34.943l48 6.5283zm-4.3637 4.9943v16.823h-21.818v-13.853zm-26.182 3.5625v13.261h-13.091v-11.48zm-13.091 17.625h13.091v13.261l-13.091-1.7812zm17.454 0h21.818v16.823l-21.818-2.9702z" fill="#eff0f1" stroke-width="2.1818"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" fill="#000000" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> + <path d="m48 0-48 6.5283v34.943l48 6.5283zm-4.3637 4.9943v16.823h-21.818v-13.853zm-26.182 3.5625v13.261h-13.091v-11.48zm-13.091 17.625h13.091v13.261l-13.091-1.7812zm17.454 0h21.818v16.823l-21.818-2.9702z" fill="#232629" stroke-width="2.1818"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <g transform="matrix(3 0 0 3 -1274.1 -1586.4)" fill="#eff0f1"> + <rect class="ColorScheme-Text" x="383.46" y="518.13" width="0" height="11" color="#eff0f1"/> + <path class="ColorScheme-Text" d="m432.72 528.79c-0.31896 0-0.62792 0.026-0.93788 0.063-0.30396 0.036-0.61392 0.087-0.90589 0.1559-0.094 0.022-0.18497 0.067-0.28096 0.094-0.084 0.023-0.16698 0.037-0.24997 0.063-0.10499 0.033-0.21397 0.059-0.31296 0.094-0.10699 0.038-0.20697 0.083-0.31296 0.1249-0.20597 0.083-0.39695 0.182-0.59393 0.2809-0.071 0.036-0.14898 0.056-0.21897 0.094-0.22997 0.1209-0.44094 0.2629-0.65592 0.4058-0.082 0.055-0.16997 0.098-0.24996 0.1559-0.033 0.024-0.061 0.038-0.094 0.063-0.094 0.071-0.19098 0.1418-0.28097 0.2188-0.10698 0.089-0.20997 0.1869-0.31296 0.2809-0.032 0.03-0.062 0.064-0.094 0.094l-0.031 0.031c-0.016 0.016-0.015 0.047-0.031 0.063-0.20997 0.2039-0.43894 0.3988-0.62492 0.6247-5e-3 0.01 5e-3 0.025 0 0.031-0.18098 0.2199-0.34296 0.4478-0.49994 0.6877-0.021 0.032-0.042 0.061-0.063 0.094-0.015 0.024-0.047 0.037-0.063 0.063-0.06 0.098-0.10099 0.209-0.15598 0.3129-0.018 0.033-0.045 0.061-0.063 0.094-0.075 0.1459-0.14998 0.2898-0.21897 0.4378-4e-3 0.01 4e-3 0.023 0 0.031-0.11699 0.2528-0.22198 0.5136-0.31296 0.7805-0.019 0.053-0.045 0.103-0.063 0.156-3e-3 0.01 3e-3 0.022 0 0.031-0.02 0.062-0.044 0.125-0.063 0.188-0.073 0.2568-0.13998 0.5137-0.18798 0.7806-0.034 0.1919-0.074 0.3968-0.094 0.5938-0.027 0.2648-0.031 0.5417-0.031 0.8125 0 0.4038 0.036 0.7996 0.094 1.1875 6e-3 0.041-7e-3 0.085 0 0.1249 0.044 0.2659 0.11798 0.5248 0.18798 0.7807 0.026 0.096 0.064 0.1859 0.094 0.2809 0.04 0.1289 0.079 0.2489 0.12499 0.3748 0.077 0.2119 0.15598 0.4218 0.24997 0.6246 0.05 0.106 0.10198 0.2099 0.15598 0.3129 0.15198 0.2919 0.31496 0.5747 0.49993 0.8436 0.016 0.024 0.046 0.039 0.063 0.063 0.19797 0.2809 0.39395 0.5597 0.62492 0.8126 0.04 0.044 0.084 0.082 0.12498 0.125 0.04 0.042 0.084 0.084 0.12499 0.1249 0.21397 0.2139 0.45094 0.4048 0.68791 0.5938 0.30596 0.2438 0.62892 0.4587 0.96888 0.6556 0.012 0.01 0.019 0.024 0.031 0.031 0.053 0.03 0.10299 0.065 0.15598 0.094 0.31596 0.156 0.69192 0.3249 0.93788 0.4378 0.10999 0.042 0.23098 0.057 0.34396 0.094 0.053 0.018 0.10299 0.046 0.15598 0.063 0.13598 0.041 0.26797 0.09 0.40595 0.1249 0.042 0.011 0.083 0.021 0.12499 0.031 0.29196 0.069 0.60192 0.1209 0.90588 0.1559 0.30896 0.036 0.61792 0.063 0.93788 0.063 0.33996 0 0.67092-0.021 0.99988-0.063 0.36495-0.048 0.68091-0.1239 0.99987-0.1879 1.6978-0.4358 3.1616-1.4213 4.2185-2.7487 0.028-0.035 0.067-0.058 0.094-0.094 9e-3 -0.012 0.022-0.02 0.031-0.031 0.014-0.018 0.018-0.044 0.031-0.063 0.62292-0.8246 1.0769-1.7801 1.3438-2.8117 0.056-0.2169 0.11799-0.4318 0.15598-0.6557 5e-3 -0.03-5e-3 -0.063 0-0.094 6e-3 -0.04 0.025-0.079 0.031-0.125 6e-3 -0.043 0.026-0.082 0.031-0.1249h-0.031c0.044-0.3289 0.094-0.6587 0.094-0.9996 0-0.5517-0.05-1.1034-0.15598-1.6242-9e-3 -0.043-0.022-0.082-0.031-0.1249-0.046-0.2079-0.12398-0.4229-0.18798-0.6248-3e-3 -0.01 3e-3 -0.022 0-0.031-0.012-0.038-0.018-0.056-0.031-0.094-0.039-0.119-0.081-0.2579-0.12498-0.3748-0.012-0.032-0.018-0.064-0.031-0.094-0.043-0.109-0.10799-0.2059-0.15598-0.3128-2e-3 0 2e-3 -0.026 0-0.031-0.025-0.054-0.068-0.1029-0.094-0.1559-0.098-0.2029-0.19797-0.3998-0.31296-0.5937-0.058-0.098-0.094-0.2169-0.15598-0.3129-0.024-0.036-0.069-0.058-0.094-0.094-0.067-0.099-0.14698-0.185-0.21897-0.2809-0.08-0.1-0.13999-0.2159-0.21898-0.3129-5e-3 -0.01 5e-3 -0.025 0-0.031-0.17197-0.2089-0.36995-0.4028-0.56292-0.5937-0.093-0.092-0.18398-0.1939-0.28097-0.2809-0.028-0.025-0.065-0.038-0.094-0.063-0.20897-0.1819-0.42994-0.3398-0.65592-0.4996-0.055-0.038-0.10098-0.088-0.15598-0.125-0.07-0.046-0.14798-0.081-0.21897-0.1249-0.13498-0.084-0.26597-0.174-0.40595-0.2499-0.12298-0.067-0.24797-0.127-0.37495-0.1879-0.21397-0.102-0.43195-0.198-0.65592-0.2809-0.26596-0.099-0.53393-0.1799-0.8129-0.2499-0.24496-0.062-0.49693-0.118-0.7499-0.1559-0.39695-0.061-0.8049-0.094-1.2188-0.094m0 0.9996c0.29896 0 0.58493 0.027 0.87489 0.063 0.17998 0.023 0.35496 0.058 0.53093 0.094h0.031c0.16598 0.035 0.33796 0.079 0.49994 0.1249 0.096 0.027 0.18698 0.063 0.28097 0.094 0.17197 0.057 0.33395 0.1169 0.49993 0.1879 0.19398 0.08 0.37896 0.1528 0.56293 0.2498-0.031 0.01-0.063 0.021-0.094 0.031-0.047 0.017-0.11298 0.096-0.12498 0.1249-0.02 0.048 5e-3 0.115 0 0.188 0.038 0.017 0.06 0.089 0.12498 0.1249 0.025 0.014 0.041-0.01 0.063 0 0.038 0.021 0.07 0.087 0.063 0.1249-0.011 0.055-0.088 0.022-0.12498 0.063 6e-3 0.078-0.043 0.105-0.063 0.1559 0.012 0.033 0.057 0.024 0.063 0.063-7e-3 0.043-0.079 0.049-0.063 0.094 0.072 0.056 0.15098-0.022 0.21897-0.031 0.14898-0.019 0.28297 0.041 0.37495-0.031-0.012-0.071 0.10099-0.092 0.094-0.1559-6e-3 -0.048-0.09-0.061-0.12498-0.094-0.019-0.018-0.04-0.059-0.063-0.094-0.026-0.04-0.064-0.087-0.094-0.125-0.039-0.052-0.12498-0.1169-0.12498-0.1559 1e-3 -0.045 0.052-0.063 0.063-0.125-0.012-0.057-0.11699 0-0.12499-0.063 2e-3 -0.019 0.021-0.051 0.031-0.063 0.14998 0.082 0.29796 0.1789 0.43795 0.2809 0.032 0.021 0.062 0.041 0.094 0.063 0.10798 0.081 0.20697 0.17 0.31296 0.2499-0.067 0.012-0.10099 0.09-0.15598 0.156-0.038 0.046-0.099 0.1009-0.15598 0.1249-0.028 0.012-0.068-0.016-0.094 0-0.037 0.025-0.051 0.096-0.094 0.125-0.031 0.021-0.12399 0.094-0.15598 0.094-0.038 1e-3 -0.098-0.04-0.12499-0.031-0.04 0.013-0.017 0.077-0.063 0.094-0.088 0.031-0.24997-0.069-0.28096 0.063 0.038 0.076 0.15298 0.051 0.21897 0.094 0.042 0.026 0.11399 0.143 0.12498 0.1879 0.01 0.038 0.015 0.179 0 0.2189-0.041 0.106-0.15898 0.097-0.28096 0.094-0.034-1e-3 -0.063 0-0.094 0-0.20697-0.014-0.40695-0.085-0.49994 0.063 7e-3 0.1129 0.025 0.1829 0 0.2808-0.018 0.072-0.097 0.125-0.094 0.188 2e-3 0.032 0.055 0.082 0.063 0.1249 5e-3 0.023-0.011 0.073 0 0.094 0.034 0.066 0.12699-0.01 0.18798 0 0.059 0.01 0.12598 0.1209 0.12498 0.1879-1e-3 0.046-0.033 0.1119-0.063 0.1559-0.058 0.089-0.16698 0.077-0.24997 0.1249-0.07 0.039-0.084 0.1189-0.12498 0.1879-0.044 0.074-0.081 0.1109-0.063 0.2189-0.06 0.1179-0.12598 0.1939-0.24997 0.2499-0.037 0.017-0.092 0.039-0.12498 0.063-0.027 0.019-0.056 0.051-0.094 0.094-0.047 0.052-0.1 0.085-0.12499 0.125-0.019 0.031-0.01 0.084-0.031 0.1249-0.029 0.056-0.088 0.1-0.12498 0.1559-0.017 0.026-0.043 0.059-0.063 0.094-0.042 0.077-0.10099 0.1509-0.094 0.2189 7e-3 0.066 0.089 0.068 0.094 0.1249 4e-3 0.032-0.033 0.059-0.031 0.094 1e-3 0.051 0.027 0.086 0.031 0.1249 0.01 0.099-0.044 0.12-0.063 0.188-9e-3 0.032 8e-3 0.068 0 0.094-0.016 0.05-0.093 0.098-0.094 0.156-1e-3 0.042 0.059 0.097 0.063 0.1559 2e-3 0.04-0.038 0.057-0.031 0.094 0.014 0.073 0.16198 0.162 0.21897 0.2189 0.075 0.075 0.15498 0.139 0.18798 0.219 0.027 0.067 0.041 0.1678 0.094 0.2188 0.039 0.037 0.10598 0.054 0.15598 0.094 0.047 0.036 0.10698 0.055 0.15598 0.094 0.081 0.064 0.18297 0.1969 0.31296 0.1879 0.068-0.01 0.14198-0.05 0.21897-0.063 0.079-0.014 0.16998-0.039 0.24997-0.031 0.061 0.01 0.12398 0.066 0.18797 0.063 0.067 0 0.14299-0.061 0.21898-0.094 0.13198-0.057 0.33896-0.1529 0.53093-0.1249 0.14598 0.021 0.14898 0.2169 0.24997 0.2809 0.11798 0.01 0.21897-0.054 0.31296-0.031 0.07 0.017 0.14898 0.1319 0.15598 0.1879 7e-3 0.058-0.054 0.121-0.063 0.1559-0.018 0.078-0.017 0.169-0.031 0.2189-0.011 0.038-0.032 0.086-0.031 0.125 0 0.035 0.058 0.1419 0.094 0.1879 0.044 0.056 0.10299 0.096 0.15598 0.1559 0.087 0.109 0.15498 0.2359 0.21897 0.3749 0.017 0.037-0.016 0.077 0 0.1249-0.029 0.2239-0.10298 0.3769-0.24997 0.6247-0.069 0.08-0.15798 0.15-0.15598 0.2499-5e-3 0.2399 0.13599 0.3928 0.12499 0.6247-0.024 0.3118 0.024 0.3328 0 0.4997 0.10499 0.053 0.031 0.2329 0 0.3439-0.045 0.1319-0.1 0.1619-0.12499 0.2499 0.071 0.031 0.17098 0.019 0.24997 0 0 0 0.096 0.4008 0.094 0.4058-0.8069 0.7967-1.8188 1.3874-2.9376 1.7182-0.54993 0.1329-0.71291 0.1329-0.96888 0.1879-0.33395 0.055-0.68291 0.094-1.0309 0.094-0.24296 0-0.48293-0.01-0.71891-0.031-0.18197-0.018-0.35395-0.062-0.53093-0.094-0.053-0.01-0.10398-0.02-0.15598-0.031-0.16298-0.055-0.35095-0.088-0.49994-0.1249-0.16997-0.048-0.33495-0.096-0.49993-0.156 0.014-0.013 0.027-0.011 0.031-0.031 9e-3 -0.04 2e-3 -0.062 0-0.1249 0.015-0.065 0.08-0.058 0.094-0.1249-0.028-0.048-0.083-0.038-0.12498-0.063-0.041-0.024-0.068-0.074-0.063-0.125 0.07-0.029 0.19997 0.066 0.24996-0.031 0.025-0.046-0.034-0.1409 0-0.1879 0.023-0.031 0.16898-0.055 0.21898-0.063 0.071-0.012 0.14798-0.01 0.18797-0.031 0.044-0.029 0.10099-0.105 0.094-0.188-4e-3 -0.039-0.033-0.059-0.063-0.094-0.025-0.029-0.013-0.066-0.031-0.094-0.031-0.047-0.08-0.058-0.094-0.1249 0.096-0.019 0.23597 0.1019 0.37496 0.063 0.066-0.019 0.15698-0.188 0.18797-0.2499 0.01-0.019-0.01-0.04 0-0.063 0.012-0.026 0.059-0.049 0.063-0.063 0.01-0.036-8e-3 -0.071 0-0.094 0.024-0.068 0.085-0.075 0.12498-0.125 0.03-0.038 0.065-0.087 0.094-0.1249 0.031-0.041 0.042-0.089 0.063-0.125 0.02-0.1219-0.06-0.2059-0.031-0.3128 0.032-0.12 0.19598-0.165 0.31296-0.2189 0.04-0.019 0.092-0.05 0.12499-0.063 0.08-0.028 0.17598-0.036 0.24997-0.063 0.12498-0.046 0.15698-0.1669 0.21897-0.2809 0.029-0.054 0.057-0.1179 0.063-0.1559 5e-3 -0.035-7e-3 -0.053 0-0.094 6e-3 -0.04 0.02-0.081 0.031-0.1248 0.014-0.058 0.031-0.1539 0.031-0.2189 0-0.053-0.029-0.078-0.031-0.1249-9e-3 -0.173 0.061-0.218 0.12498-0.3129 0.032-0.047 0.04-0.091 0.063-0.125 0.10799-0.1609 0.29497-0.2259 0.28097-0.4688-5e-3 -0.08-0.035-0.2558-0.094-0.2808-0.034-0.015-0.10699-0.011-0.15598-0.031-0.15798-0.059-0.27397-0.2689-0.43795-0.2809-0.035 0-0.055 0.031-0.094 0.031-0.065 0-0.14698-0.053-0.21897-0.063-0.046-0.01-0.12898 0.013-0.15598 0-0.042-0.02-0.029-0.1019-0.063-0.1249-0.027-0.018-0.084-0.015-0.12498-0.031-0.066-0.025-0.11199-0.056-0.18798-0.063-0.023-1e-3 -0.067 0-0.094 0-0.042-0.01-0.086-0.04-0.12498-0.063-0.048-0.029-0.074-0.052-0.094-0.094 0.044-0.1439-0.096-0.1669-0.12498-0.2499-0.014-0.039 0.013-0.09 0-0.1249-0.017-0.05-0.071-0.084-0.12499-0.125-0.097-0.074-0.17398-0.1389-0.31296-0.1559-0.061-0.01-0.14498 0-0.21897 0-0.078-0.01-0.16098-0.058-0.21897-0.125-0.056-0.065-0.076-0.1249-0.12499-0.1559-0.047-0.03-0.12398-0.031-0.15598-0.063-0.014-0.014-0.017-0.031-0.031-0.063-0.023-0.048-0.061-0.098-0.031-0.156-0.053-0.027-0.035 0.072-0.094 0.063-0.052-0.074-0.10099-0.115-0.21897-0.094-0.054 0.01-0.093 0.06-0.15598 0.063-0.052 0-0.088-0.053-0.15598-0.063-0.052-0.01-0.11999 0.036-0.15598 0.031-0.057-0.011-0.073-0.059-0.12499-0.094-0.038-0.025-0.10398-0.095-0.12498-0.094-0.067 0-0.12598 0.1429-0.21897 0.094-0.045-0.057 0.085-0.071 0.031-0.125-0.04-0.041-0.061 0.01-0.094 0.031-0.037 0.025-0.084 0.047-0.12499 0.063-0.092 0.034-0.14698 0.025-0.21897 0.063-0.066 0.034-0.087 0.088-0.12499 0.156-0.031 0.056-0.079 0.1529-0.12498 0.1559-0.056 0-0.10599-0.072-0.15598-0.094-0.15298-0.066-0.24797 0.03-0.37495 0.031-0.11799 0-0.28697-0.1709-0.28097-0.2808 4e-3 -0.067 0.054-0.166 0.063-0.2499 6e-3 -0.066 0.062-0.127 0.063-0.1879 1e-3 -0.081-0.13499-0.147-0.18798-0.156-0.12498-0.023-0.29496 0.061-0.43794 0-0.027-0.045 0.047-0.081 0.063-0.1249 9e-3 -0.025-9e-3 -0.034 0-0.063 0.016-0.042 0.074-0.08 0.094-0.1249 0.015-0.034 0.016-0.082 0.031-0.125 0.017-0.049 0.059-0.091 0.063-0.1249 5e-3 -0.045-0.027-0.095-0.063-0.125-0.11098 0.01-0.18697 0-0.24997 0.031-0.14398 0.066-0.10598 0.2659-0.24997 0.3129-0.05 0.016-0.13298 0.021-0.18797 0.031-0.047 0.01-0.10699 0.032-0.15598 0.031-0.058-1e-3 -0.15298-0.057-0.18798-0.094-9e-3 -0.01-0.024-0.036-0.031-0.063 2e-3 -0.01-2e-3 -0.021 0-0.031 0.046-0.2229 0.093-0.4438 0.15598-0.6557 3e-3 -0.01-3e-3 -0.022 0-0.031 0.042-0.1389 0.10298-0.2699 0.15598-0.4058 0.013-0.01 0.019-0.023 0.031-0.031 0.077-0.053 0.15598-0.1189 0.24997-0.1249 0.057 0 0.16398 0.02 0.21897 0.031 0.05 0.01 0.082 0.059 0.12499 0.063 0.12298 0.01 0.14898-0.1029 0.24997-0.1559 0.10398 0.015 0.15598-0.01 0.24996 0 0.064 0.01 0.13799 0.09 0.18798 0.094 0.042 0 0.053-0.069 0.094-0.063 0.04 0.01 0.11898 0.1079 0.12498 0.1559 7e-3 0.06-0.048 0.122-0.031 0.1879 0.063 0.064 0.19097 0.056 0.28096 0.094 0.059-0.048 9e-3 -0.118 0-0.1879-2e-3 -0.031 4e-3 -0.066 0-0.094-6e-3 -0.048-0.031-0.084-0.031-0.1249-1e-3 -0.1899 0.15398-0.2999 0.28096-0.3749 0.055-0.033 0.10799-0.069 0.15598-0.094 0.067-0.034 0.1-0.063 0.15598-0.094 0.10099-0.057 0.20198-0.092 0.28097-0.1559 0.037-0.086-4e-3 -0.1959 0-0.2809 0.037-0.022 0.055 0 0.094 0 0.061-0.013 0.09-0.091 0.12499-0.1249 0.02-0.02 0.069-0.043 0.094-0.063 0.061-0.048 0.072-0.104 0.12498-0.125 0.019-0.01 0.064-0.017 0.094-0.031 0.04-0.011 0.092-0.04 0.15598-0.063 0.042-0.014 0.13998-0.015 0.15598-0.031 0.02-0.02-6e-3 -0.095 0-0.1249 0.032-0.151 0.27196-0.168 0.40595-0.2189 0.094-0.036 0.17798-0.114 0.28096-0.094-0.02 0.072-0.10998 0.038-0.094 0.1249 0.023 0.121 0.17598-0.013 0.21898-0.031 0.081-0.034 0.23697-0.055 0.34395-0.094 0.094-0.034 0.24497-0.08 0.15598-0.1879-0.074 0-0.092 0.066-0.15598 0.094-0.044 0.01-0.056-0.027-0.094-0.031-0.036 0-0.057 0.038-0.094 0.031-0.037-0.01-0.088-0.082-0.094-0.1249-0.015-0.111 0.10999-0.136 0.15598-0.2189-0.03-0.101-0.16598-0.024-0.24997-0.063 9e-3 -0.06 0.055-0.1139 0.12499-0.1249 0.057-0.01 0.18497 0.01 0.21897 0.031 0.02 0.017 0 0.066 0.031 0.094 0.034 0.031 0.081 0.01 0.12499 0 0.016-0.076-0.10599-0.043-0.094-0.094 0.09-0.059 0.26497-0.016 0.37495-0.031 0.063-0.01 0.13099-0.062 0.18798-0.094 0.054-0.03 0.099-0.081 0.15598-0.031 0.016 0.054-0.032 0.066-0.063 0.094-0.10199 0.091-0.20198 0.2069-0.28097 0.3128 0.049 0.048 0.13599 0.022 0.21898 0.031 0.032 0 0.06 0.025 0.094 0.031 0.04 0.01 0.094-0.012 0.12499 0 0.056 0.014 0.07 0.094 0.12498 0.094 0.091 0 0.083-0.125 0.031-0.1879 0.016-0.063 0.053-0.08 0.031-0.125-0.041-0.082-0.21097 0.014-0.21897-0.094-5e-3 -0.067 0.07-0.075 0.094-0.125-0.011-0.1289 0.10598-0.1349 0.094-0.2499-6e-3 -0.048-0.06-0.049-0.094-0.094-0.017-0.023-0.01-0.076-0.031-0.094-0.07-0.059-0.20997-0.044-0.21897-0.1559-4e-3 -0.066 0.01-0.115 0-0.1879-9e-3 -0.067-0.066-0.2679-0.12498-0.2809-0.075-0.016-0.12899 0.1139-0.21898 0.1559-0.049 0.023-0.13898 0.04-0.18797 0.031-0.032-0.01-0.089-0.032-0.094-0.094-6e-3 -0.07 0.05-0.082 0.063-0.1558-0.011-0.044-0.051-0.029-0.094-0.063-0.049-0.037-0.091-0.1159-0.15598-0.1249-0.033 0-0.093 0.029-0.12498 0.031-0.06 0-0.10599-0.015-0.15598-0.031 0.021-0.01 0.041-0.024 0.063-0.031 0.12198-0.042 0.24997-0.059 0.37495-0.094 0.022-0.01 0.041-0.025 0.063-0.031 0.031 0.033 0.056 0.1029 0.094 0.1249 0.025 0.014 0.063-0.01 0.094 0 0.098 0.03 0.17398 0.085 0.28097 0.063 0.037-0.065-0.074-0.074-0.031-0.125 0.072 0.01 0.13198 0.04 0.18798 0.063 0.077-0.056 0.12798-0.066 0.12498-0.1559-1e-3 -0.046-0.062-0.063-0.094-0.094 0.063-0.011 0.12399-0.022 0.18798-0.031 5e-3 0.017 0.021 0.03 0.031 0.031 0.038 0.01 0.16498-0.051 0.18797-0.063 4e-3 0-6e-3 -0.027 0-0.031 0.25297-0.027 0.52094-0.031 0.7809-0.031m-2.4997 0.4688c-0.023 0.043-0.047 0.079-0.094 0.094 0.012 0.065-0.084 0.1049-0.094 0.1558-6e-3 0.035-2e-3 0.094 0 0.125 0.02 0.3189-0.25096 0.4768-0.56293 0.4688-0.061 0.058-0.029 0.1699-0.063 0.2499-0.028 0.067-0.11998 0.1309-0.18797 0.1249-0.05 0-0.12499-0.079-0.12499-0.1249 0-0.057 0.081-0.091 0.031-0.156 7e-3 -0.044 0.10598-0.086 0.094-0.1559-0.012-0.074-0.096-0.019-0.18798-0.031-0.052-0.01-0.13298-0.037-0.18798-0.063 0.10099-0.067 0.20498-0.126 0.31296-0.188 0.094-0.056 0.18498-0.1049 0.28097-0.1559 0.25197-0.1269 0.52193-0.2438 0.7809-0.3437m5.3743 0.7495c-0.027 0-0.04 0.018-0.063 0.031-0.051 0.031-0.054 0.079-0.094 0.094-0.054 0.021-0.11698 0.01-0.12498 0.063-6e-3 0.041 0.033 0.055 0.031 0.094-0.02 0.049-0.053 0.066-0.063 0.1249 0.068 0.11 0.22897-0.01 0.31296-0.031 0.038-0.011 0.073 0 0.094-0.031 0.023-0.035 0.013-0.105 0.031-0.156 0.019-0.056 0.069-0.043 0.063-0.094-6e-3 -0.05-0.10599-0.102-0.18797-0.094m-7.3121 0.7807c0.061 0.016 0.19597 0.1929 0.063 0.2499-0.013 0.01-0.18698 0.036-0.21897 0.031-0.046-0.01-0.078-0.086-0.12499-0.094-0.092-0.016-0.21797 0.101-0.28096 0 0.016-0.059 0.086-0.043 0.15598-0.063 0.12498-0.034 0.29796-0.1529 0.40595-0.1249m0.24996 0.3128c0.031 0 0.056 0.059 0.094 0.063 0.036 0 0.072-0.036 0.094-0.031 0.056 0.015 0.084 0.115 0.031 0.156-0.044 0-0.061-0.037-0.094-0.031-0.091 0.016-0.11999 0.1929-0.18798 0.1879-0.064-0.01-0.096-0.1409-0.031-0.1879 2e-3 -0.04-0.033-0.054-0.031-0.094 0.02-0.025 0.072-0.066 0.12498-0.063m-0.31296 0.031c0.019 1e-3 0.024 0 0.031 0-9e-3 0.071-0.039 0.091-0.094 0.125-0.095 0.057-0.15698 0.1279-0.18797 0.2499-9e-3 0.036-0.11099 0.1339-0.15598 0.1249-0.10599-0.022 0.038-0.2199 0.063-0.2499 0.027-0.033 0.062-0.056 0.094-0.094 0.03-0.037 0.033-0.105 0.063-0.125 0.032-0.022 0.13198-0.033 0.18797-0.031m9.4988 0.031c0.048 0.013 0.058 0.069 0.094 0.094 0.027 0.018 0.064 0.012 0.094 0.031 0.035 0.022 0.054 0.06 0.094 0.094 0.056 0.047 0.13998 0.088 0.21897 0.125 0.016 0.01 0.044 0.023 0.063 0.031 0.055 0.071 0.10399 0.1449 0.15598 0.2189 6e-3 0.04 0.012 0.099 0.031 0.1249 0.052 0.071 0.13098 0.1319 0.18798 0.2189-1e-3 0.083 0.036 0.133 0.094 0.1559 0.073 0.124 0.14898 0.2479 0.21897 0.3748 0.029 0.058 0.035 0.1289 0.063 0.1879-0.021 0-0.043 0.01-0.063 0-0.066-0.116-0.40895-0.1389-0.43795 0.031-0.013 0.075 0.049 0.1749-0.063 0.1879-0.071 0.01-0.15298-0.073-0.24997-0.094-0.04-0.01-0.094 0.014-0.12498 0-0.073-0.025-0.062-0.1119-0.12498-0.1559-0.036-0.025-0.12999-0.056-0.18798-0.063h-0.094c-0.045-0.01-0.11798-0.01-0.15598-0.031-0.036-0.022-0.11599-0.062-0.12498-0.094-0.014-0.049 0.09-0.1139 0.094-0.1558 2e-3 -0.031-0.023-0.045-0.031-0.094-5e-3 -0.029 6e-3 -0.074 0-0.094-0.01-0.034-0.071-0.062-0.12499-0.063-0.048 0-0.084 0.03-0.12498 0.031-0.059 1e-3 -0.17698-0.037-0.24997-0.031-0.044 0-0.084 0.028-0.12499 0.031-0.11598 0.01-0.19097-0.01-0.28096 0-0.066 0-0.18898 0.034-0.24997 0.063-0.031 0.014-0.054 0.043-0.094 0.063-0.018 0.01-0.039 0.021-0.063 0.031-0.038 0.017-0.089 0.053-0.12498 0.063-0.052 0.013-0.12399 0-0.21898 0-0.068 0-0.18697-0.014-0.18797-0.094-1e-3 -0.1229 0.22697-0.072 0.34396-0.094 0.044-0.01 0.073-0.063 0.12498-0.094 0.025-0.015 0.039-0.015 0.063-0.031 0.04-0.028 0.11898-0.093 0.12498-0.1249 6e-3 -0.03-0.035-0.072-0.031-0.094 5e-3 -0.028 0.057-0.058 0.094-0.094 0.056-0.055 0.087-0.1199 0.15598-0.1559 0.047-0.025 0.13499-0.024 0.15599-0.063 5e-3 -0.043-1e-3 -0.055 0-0.094 0.029-0.027 0.038-0.058 0.063-0.063 0.072-0.016 0.13498 0.035 0.21897 0.031 0.036 0 0.086-0.01 0.12498-0.031 0.033-0.022 0.062-0.045 0.094-0.063 0.035-0.018 0.051-0.059 0.094-0.063 0.10499-0.01 0.17098 0.1239 0.21897 0.1879 0.04 0.053 0.15299 0.1189 0.21898 0.1559 0.037 0.021 0.084 0.045 0.12498 0.063 0.087 0.039 0.24697 0.1649 0.24997 0.2499 2e-3 0.042-0.038 0.054-0.031 0.094 0.066 0.011 0.12298-0.059 0.12498-0.1249 1e-3 -0.041-0.039-0.05-0.031-0.094 0.031-0.066 0.14798-0.01 0.18798-0.031-7e-3 -0.075-0.12398-0.086-0.18798-0.1249-0.034-0.021-0.058-0.048-0.094-0.063-0.052-0.021-0.11598-0.032-0.15598-0.063-0.038-0.029-0.057-0.08-0.094-0.1249-0.054-0.064-0.15798-0.073-0.12498-0.2189 0.016-0.022 0.037-0.069 0.063-0.063m-8.8119 0.2189h0.094c0.034 1e-3 0.08-0.018 0.094 0-0.022 0.088-0.21197 0.063-0.28096 0.031 4e-3 -0.033 0.05-0.027 0.094-0.031m-0.31296 0.156c0.023 0 0.039-0.01 0.063 0-0.062 0.052-0.14398 0.092-0.24997 0.1249-0.051 0.016-0.11598 0.025-0.12498-0.031-0.011-0.069 0.047-0.056 0.094-0.063 0.058-0.01 0.14999-0.029 0.21898-0.031m8.6869 0c-0.043 0.014-0.066 0.1129 0 0.1249 0.031-0.018 0.039-0.068 0.031-0.1249-0.017-0.018-0.017 0-0.031 0m-0.031 0.1879c-0.021 0.01-0.04 0.01-0.063 0.031 1e-3 0.075 0.015 0.1229 0 0.1879 0.043 0.082 0.13398 0.026 0.15598-0.031 0.026-0.1389-0.03-0.2049-0.094-0.1879m0.43795 0.3748c0.049 0.08 0.14098 0.137 0.24997 0.1559 0.04-0.03 0.044-0.1049 0.063-0.1559-0.047 1e-3 -0.097 0-0.15598 0-0.059 0-0.12198-0.028-0.15598 0m-11.687 2.6867c0.16398-0.01 0.21197 0.2159 0.34395 0.2809 0.033 0.017 0.082 0.022 0.12499 0.031 0.035 0.01 0.061 0.02 0.094 0.031 0.071 0.024 0.16198 0.01 0.21897 0.031 0.085 0.038 0.14598 0.2069 0.21897 0.2499 4e-3 0.043-0.013 0.093 0 0.1249 0.035 0.047 0.099 0.064 0.15598 0.094 0.068 0.037 0.092 0.1269 0.15598 0.1559 0.022 0.01 0.059-0.01 0.094 0 0.088 0.027 0.11199 0.1468 0.18798 0.1248 0.05-0.014 0.055-0.078 0.063-0.1248 0.033-0.036 0.074-0.093 0.12498-0.094 0.083 0 0.095 0.075 0.12499 0.1559 0.017 0.046 0.051 0.1079 0.063 0.1559 0.021 0.083 0.017 0.3249 0 0.3748-0.021 0.061-0.10599 0.089-0.15598 0.156-0.024 0.031-0.044 0.071-0.063 0.094-0.032 0.04-0.069 0.057-0.094 0.094-0.014 0.021-0.018 0.066-0.031 0.094-0.04 0.085-0.096 0.148-0.063 0.2499 0.014 0.042 0.062 0.076 0.063 0.125 0 0.058-0.11498 0.093-0.12498 0.1559-7e-3 0.047 0.048 0.126 0.063 0.1879 0.011 0.047 0.097 0.094 0.12498 0.125 0.047 0.053 0.082 0.1209 0.12499 0.1879 0.085 0.1299 0.13598 0.2799 0.21897 0.4058 0.043 0.066 0.12698 0.119 0.15598 0.1879 0.015 0.035-0.014 0.094 0 0.125 0.048 0.1079 0.26597 0.2279 0.37495 0.2809 0.051 0.025 0.10999 0 0.15598 0.031 0.071 0.039 0.21398 0.1569 0.24997 0.2189 0.032 0.056 0.047 0.1929 0.063 0.2808 0.021 0.117-5e-3 0.2169 0 0.3439 4e-3 0.069 0.03 0.1189 0.031 0.1879 0 0.024 1e-3 0.07 0 0.094-2e-3 0.083 7e-3 0.1659 0 0.2498-4e-3 0.046-3e-3 0.087 0 0.125 4e-3 0.041 0.028 0.057 0.031 0.094 2e-3 0.039-0.035 0.095-0.031 0.125 9e-3 0.084 0.077 0.1419 0.094 0.2189 0.013 0.061 0.039 0.2079 0.031 0.2809-5e-3 0.039-0.025 0.083-0.031 0.1249-4e-3 0.033 5e-3 0.062 0 0.094-6e-3 0.047-0.034 0.081-0.031 0.1249 6e-3 0.09 0.08 0.16 0.094 0.2499 5e-3 0.03-1e-3 0.065 0 0.094 1e-3 0.027 0.023 0.038 0.031 0.063-0.26297-0.1499-0.50894-0.3178-0.74991-0.4997-0.22897-0.173-0.45094-0.3639-0.65592-0.5628l-0.031-0.031c-0.20698-0.2039-0.41395-0.4278-0.59393-0.6557-0.10398-0.1319-0.21797-0.2669-0.31296-0.4058-0.056-0.083-0.10399-0.1639-0.15598-0.2499-0.032-0.051-0.063-0.104-0.094-0.1559-0.089-0.153-0.17297-0.3078-0.24997-0.4687-0.049-0.101-0.081-0.2079-0.12498-0.3129-0.10499-0.2479-0.20497-0.4888-0.28096-0.7497-0.054-0.1849-0.086-0.3708-0.12499-0.5627-0.03-0.146-0.073-0.2889-0.094-0.4378-0.011-0.081-0.023-0.168-0.031-0.2499-0.024-0.2349-0.031-0.4768-0.031-0.7186 0-0.3019 0.026-0.5837 0.063-0.8746 1e-3 -0.01-1e-3 -0.021 0-0.031 0.063 0 0.14899-0.092 0.21898-0.094m2.6877 0.7497c0.064-0.029 0.084 0.117 0.031 0.125-0.05 0.01-0.08-0.102-0.031-0.125" color="#eff0f1"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <g transform="matrix(3 0 0 3 -1274.1 -1586.4)" fill="#232629"> + <rect class="ColorScheme-Text" x="383.46" y="518.13" width="0" height="11" color="#eff0f1"/> + <path class="ColorScheme-Text" d="m432.72 528.79c-0.31896 0-0.62792 0.026-0.93788 0.063-0.30396 0.036-0.61392 0.087-0.90589 0.1559-0.094 0.022-0.18497 0.067-0.28096 0.094-0.084 0.023-0.16698 0.037-0.24997 0.063-0.10499 0.033-0.21397 0.059-0.31296 0.094-0.10699 0.038-0.20697 0.083-0.31296 0.1249-0.20597 0.083-0.39695 0.182-0.59393 0.2809-0.071 0.036-0.14898 0.056-0.21897 0.094-0.22997 0.1209-0.44094 0.2629-0.65592 0.4058-0.082 0.055-0.16997 0.098-0.24996 0.1559-0.033 0.024-0.061 0.038-0.094 0.063-0.094 0.071-0.19098 0.1418-0.28097 0.2188-0.10698 0.089-0.20997 0.1869-0.31296 0.2809-0.032 0.03-0.062 0.064-0.094 0.094l-0.031 0.031c-0.016 0.016-0.015 0.047-0.031 0.063-0.20997 0.2039-0.43894 0.3988-0.62492 0.6247-5e-3 0.01 5e-3 0.025 0 0.031-0.18098 0.2199-0.34296 0.4478-0.49994 0.6877-0.021 0.032-0.042 0.061-0.063 0.094-0.015 0.024-0.047 0.037-0.063 0.063-0.06 0.098-0.10099 0.209-0.15598 0.3129-0.018 0.033-0.045 0.061-0.063 0.094-0.075 0.1459-0.14998 0.2898-0.21897 0.4378-4e-3 0.01 4e-3 0.023 0 0.031-0.11699 0.2528-0.22198 0.5136-0.31296 0.7805-0.019 0.053-0.045 0.103-0.063 0.156-3e-3 0.01 3e-3 0.022 0 0.031-0.02 0.062-0.044 0.125-0.063 0.188-0.073 0.2568-0.13998 0.5137-0.18798 0.7806-0.034 0.1919-0.074 0.3968-0.094 0.5938-0.027 0.2648-0.031 0.5417-0.031 0.8125 0 0.4038 0.036 0.7996 0.094 1.1875 6e-3 0.041-7e-3 0.085 0 0.1249 0.044 0.2659 0.11798 0.5248 0.18798 0.7807 0.026 0.096 0.064 0.1859 0.094 0.2809 0.04 0.1289 0.079 0.2489 0.12499 0.3748 0.077 0.2119 0.15598 0.4218 0.24997 0.6246 0.05 0.106 0.10198 0.2099 0.15598 0.3129 0.15198 0.2919 0.31496 0.5747 0.49993 0.8436 0.016 0.024 0.046 0.039 0.063 0.063 0.19797 0.2809 0.39395 0.5597 0.62492 0.8126 0.04 0.044 0.084 0.082 0.12498 0.125 0.04 0.042 0.084 0.084 0.12499 0.1249 0.21397 0.2139 0.45094 0.4048 0.68791 0.5938 0.30596 0.2438 0.62892 0.4587 0.96888 0.6556 0.012 0.01 0.019 0.024 0.031 0.031 0.053 0.03 0.10299 0.065 0.15598 0.094 0.31596 0.156 0.69192 0.3249 0.93788 0.4378 0.10999 0.042 0.23098 0.057 0.34396 0.094 0.053 0.018 0.10299 0.046 0.15598 0.063 0.13598 0.041 0.26797 0.09 0.40595 0.1249 0.042 0.011 0.083 0.021 0.12499 0.031 0.29196 0.069 0.60192 0.1209 0.90588 0.1559 0.30896 0.036 0.61792 0.063 0.93788 0.063 0.33996 0 0.67092-0.021 0.99988-0.063 0.36495-0.048 0.68091-0.1239 0.99987-0.1879 1.6978-0.4358 3.1616-1.4213 4.2185-2.7487 0.028-0.035 0.067-0.058 0.094-0.094 9e-3 -0.012 0.022-0.02 0.031-0.031 0.014-0.018 0.018-0.044 0.031-0.063 0.62292-0.8246 1.0769-1.7801 1.3438-2.8117 0.056-0.2169 0.11799-0.4318 0.15598-0.6557 5e-3 -0.03-5e-3 -0.063 0-0.094 6e-3 -0.04 0.025-0.079 0.031-0.125 6e-3 -0.043 0.026-0.082 0.031-0.1249h-0.031c0.044-0.3289 0.094-0.6587 0.094-0.9996 0-0.5517-0.05-1.1034-0.15598-1.6242-9e-3 -0.043-0.022-0.082-0.031-0.1249-0.046-0.2079-0.12398-0.4229-0.18798-0.6248-3e-3 -0.01 3e-3 -0.022 0-0.031-0.012-0.038-0.018-0.056-0.031-0.094-0.039-0.119-0.081-0.2579-0.12498-0.3748-0.012-0.032-0.018-0.064-0.031-0.094-0.043-0.109-0.10799-0.2059-0.15598-0.3128-2e-3 0 2e-3 -0.026 0-0.031-0.025-0.054-0.068-0.1029-0.094-0.1559-0.098-0.2029-0.19797-0.3998-0.31296-0.5937-0.058-0.098-0.094-0.2169-0.15598-0.3129-0.024-0.036-0.069-0.058-0.094-0.094-0.067-0.099-0.14698-0.185-0.21897-0.2809-0.08-0.1-0.13999-0.2159-0.21898-0.3129-5e-3 -0.01 5e-3 -0.025 0-0.031-0.17197-0.2089-0.36995-0.4028-0.56292-0.5937-0.093-0.092-0.18398-0.1939-0.28097-0.2809-0.028-0.025-0.065-0.038-0.094-0.063-0.20897-0.1819-0.42994-0.3398-0.65592-0.4996-0.055-0.038-0.10098-0.088-0.15598-0.125-0.07-0.046-0.14798-0.081-0.21897-0.1249-0.13498-0.084-0.26597-0.174-0.40595-0.2499-0.12298-0.067-0.24797-0.127-0.37495-0.1879-0.21397-0.102-0.43195-0.198-0.65592-0.2809-0.26596-0.099-0.53393-0.1799-0.8129-0.2499-0.24496-0.062-0.49693-0.118-0.7499-0.1559-0.39695-0.061-0.8049-0.094-1.2188-0.094m0 0.9996c0.29896 0 0.58493 0.027 0.87489 0.063 0.17998 0.023 0.35496 0.058 0.53093 0.094h0.031c0.16598 0.035 0.33796 0.079 0.49994 0.1249 0.096 0.027 0.18698 0.063 0.28097 0.094 0.17197 0.057 0.33395 0.1169 0.49993 0.1879 0.19398 0.08 0.37896 0.1528 0.56293 0.2498-0.031 0.01-0.063 0.021-0.094 0.031-0.047 0.017-0.11298 0.096-0.12498 0.1249-0.02 0.048 5e-3 0.115 0 0.188 0.038 0.017 0.06 0.089 0.12498 0.1249 0.025 0.014 0.041-0.01 0.063 0 0.038 0.021 0.07 0.087 0.063 0.1249-0.011 0.055-0.088 0.022-0.12498 0.063 6e-3 0.078-0.043 0.105-0.063 0.1559 0.012 0.033 0.057 0.024 0.063 0.063-7e-3 0.043-0.079 0.049-0.063 0.094 0.072 0.056 0.15098-0.022 0.21897-0.031 0.14898-0.019 0.28297 0.041 0.37495-0.031-0.012-0.071 0.10099-0.092 0.094-0.1559-6e-3 -0.048-0.09-0.061-0.12498-0.094-0.019-0.018-0.04-0.059-0.063-0.094-0.026-0.04-0.064-0.087-0.094-0.125-0.039-0.052-0.12498-0.1169-0.12498-0.1559 1e-3 -0.045 0.052-0.063 0.063-0.125-0.012-0.057-0.11699 0-0.12499-0.063 2e-3 -0.019 0.021-0.051 0.031-0.063 0.14998 0.082 0.29796 0.1789 0.43795 0.2809 0.032 0.021 0.062 0.041 0.094 0.063 0.10798 0.081 0.20697 0.17 0.31296 0.2499-0.067 0.012-0.10099 0.09-0.15598 0.156-0.038 0.046-0.099 0.1009-0.15598 0.1249-0.028 0.012-0.068-0.016-0.094 0-0.037 0.025-0.051 0.096-0.094 0.125-0.031 0.021-0.12399 0.094-0.15598 0.094-0.038 1e-3 -0.098-0.04-0.12499-0.031-0.04 0.013-0.017 0.077-0.063 0.094-0.088 0.031-0.24997-0.069-0.28096 0.063 0.038 0.076 0.15298 0.051 0.21897 0.094 0.042 0.026 0.11399 0.143 0.12498 0.1879 0.01 0.038 0.015 0.179 0 0.2189-0.041 0.106-0.15898 0.097-0.28096 0.094-0.034-1e-3 -0.063 0-0.094 0-0.20697-0.014-0.40695-0.085-0.49994 0.063 7e-3 0.1129 0.025 0.1829 0 0.2808-0.018 0.072-0.097 0.125-0.094 0.188 2e-3 0.032 0.055 0.082 0.063 0.1249 5e-3 0.023-0.011 0.073 0 0.094 0.034 0.066 0.12699-0.01 0.18798 0 0.059 0.01 0.12598 0.1209 0.12498 0.1879-1e-3 0.046-0.033 0.1119-0.063 0.1559-0.058 0.089-0.16698 0.077-0.24997 0.1249-0.07 0.039-0.084 0.1189-0.12498 0.1879-0.044 0.074-0.081 0.1109-0.063 0.2189-0.06 0.1179-0.12598 0.1939-0.24997 0.2499-0.037 0.017-0.092 0.039-0.12498 0.063-0.027 0.019-0.056 0.051-0.094 0.094-0.047 0.052-0.1 0.085-0.12499 0.125-0.019 0.031-0.01 0.084-0.031 0.1249-0.029 0.056-0.088 0.1-0.12498 0.1559-0.017 0.026-0.043 0.059-0.063 0.094-0.042 0.077-0.10099 0.1509-0.094 0.2189 7e-3 0.066 0.089 0.068 0.094 0.1249 4e-3 0.032-0.033 0.059-0.031 0.094 1e-3 0.051 0.027 0.086 0.031 0.1249 0.01 0.099-0.044 0.12-0.063 0.188-9e-3 0.032 8e-3 0.068 0 0.094-0.016 0.05-0.093 0.098-0.094 0.156-1e-3 0.042 0.059 0.097 0.063 0.1559 2e-3 0.04-0.038 0.057-0.031 0.094 0.014 0.073 0.16198 0.162 0.21897 0.2189 0.075 0.075 0.15498 0.139 0.18798 0.219 0.027 0.067 0.041 0.1678 0.094 0.2188 0.039 0.037 0.10598 0.054 0.15598 0.094 0.047 0.036 0.10698 0.055 0.15598 0.094 0.081 0.064 0.18297 0.1969 0.31296 0.1879 0.068-0.01 0.14198-0.05 0.21897-0.063 0.079-0.014 0.16998-0.039 0.24997-0.031 0.061 0.01 0.12398 0.066 0.18797 0.063 0.067 0 0.14299-0.061 0.21898-0.094 0.13198-0.057 0.33896-0.1529 0.53093-0.1249 0.14598 0.021 0.14898 0.2169 0.24997 0.2809 0.11798 0.01 0.21897-0.054 0.31296-0.031 0.07 0.017 0.14898 0.1319 0.15598 0.1879 7e-3 0.058-0.054 0.121-0.063 0.1559-0.018 0.078-0.017 0.169-0.031 0.2189-0.011 0.038-0.032 0.086-0.031 0.125 0 0.035 0.058 0.1419 0.094 0.1879 0.044 0.056 0.10299 0.096 0.15598 0.1559 0.087 0.109 0.15498 0.2359 0.21897 0.3749 0.017 0.037-0.016 0.077 0 0.1249-0.029 0.2239-0.10298 0.3769-0.24997 0.6247-0.069 0.08-0.15798 0.15-0.15598 0.2499-5e-3 0.2399 0.13599 0.3928 0.12499 0.6247-0.024 0.3118 0.024 0.3328 0 0.4997 0.10499 0.053 0.031 0.2329 0 0.3439-0.045 0.1319-0.1 0.1619-0.12499 0.2499 0.071 0.031 0.17098 0.019 0.24997 0 0 0 0.096 0.4008 0.094 0.4058-0.8069 0.7967-1.8188 1.3874-2.9376 1.7182-0.54993 0.1329-0.71291 0.1329-0.96888 0.1879-0.33395 0.055-0.68291 0.094-1.0309 0.094-0.24296 0-0.48293-0.01-0.71891-0.031-0.18197-0.018-0.35395-0.062-0.53093-0.094-0.053-0.01-0.10398-0.02-0.15598-0.031-0.16298-0.055-0.35095-0.088-0.49994-0.1249-0.16997-0.048-0.33495-0.096-0.49993-0.156 0.014-0.013 0.027-0.011 0.031-0.031 9e-3 -0.04 2e-3 -0.062 0-0.1249 0.015-0.065 0.08-0.058 0.094-0.1249-0.028-0.048-0.083-0.038-0.12498-0.063-0.041-0.024-0.068-0.074-0.063-0.125 0.07-0.029 0.19997 0.066 0.24996-0.031 0.025-0.046-0.034-0.1409 0-0.1879 0.023-0.031 0.16898-0.055 0.21898-0.063 0.071-0.012 0.14798-0.01 0.18797-0.031 0.044-0.029 0.10099-0.105 0.094-0.188-4e-3 -0.039-0.033-0.059-0.063-0.094-0.025-0.029-0.013-0.066-0.031-0.094-0.031-0.047-0.08-0.058-0.094-0.1249 0.096-0.019 0.23597 0.1019 0.37496 0.063 0.066-0.019 0.15698-0.188 0.18797-0.2499 0.01-0.019-0.01-0.04 0-0.063 0.012-0.026 0.059-0.049 0.063-0.063 0.01-0.036-8e-3 -0.071 0-0.094 0.024-0.068 0.085-0.075 0.12498-0.125 0.03-0.038 0.065-0.087 0.094-0.1249 0.031-0.041 0.042-0.089 0.063-0.125 0.02-0.1219-0.06-0.2059-0.031-0.3128 0.032-0.12 0.19598-0.165 0.31296-0.2189 0.04-0.019 0.092-0.05 0.12499-0.063 0.08-0.028 0.17598-0.036 0.24997-0.063 0.12498-0.046 0.15698-0.1669 0.21897-0.2809 0.029-0.054 0.057-0.1179 0.063-0.1559 5e-3 -0.035-7e-3 -0.053 0-0.094 6e-3 -0.04 0.02-0.081 0.031-0.1248 0.014-0.058 0.031-0.1539 0.031-0.2189 0-0.053-0.029-0.078-0.031-0.1249-9e-3 -0.173 0.061-0.218 0.12498-0.3129 0.032-0.047 0.04-0.091 0.063-0.125 0.10799-0.1609 0.29497-0.2259 0.28097-0.4688-5e-3 -0.08-0.035-0.2558-0.094-0.2808-0.034-0.015-0.10699-0.011-0.15598-0.031-0.15798-0.059-0.27397-0.2689-0.43795-0.2809-0.035 0-0.055 0.031-0.094 0.031-0.065 0-0.14698-0.053-0.21897-0.063-0.046-0.01-0.12898 0.013-0.15598 0-0.042-0.02-0.029-0.1019-0.063-0.1249-0.027-0.018-0.084-0.015-0.12498-0.031-0.066-0.025-0.11199-0.056-0.18798-0.063-0.023-1e-3 -0.067 0-0.094 0-0.042-0.01-0.086-0.04-0.12498-0.063-0.048-0.029-0.074-0.052-0.094-0.094 0.044-0.1439-0.096-0.1669-0.12498-0.2499-0.014-0.039 0.013-0.09 0-0.1249-0.017-0.05-0.071-0.084-0.12499-0.125-0.097-0.074-0.17398-0.1389-0.31296-0.1559-0.061-0.01-0.14498 0-0.21897 0-0.078-0.01-0.16098-0.058-0.21897-0.125-0.056-0.065-0.076-0.1249-0.12499-0.1559-0.047-0.03-0.12398-0.031-0.15598-0.063-0.014-0.014-0.017-0.031-0.031-0.063-0.023-0.048-0.061-0.098-0.031-0.156-0.053-0.027-0.035 0.072-0.094 0.063-0.052-0.074-0.10099-0.115-0.21897-0.094-0.054 0.01-0.093 0.06-0.15598 0.063-0.052 0-0.088-0.053-0.15598-0.063-0.052-0.01-0.11999 0.036-0.15598 0.031-0.057-0.011-0.073-0.059-0.12499-0.094-0.038-0.025-0.10398-0.095-0.12498-0.094-0.067 0-0.12598 0.1429-0.21897 0.094-0.045-0.057 0.085-0.071 0.031-0.125-0.04-0.041-0.061 0.01-0.094 0.031-0.037 0.025-0.084 0.047-0.12499 0.063-0.092 0.034-0.14698 0.025-0.21897 0.063-0.066 0.034-0.087 0.088-0.12499 0.156-0.031 0.056-0.079 0.1529-0.12498 0.1559-0.056 0-0.10599-0.072-0.15598-0.094-0.15298-0.066-0.24797 0.03-0.37495 0.031-0.11799 0-0.28697-0.1709-0.28097-0.2808 4e-3 -0.067 0.054-0.166 0.063-0.2499 6e-3 -0.066 0.062-0.127 0.063-0.1879 1e-3 -0.081-0.13499-0.147-0.18798-0.156-0.12498-0.023-0.29496 0.061-0.43794 0-0.027-0.045 0.047-0.081 0.063-0.1249 9e-3 -0.025-9e-3 -0.034 0-0.063 0.016-0.042 0.074-0.08 0.094-0.1249 0.015-0.034 0.016-0.082 0.031-0.125 0.017-0.049 0.059-0.091 0.063-0.1249 5e-3 -0.045-0.027-0.095-0.063-0.125-0.11098 0.01-0.18697 0-0.24997 0.031-0.14398 0.066-0.10598 0.2659-0.24997 0.3129-0.05 0.016-0.13298 0.021-0.18797 0.031-0.047 0.01-0.10699 0.032-0.15598 0.031-0.058-1e-3 -0.15298-0.057-0.18798-0.094-9e-3 -0.01-0.024-0.036-0.031-0.063 2e-3 -0.01-2e-3 -0.021 0-0.031 0.046-0.2229 0.093-0.4438 0.15598-0.6557 3e-3 -0.01-3e-3 -0.022 0-0.031 0.042-0.1389 0.10298-0.2699 0.15598-0.4058 0.013-0.01 0.019-0.023 0.031-0.031 0.077-0.053 0.15598-0.1189 0.24997-0.1249 0.057 0 0.16398 0.02 0.21897 0.031 0.05 0.01 0.082 0.059 0.12499 0.063 0.12298 0.01 0.14898-0.1029 0.24997-0.1559 0.10398 0.015 0.15598-0.01 0.24996 0 0.064 0.01 0.13799 0.09 0.18798 0.094 0.042 0 0.053-0.069 0.094-0.063 0.04 0.01 0.11898 0.1079 0.12498 0.1559 7e-3 0.06-0.048 0.122-0.031 0.1879 0.063 0.064 0.19097 0.056 0.28096 0.094 0.059-0.048 9e-3 -0.118 0-0.1879-2e-3 -0.031 4e-3 -0.066 0-0.094-6e-3 -0.048-0.031-0.084-0.031-0.1249-1e-3 -0.1899 0.15398-0.2999 0.28096-0.3749 0.055-0.033 0.10799-0.069 0.15598-0.094 0.067-0.034 0.1-0.063 0.15598-0.094 0.10099-0.057 0.20198-0.092 0.28097-0.1559 0.037-0.086-4e-3 -0.1959 0-0.2809 0.037-0.022 0.055 0 0.094 0 0.061-0.013 0.09-0.091 0.12499-0.1249 0.02-0.02 0.069-0.043 0.094-0.063 0.061-0.048 0.072-0.104 0.12498-0.125 0.019-0.01 0.064-0.017 0.094-0.031 0.04-0.011 0.092-0.04 0.15598-0.063 0.042-0.014 0.13998-0.015 0.15598-0.031 0.02-0.02-6e-3 -0.095 0-0.1249 0.032-0.151 0.27196-0.168 0.40595-0.2189 0.094-0.036 0.17798-0.114 0.28096-0.094-0.02 0.072-0.10998 0.038-0.094 0.1249 0.023 0.121 0.17598-0.013 0.21898-0.031 0.081-0.034 0.23697-0.055 0.34395-0.094 0.094-0.034 0.24497-0.08 0.15598-0.1879-0.074 0-0.092 0.066-0.15598 0.094-0.044 0.01-0.056-0.027-0.094-0.031-0.036 0-0.057 0.038-0.094 0.031-0.037-0.01-0.088-0.082-0.094-0.1249-0.015-0.111 0.10999-0.136 0.15598-0.2189-0.03-0.101-0.16598-0.024-0.24997-0.063 9e-3 -0.06 0.055-0.1139 0.12499-0.1249 0.057-0.01 0.18497 0.01 0.21897 0.031 0.02 0.017 0 0.066 0.031 0.094 0.034 0.031 0.081 0.01 0.12499 0 0.016-0.076-0.10599-0.043-0.094-0.094 0.09-0.059 0.26497-0.016 0.37495-0.031 0.063-0.01 0.13099-0.062 0.18798-0.094 0.054-0.03 0.099-0.081 0.15598-0.031 0.016 0.054-0.032 0.066-0.063 0.094-0.10199 0.091-0.20198 0.2069-0.28097 0.3128 0.049 0.048 0.13599 0.022 0.21898 0.031 0.032 0 0.06 0.025 0.094 0.031 0.04 0.01 0.094-0.012 0.12499 0 0.056 0.014 0.07 0.094 0.12498 0.094 0.091 0 0.083-0.125 0.031-0.1879 0.016-0.063 0.053-0.08 0.031-0.125-0.041-0.082-0.21097 0.014-0.21897-0.094-5e-3 -0.067 0.07-0.075 0.094-0.125-0.011-0.1289 0.10598-0.1349 0.094-0.2499-6e-3 -0.048-0.06-0.049-0.094-0.094-0.017-0.023-0.01-0.076-0.031-0.094-0.07-0.059-0.20997-0.044-0.21897-0.1559-4e-3 -0.066 0.01-0.115 0-0.1879-9e-3 -0.067-0.066-0.2679-0.12498-0.2809-0.075-0.016-0.12899 0.1139-0.21898 0.1559-0.049 0.023-0.13898 0.04-0.18797 0.031-0.032-0.01-0.089-0.032-0.094-0.094-6e-3 -0.07 0.05-0.082 0.063-0.1558-0.011-0.044-0.051-0.029-0.094-0.063-0.049-0.037-0.091-0.1159-0.15598-0.1249-0.033 0-0.093 0.029-0.12498 0.031-0.06 0-0.10599-0.015-0.15598-0.031 0.021-0.01 0.041-0.024 0.063-0.031 0.12198-0.042 0.24997-0.059 0.37495-0.094 0.022-0.01 0.041-0.025 0.063-0.031 0.031 0.033 0.056 0.1029 0.094 0.1249 0.025 0.014 0.063-0.01 0.094 0 0.098 0.03 0.17398 0.085 0.28097 0.063 0.037-0.065-0.074-0.074-0.031-0.125 0.072 0.01 0.13198 0.04 0.18798 0.063 0.077-0.056 0.12798-0.066 0.12498-0.1559-1e-3 -0.046-0.062-0.063-0.094-0.094 0.063-0.011 0.12399-0.022 0.18798-0.031 5e-3 0.017 0.021 0.03 0.031 0.031 0.038 0.01 0.16498-0.051 0.18797-0.063 4e-3 0-6e-3 -0.027 0-0.031 0.25297-0.027 0.52094-0.031 0.7809-0.031m-2.4997 0.4688c-0.023 0.043-0.047 0.079-0.094 0.094 0.012 0.065-0.084 0.1049-0.094 0.1558-6e-3 0.035-2e-3 0.094 0 0.125 0.02 0.3189-0.25096 0.4768-0.56293 0.4688-0.061 0.058-0.029 0.1699-0.063 0.2499-0.028 0.067-0.11998 0.1309-0.18797 0.1249-0.05 0-0.12499-0.079-0.12499-0.1249 0-0.057 0.081-0.091 0.031-0.156 7e-3 -0.044 0.10598-0.086 0.094-0.1559-0.012-0.074-0.096-0.019-0.18798-0.031-0.052-0.01-0.13298-0.037-0.18798-0.063 0.10099-0.067 0.20498-0.126 0.31296-0.188 0.094-0.056 0.18498-0.1049 0.28097-0.1559 0.25197-0.1269 0.52193-0.2438 0.7809-0.3437m5.3743 0.7495c-0.027 0-0.04 0.018-0.063 0.031-0.051 0.031-0.054 0.079-0.094 0.094-0.054 0.021-0.11698 0.01-0.12498 0.063-6e-3 0.041 0.033 0.055 0.031 0.094-0.02 0.049-0.053 0.066-0.063 0.1249 0.068 0.11 0.22897-0.01 0.31296-0.031 0.038-0.011 0.073 0 0.094-0.031 0.023-0.035 0.013-0.105 0.031-0.156 0.019-0.056 0.069-0.043 0.063-0.094-6e-3 -0.05-0.10599-0.102-0.18797-0.094m-7.3121 0.7807c0.061 0.016 0.19597 0.1929 0.063 0.2499-0.013 0.01-0.18698 0.036-0.21897 0.031-0.046-0.01-0.078-0.086-0.12499-0.094-0.092-0.016-0.21797 0.101-0.28096 0 0.016-0.059 0.086-0.043 0.15598-0.063 0.12498-0.034 0.29796-0.1529 0.40595-0.1249m0.24996 0.3128c0.031 0 0.056 0.059 0.094 0.063 0.036 0 0.072-0.036 0.094-0.031 0.056 0.015 0.084 0.115 0.031 0.156-0.044 0-0.061-0.037-0.094-0.031-0.091 0.016-0.11999 0.1929-0.18798 0.1879-0.064-0.01-0.096-0.1409-0.031-0.1879 2e-3 -0.04-0.033-0.054-0.031-0.094 0.02-0.025 0.072-0.066 0.12498-0.063m-0.31296 0.031c0.019 1e-3 0.024 0 0.031 0-9e-3 0.071-0.039 0.091-0.094 0.125-0.095 0.057-0.15698 0.1279-0.18797 0.2499-9e-3 0.036-0.11099 0.1339-0.15598 0.1249-0.10599-0.022 0.038-0.2199 0.063-0.2499 0.027-0.033 0.062-0.056 0.094-0.094 0.03-0.037 0.033-0.105 0.063-0.125 0.032-0.022 0.13198-0.033 0.18797-0.031m9.4988 0.031c0.048 0.013 0.058 0.069 0.094 0.094 0.027 0.018 0.064 0.012 0.094 0.031 0.035 0.022 0.054 0.06 0.094 0.094 0.056 0.047 0.13998 0.088 0.21897 0.125 0.016 0.01 0.044 0.023 0.063 0.031 0.055 0.071 0.10399 0.1449 0.15598 0.2189 6e-3 0.04 0.012 0.099 0.031 0.1249 0.052 0.071 0.13098 0.1319 0.18798 0.2189-1e-3 0.083 0.036 0.133 0.094 0.1559 0.073 0.124 0.14898 0.2479 0.21897 0.3748 0.029 0.058 0.035 0.1289 0.063 0.1879-0.021 0-0.043 0.01-0.063 0-0.066-0.116-0.40895-0.1389-0.43795 0.031-0.013 0.075 0.049 0.1749-0.063 0.1879-0.071 0.01-0.15298-0.073-0.24997-0.094-0.04-0.01-0.094 0.014-0.12498 0-0.073-0.025-0.062-0.1119-0.12498-0.1559-0.036-0.025-0.12999-0.056-0.18798-0.063h-0.094c-0.045-0.01-0.11798-0.01-0.15598-0.031-0.036-0.022-0.11599-0.062-0.12498-0.094-0.014-0.049 0.09-0.1139 0.094-0.1558 2e-3 -0.031-0.023-0.045-0.031-0.094-5e-3 -0.029 6e-3 -0.074 0-0.094-0.01-0.034-0.071-0.062-0.12499-0.063-0.048 0-0.084 0.03-0.12498 0.031-0.059 1e-3 -0.17698-0.037-0.24997-0.031-0.044 0-0.084 0.028-0.12499 0.031-0.11598 0.01-0.19097-0.01-0.28096 0-0.066 0-0.18898 0.034-0.24997 0.063-0.031 0.014-0.054 0.043-0.094 0.063-0.018 0.01-0.039 0.021-0.063 0.031-0.038 0.017-0.089 0.053-0.12498 0.063-0.052 0.013-0.12399 0-0.21898 0-0.068 0-0.18697-0.014-0.18797-0.094-1e-3 -0.1229 0.22697-0.072 0.34396-0.094 0.044-0.01 0.073-0.063 0.12498-0.094 0.025-0.015 0.039-0.015 0.063-0.031 0.04-0.028 0.11898-0.093 0.12498-0.1249 6e-3 -0.03-0.035-0.072-0.031-0.094 5e-3 -0.028 0.057-0.058 0.094-0.094 0.056-0.055 0.087-0.1199 0.15598-0.1559 0.047-0.025 0.13499-0.024 0.15599-0.063 5e-3 -0.043-1e-3 -0.055 0-0.094 0.029-0.027 0.038-0.058 0.063-0.063 0.072-0.016 0.13498 0.035 0.21897 0.031 0.036 0 0.086-0.01 0.12498-0.031 0.033-0.022 0.062-0.045 0.094-0.063 0.035-0.018 0.051-0.059 0.094-0.063 0.10499-0.01 0.17098 0.1239 0.21897 0.1879 0.04 0.053 0.15299 0.1189 0.21898 0.1559 0.037 0.021 0.084 0.045 0.12498 0.063 0.087 0.039 0.24697 0.1649 0.24997 0.2499 2e-3 0.042-0.038 0.054-0.031 0.094 0.066 0.011 0.12298-0.059 0.12498-0.1249 1e-3 -0.041-0.039-0.05-0.031-0.094 0.031-0.066 0.14798-0.01 0.18798-0.031-7e-3 -0.075-0.12398-0.086-0.18798-0.1249-0.034-0.021-0.058-0.048-0.094-0.063-0.052-0.021-0.11598-0.032-0.15598-0.063-0.038-0.029-0.057-0.08-0.094-0.1249-0.054-0.064-0.15798-0.073-0.12498-0.2189 0.016-0.022 0.037-0.069 0.063-0.063m-8.8119 0.2189h0.094c0.034 1e-3 0.08-0.018 0.094 0-0.022 0.088-0.21197 0.063-0.28096 0.031 4e-3 -0.033 0.05-0.027 0.094-0.031m-0.31296 0.156c0.023 0 0.039-0.01 0.063 0-0.062 0.052-0.14398 0.092-0.24997 0.1249-0.051 0.016-0.11598 0.025-0.12498-0.031-0.011-0.069 0.047-0.056 0.094-0.063 0.058-0.01 0.14999-0.029 0.21898-0.031m8.6869 0c-0.043 0.014-0.066 0.1129 0 0.1249 0.031-0.018 0.039-0.068 0.031-0.1249-0.017-0.018-0.017 0-0.031 0m-0.031 0.1879c-0.021 0.01-0.04 0.01-0.063 0.031 1e-3 0.075 0.015 0.1229 0 0.1879 0.043 0.082 0.13398 0.026 0.15598-0.031 0.026-0.1389-0.03-0.2049-0.094-0.1879m0.43795 0.3748c0.049 0.08 0.14098 0.137 0.24997 0.1559 0.04-0.03 0.044-0.1049 0.063-0.1559-0.047 1e-3 -0.097 0-0.15598 0-0.059 0-0.12198-0.028-0.15598 0m-11.687 2.6867c0.16398-0.01 0.21197 0.2159 0.34395 0.2809 0.033 0.017 0.082 0.022 0.12499 0.031 0.035 0.01 0.061 0.02 0.094 0.031 0.071 0.024 0.16198 0.01 0.21897 0.031 0.085 0.038 0.14598 0.2069 0.21897 0.2499 4e-3 0.043-0.013 0.093 0 0.1249 0.035 0.047 0.099 0.064 0.15598 0.094 0.068 0.037 0.092 0.1269 0.15598 0.1559 0.022 0.01 0.059-0.01 0.094 0 0.088 0.027 0.11199 0.1468 0.18798 0.1248 0.05-0.014 0.055-0.078 0.063-0.1248 0.033-0.036 0.074-0.093 0.12498-0.094 0.083 0 0.095 0.075 0.12499 0.1559 0.017 0.046 0.051 0.1079 0.063 0.1559 0.021 0.083 0.017 0.3249 0 0.3748-0.021 0.061-0.10599 0.089-0.15598 0.156-0.024 0.031-0.044 0.071-0.063 0.094-0.032 0.04-0.069 0.057-0.094 0.094-0.014 0.021-0.018 0.066-0.031 0.094-0.04 0.085-0.096 0.148-0.063 0.2499 0.014 0.042 0.062 0.076 0.063 0.125 0 0.058-0.11498 0.093-0.12498 0.1559-7e-3 0.047 0.048 0.126 0.063 0.1879 0.011 0.047 0.097 0.094 0.12498 0.125 0.047 0.053 0.082 0.1209 0.12499 0.1879 0.085 0.1299 0.13598 0.2799 0.21897 0.4058 0.043 0.066 0.12698 0.119 0.15598 0.1879 0.015 0.035-0.014 0.094 0 0.125 0.048 0.1079 0.26597 0.2279 0.37495 0.2809 0.051 0.025 0.10999 0 0.15598 0.031 0.071 0.039 0.21398 0.1569 0.24997 0.2189 0.032 0.056 0.047 0.1929 0.063 0.2808 0.021 0.117-5e-3 0.2169 0 0.3439 4e-3 0.069 0.03 0.1189 0.031 0.1879 0 0.024 1e-3 0.07 0 0.094-2e-3 0.083 7e-3 0.1659 0 0.2498-4e-3 0.046-3e-3 0.087 0 0.125 4e-3 0.041 0.028 0.057 0.031 0.094 2e-3 0.039-0.035 0.095-0.031 0.125 9e-3 0.084 0.077 0.1419 0.094 0.2189 0.013 0.061 0.039 0.2079 0.031 0.2809-5e-3 0.039-0.025 0.083-0.031 0.1249-4e-3 0.033 5e-3 0.062 0 0.094-6e-3 0.047-0.034 0.081-0.031 0.1249 6e-3 0.09 0.08 0.16 0.094 0.2499 5e-3 0.03-1e-3 0.065 0 0.094 1e-3 0.027 0.023 0.038 0.031 0.063-0.26297-0.1499-0.50894-0.3178-0.74991-0.4997-0.22897-0.173-0.45094-0.3639-0.65592-0.5628l-0.031-0.031c-0.20698-0.2039-0.41395-0.4278-0.59393-0.6557-0.10398-0.1319-0.21797-0.2669-0.31296-0.4058-0.056-0.083-0.10399-0.1639-0.15598-0.2499-0.032-0.051-0.063-0.104-0.094-0.1559-0.089-0.153-0.17297-0.3078-0.24997-0.4687-0.049-0.101-0.081-0.2079-0.12498-0.3129-0.10499-0.2479-0.20497-0.4888-0.28096-0.7497-0.054-0.1849-0.086-0.3708-0.12499-0.5627-0.03-0.146-0.073-0.2889-0.094-0.4378-0.011-0.081-0.023-0.168-0.031-0.2499-0.024-0.2349-0.031-0.4768-0.031-0.7186 0-0.3019 0.026-0.5837 0.063-0.8746 1e-3 -0.01-1e-3 -0.021 0-0.031 0.063 0 0.14899-0.092 0.21898-0.094m2.6877 0.7497c0.064-0.029 0.084 0.117 0.031 0.125-0.05 0.01-0.08-0.102-0.031-0.125" color="#eff0f1"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/promt.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(0 -284.3)"> + <g transform="matrix(-.19072 -.33461 -.33375 .19519 93.139 237.87)" stroke-width="0"> + <rect transform="matrix(1 0 -.5 .86603 0 0)" x="144.46" y="305.93" width="21.801" height="11.238" fill="#3d82f7"/> + <rect transform="matrix(-.5 -.86603 1 0 0 0)" x="-305.93" y="-150.9" width="21.801" height="11.238" fill="#fcd04b"/> + <rect transform="matrix(-.5 .86603 -.5 -.86603 0 0)" x="150.9" y="-144.46" width="21.801" height="11.238" fill="#0fa961"/> + </g> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g fill="#eff0f1"> + <g transform="matrix(1.4999 0 0 1.4999 -1.5874 -434.52)"> + <text transform="scale(-.98995 1.0102)" x="-5.522522" y="293.75308" fill="#eff0f1" font-family="sans-serif" font-size="7.3368px" letter-spacing="0px" stroke-width=".18342" word-spacing="0px" style="line-height:1.25" xml:space="preserve"><tspan x="-5.522522" y="293.75308" fill="#eff0f1" stroke-width=".18342">R</tspan></text> + </g> + <text transform="matrix(.9842 -.27225 0 1.0161 0 0)" x="7.796083" y="12.504968" font-family="sans-serif" font-size="9.0243px" letter-spacing="0px" stroke-width=".22561" word-spacing="0px" style="line-height:1.25" xml:space="preserve"><tspan x="7.796083" y="12.504968" fill="#eff0f1" stroke-width=".22561">Y</tspan></text> + <path d="m6.9673 8.202v-0.88194h-0.88194v-0.88194h0.88194v-0.88194l1.7639 1.3229-1.7639 1.3229" stroke-width=".01378"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"> + <g fill="#232629"> + <g transform="matrix(1.4999 0 0 1.4999 -1.5874 -434.52)"> + <text transform="scale(-.98995 1.0102)" x="-5.522522" y="293.75308" fill="#232629" font-family="sans-serif" font-size="7.3368px" letter-spacing="0px" stroke-width=".18342" word-spacing="0px" style="line-height:1.25" xml:space="preserve"><tspan x="-5.522522" y="293.75308" fill="#232629" stroke-width=".18342">R</tspan></text> + </g> + <text transform="matrix(.9842 -.27225 0 1.0161 0 0)" x="7.796083" y="12.504968" font-family="sans-serif" font-size="9.0243px" letter-spacing="0px" stroke-width=".22561" word-spacing="0px" style="line-height:1.25" xml:space="preserve"><tspan x="7.796083" y="12.504968" fill="#232629" stroke-width=".22561">Y</tspan></text> + <path d="m6.9673 8.202v-0.88194h-0.88194v-0.88194h0.88194v-0.88194l1.7639 1.3229-1.7639 1.3229" stroke-width=".01378"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(-326 -534.36)"> + <rect x="273.38" y="518.48" width="0" height="14.668" fill="#04896a"/> + <rect x="280.34" y="541.05" width="0" height="14.668" fill="#16907d"/> + <rect x="282.16" y="539.99" width="0" height="14.668" fill="#6c7a89"/> + <path d="m337.79 548.13-2.3091-2.259 0.0273-0.027c1.5818-1.746 2.7091-3.753 3.3727-5.877h2.6636v-1.8h-6.3636v-1.8h-1.8182v1.8h-6.3636v1.791h10.155c-0.60909 1.737-1.5727 3.384-2.8818 4.824-0.84545-0.927-1.5454-1.944-2.1-3.015h-1.8182c0.66363 1.467 1.5727 2.853 2.7091 4.104l-4.6273 4.518 1.2909 1.278 4.5454-4.5 2.8273 2.799zm5.1182-4.563h-1.8182l-4.0909 10.8h1.8182l1.0182-2.7h4.3182l1.0273 2.7h1.8182zm-2.3818 6.3 1.4727-3.897 1.4727 3.897z" fill="#eff0f1" stroke-width="1.17"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g transform="translate(-326 -534.36)"> + <rect x="273.38" y="518.48" width="0" height="14.668" fill="#04896a"/> + <rect x="280.34" y="541.05" width="0" height="14.668" fill="#16907d"/> + <rect x="282.16" y="539.99" width="0" height="14.668" fill="#6c7a89"/> + <path d="m337.79 548.13-2.3091-2.259 0.0273-0.027c1.5818-1.746 2.7091-3.753 3.3727-5.877h2.6636v-1.8h-6.3636v-1.8h-1.8182v1.8h-6.3636v1.791h10.155c-0.60909 1.737-1.5727 3.384-2.8818 4.824-0.84545-0.927-1.5454-1.944-2.1-3.015h-1.8182c0.66363 1.467 1.5727 2.853 2.7091 4.104l-4.6273 4.518 1.2909 1.278 4.5454-4.5 2.8273 2.799zm5.1182-4.563h-1.8182l-4.0909 10.8h1.8182l1.0182-2.7h4.3182l1.0273 2.7h1.8182zm-2.3818 6.3 1.4727-3.897 1.4727 3.897z" fill="#232629" stroke-width="1.17"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path class="ColorScheme-Text" d="m15 4-12 3.418v1.043 4.5391 0.58203l1 0.28516v2.1328 0.30078l6 1.6992v-1-1.4238l5 1.4238v-1.043-10.914-1.043zm4.0293 0.42773-0.77148 0.63086c1.1373 1.7722 1.7419 3.8337 1.7422 5.9395-4e-3 2.1039-0.61142 4.1625-1.75 5.9316l0.7832 0.64258c1.2816-1.9532 1.9651-4.2381 1.9668-6.5742-4e-3 -2.3352-0.6885-4.6186-1.9707-6.5703zm-5.0293 0.90039v10.344l-10-2.8477v-4.6484l10-2.8477zm2.6895 1.0156-0.78125 0.63867c0.71179 1.2188 1.0885 2.6042 1.0918 4.0156-2e-3 1.4119-0.3784 2.798-1.0898 4.0176l0.78125 0.64062c0.85323-1.4042 1.3058-3.0151 1.3086-4.6582-4e-3 -1.6419-0.45732-3.2515-1.3105-4.6543zm-14.689 1.3594-1 0.28516v0.011719 1 3 1 0.011719l1 0.28516v-0.29688-0.74609-3.5078-0.74609-0.29688zm3 6.4492 4 1.1387v1.4258l-4-1.1328v-1.4316z" fill="currentColor"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path class="ColorScheme-Text" d="m15 4-12 3.418v1.043 4.5391 0.58203l1 0.28516v2.1328 0.30078l6 1.6992v-1-1.4238l5 1.4238v-1.043-10.914-1.043zm4.0293 0.42773-0.77148 0.63086c1.1373 1.7722 1.7419 3.8337 1.7422 5.9395-4e-3 2.1039-0.61142 4.1625-1.75 5.9316l0.7832 0.64258c1.2816-1.9532 1.9651-4.2381 1.9668-6.5742-4e-3 -2.3352-0.6885-4.6186-1.9707-6.5703zm-5.0293 0.90039v10.344l-10-2.8477v-4.6484l10-2.8477zm2.6895 1.0156-0.78125 0.63867c0.71179 1.2188 1.0885 2.6042 1.0918 4.0156-2e-3 1.4119-0.3784 2.798-1.0898 4.0176l0.78125 0.64062c0.85323-1.4042 1.3058-3.0151 1.3086-4.6582-4e-3 -1.6419-0.45732-3.2515-1.3105-4.6543zm-14.689 1.3594-1 0.28516v0.011719 1 3 1 0.011719l1 0.28516v-0.29688-0.74609-3.5078-0.74609-0.29688zm3 6.4492 4 1.1387v1.4258l-4-1.1328v-1.4316z" fill="#232629"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" viewBox="0 0 352 352" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path d="m272 336v-64h64v-64h-64v-64l-128 96 128 96" fill="#eff0f1"/> + <path d="m80 208v-64h-64v-64h64v-64l128 96-128 96" fill="#eff0f1"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" viewBox="0 0 352 352" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path d="m272 336v-64h64v-64h-64v-64l-128 96 128 96" fill="#232629"/> + <path d="m80 208v-64h-64v-64h64v-64l128 96-128 96" fill="#232629"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-dark.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" viewBox="0 0 352 352" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path d="m122.67 336v-106.67h-106.67v-106.67h106.67v-106.67l213.33 160-213.33 160" fill="#eff0f1" stroke-width="1.6667"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-light.svg Sun Apr 05 16:19:12 2020 +0200 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="22" height="22" version="1.1" viewBox="0 0 352 352" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style type="text/css">.ColorScheme-Text { + color:#eff0f1; + }</style> + </defs> + <path d="m122.67 336v-106.67h-106.67v-106.67h106.67v-106.67l213.33 160-213.33 160" fill="#232629" stroke-width="1.6667"/> +</svg>