From c53af94c3696c73049286dddeefdd9a420271e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgars=20Egl=C4=ABtis?= <37242620+eglitise@users.noreply.github.com> Date: Mon, 24 Apr 2023 22:50:25 +0300 Subject: [PATCH] fix: rename Appium Desktop -> Appium Inspector everywhere (#790) * chore: rename Appium Desktop -> Appium Inspector * chore: replace data-appium-desktop with -inspector * chore: use more unique key for app title --- .github/ISSUE_TEMPLATE.md | 8 +- .gitignore | 1 - app/main/auto-updater/update-checker.js | 4 +- app/main/menus.js | 6 +- .../components/ErrorBoundary/ErrorBoundary.js | 2 +- app/renderer/lib/webview-helpers.js | 16 +- assets/locales/de/translation.json | 15 +- assets/locales/en/translation.json | 15 +- assets/locales/es-ES/translation.json | 15 +- assets/locales/fa/translation.json | 13 +- assets/locales/fr/translation.json | 15 +- assets/locales/hi/translation.json | 9 +- assets/locales/it/translation.json | 15 +- assets/locales/ja/translation.json | 15 +- assets/locales/kn/translation.json | 9 +- assets/locales/ko/translation.json | 15 +- assets/locales/ml-IN/translation.json | 15 +- assets/locales/pa-IN/translation.json | 15 +- assets/locales/pl/translation.json | 15 +- assets/locales/pt-BR/translation.json | 13 +- assets/locales/pt-PT/translation.json | 15 +- assets/locales/ru/translation.json | 13 +- assets/locales/te/translation.json | 5 +- assets/locales/zh-CN/translation.json | 15 +- assets/locales/zh-TW/translation.json | 15 +- .../update-checker.integration-test.js | 2 +- test/unit/mocks/appium.page.original.html | 1420 ++++++++--------- test/unit/util-specs.js | 28 +- 28 files changed, 862 insertions(+), 882 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index d9cb47f6e9..940e961120 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,8 +1,8 @@ -## Appium or Appium Desktop? +## Appium or Appium Inspector? -You are reporting an issue at the Appium Desktop repository. Appium Desktop is a wrapper around Appium. If you are having trouble running tests, it is much more likely that the problem you are encountering is not a problem with Appium Desktop but with Appium. For that reason we require you to have tried your testcase with Appium CLI before reporting issues. Check the checkbox below to confirm that you have proven your issue does _not_ reproduce on Appium itself: +You are reporting an issue at the Appium Inspector repository. Appium Inspector is a wrapper around Appium. If you are having trouble running tests, it is much more likely that the problem you are encountering is not a problem with Appium Inspector but with Appium. For that reason we require you to have tried your testcase with Appium CLI before reporting issues. Check the checkbox below to confirm that you have proven your issue does _not_ reproduce on Appium itself: -- [ ] I have verified that my issue does not occur with Appium and should be investigated as an Appium Desktop issue +- [ ] I have verified that my issue does not occur with Appium and should be investigated as an Appium Inspector issue ## The problem @@ -10,7 +10,7 @@ _Replace this section with a description of your issue_ ## Environment -- I am running Appium Desktop version __. +- I am running Appium Inspector version __. - I am on (pick one): - [ ] Mac - [ ] Windows diff --git a/.gitignore b/.gitignore index 26128dfecd..f29e99e550 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,3 @@ Certificates.p12 .history junit-test-results.xml junit-testresults.xml -appium-desktop diff --git a/app/main/auto-updater/update-checker.js b/app/main/auto-updater/update-checker.js index ccb080b6fc..d66035d2c5 100644 --- a/app/main/auto-updater/update-checker.js +++ b/app/main/auto-updater/update-checker.js @@ -49,7 +49,7 @@ export function setUpAutoUpdater ({ let detail = i18n.t('updateDetails', {pubDate, notes: notes.replace('*', '\n*')}); if (env.NO_AUTO_UPDATE) { - detail += `\n\nhttps://www.github.com/appium/appium-desktop/releases/latest`; + detail += `\n\nhttps://www.github.com/appium/appium-inspector/releases/latest`; } @@ -99,7 +99,7 @@ export function setUpAutoUpdater ({ type: 'info', buttons: [i18n.t('OK')], message: i18n.t('No update available'), - detail: i18n.t('Appium Desktop is up-to-date'), + detail: i18n.t('Appium Inspector is up-to-date'), }); }); diff --git a/app/main/menus.js b/app/main/menus.js index 42cbebced1..82245197b0 100644 --- a/app/main/menus.js +++ b/app/main/menus.js @@ -19,7 +19,7 @@ function languageMenu () { function getShowAppInfoClickAction () { return () => { dialog.showMessageBox({ - title: i18n.t('appiumDesktop'), + title: i18n.t('appiumInspector'), message: i18n.t('showAppInfo', { appVersion: app.getVersion(), electronVersion: process.versions.electron, @@ -168,7 +168,7 @@ function macMenuHelp () { }, { label: i18n.t('Search Issues'), click () { - shell.openExternal('https://github.com/appium/appium-desktop/issues'); + shell.openExternal('https://github.com/appium/appium-inspector/issues'); } }, { label: i18n.t('Add Or Improve Translations'), @@ -340,7 +340,7 @@ function otherMenuHelp () { }, { label: i18n.t('Search Issues'), click () { - shell.openExternal('https://github.com/appium/appium-desktop/issues'); + shell.openExternal('https://github.com/appium/appium-inspector/issues'); } }, { label: i18n.t('Add Or Improve Translations'), diff --git a/app/renderer/components/ErrorBoundary/ErrorBoundary.js b/app/renderer/components/ErrorBoundary/ErrorBoundary.js index c0bff47de6..1d2332b55e 100644 --- a/app/renderer/components/ErrorBoundary/ErrorBoundary.js +++ b/app/renderer/components/ErrorBoundary/ErrorBoundary.js @@ -3,7 +3,7 @@ import { Alert } from 'antd'; import styles from './ErrorBoundary.css'; import { ALERT } from '../AntdTypes'; -const CREATE_ISSUE_URL = 'https://github.com/appium/appium-desktop/issues/new'; +const CREATE_ISSUE_URL = 'https://github.com/appium/appium-inspector/issues/new'; export default class ErrorBoundary extends React.Component { constructor (props) { diff --git a/app/renderer/lib/webview-helpers.js b/app/renderer/lib/webview-helpers.js index 0c7f275eb6..54b4c25c9a 100755 --- a/app/renderer/lib/webview-helpers.js +++ b/app/renderer/lib/webview-helpers.js @@ -54,10 +54,10 @@ export function setHtmlElementAttributes (obj) { Array.from(htmlElements).forEach((el) => { const rect = el.getBoundingClientRect(); - el.setAttribute('data-appium-desktop-width', Math.round(rect.width * dpr)); - el.setAttribute('data-appium-desktop-height', Math.round(rect.height * dpr)); - el.setAttribute('data-appium-desktop-x', Math.round(rect.left * dpr)); - el.setAttribute('data-appium-desktop-y', Math.round(webviewStatusAddressBarHeight + (rect.top * dpr))); + el.setAttribute('data-appium-inspector-width', Math.round(rect.width * dpr)); + el.setAttribute('data-appium-inspector-height', Math.round(rect.height * dpr)); + el.setAttribute('data-appium-inspector-x', Math.round(rect.left * dpr)); + el.setAttribute('data-appium-inspector-y', Math.round(webviewStatusAddressBarHeight + (rect.top * dpr))); }); } @@ -92,16 +92,16 @@ export function parseSource (source) { .removeAttr('height') .removeAttr('x') .removeAttr('y') - // remove all `data-appium-desktop-` prefixes so only the width|height|x|y are there + // remove all `data-appium-inspector-` prefixes so only the width|height|x|y are there .each(function () { const $el = $(this); ['width', 'height', 'x', 'y'].forEach((rectAttr) => { - if ($el.attr(`data-appium-desktop-${rectAttr}`)) { - $el.attr(rectAttr, $el.attr(`data-appium-desktop-${rectAttr}`)); + if ($el.attr(`data-appium-inspector-${rectAttr}`)) { + $el.attr(rectAttr, $el.attr(`data-appium-inspector-${rectAttr}`)); /* remove the old attribute */ - $el.removeAttr(`data-appium-desktop-${rectAttr}`); + $el.removeAttr(`data-appium-inspector-${rectAttr}`); } }); }); diff --git a/assets/locales/de/translation.json b/assets/locales/de/translation.json index 7232d3433e..5323cecc71 100644 --- a/assets/locales/de/translation.json +++ b/assets/locales/de/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Bearbeiten", "Redo": "Wiederholen", "Cut": "Ausschneiden", @@ -88,16 +88,16 @@ "presetAdded": "Your preset '{{presetName}}' has been added to the list in the Presets tab!", "datetimeFormat": "D.M.YYYY, HH:mm", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} ist verfügbar", + "appiumIsAvailable": "Appium Inspector {{name}} ist verfügbar", "updateIsBeingDownloaded": "Update is being downloaded now. You will be notified again when it is complete", - "updateIsDownloaded": "Appium Desktop {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Desktop to install and restart)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Inspector to install and restart)", "updateDownloadFailed": "Failed to download update. Reason: {{message}}", "OK": "OK", "Install Now": "Jetzt installieren", "Install Later": "Später installieren", "Update Download Started": "Update Download Started", "No update available": "Keine Aktualisierungen verfügbar", - "Appium Desktop is up-to-date": "Appium Desktop ist auf dem aktuellen Stand", + "Appium Inspector is up-to-date": "Appium Inspector ist auf dem aktuellen Stand", "Later": "Später", "Update Downloaded": "Das Update wurde heruntergeladen", "Could not download update": "Das Update konnte nicht heruntergeladen werden", @@ -133,7 +133,6 @@ "The server is stopped": "Der Server ist gestoppt", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Ungültiger Status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator-Strategie:", "selector": "Selektor:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tippen", "Gathering initial app source…": "Die Anfangsquelle des Programms wird gesammelt…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "Text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy-URL", diff --git a/assets/locales/en/translation.json b/assets/locales/en/translation.json index b1c714cd77..530459c964 100644 --- a/assets/locales/en/translation.json +++ b/assets/locales/en/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Portuguese (Brazil)", "it":"Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Edit", "Redo": "Redo", "Cut": "Cut", @@ -88,16 +88,16 @@ "presetAdded": "Your preset '{{presetName}}' has been added to the list in the Presets tab!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} is available", + "appiumIsAvailable": "Appium Inspector {{name}} is available", "updateIsBeingDownloaded": "Update is being downloaded now. You will be notified again when it is complete", - "updateIsDownloaded": "Appium Desktop {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Desktop to install and restart)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Inspector to install and restart)", "updateDownloadFailed": "Failed to download update. Reason: {{message}}", "OK": "OK", "Install Now": "Install Now", "Install Later": "Install Later", "Update Download Started": "Update Download Started", "No update available": "No update available", - "Appium Desktop is up-to-date": "Appium Desktop is up-to-date", + "Appium Inspector is up-to-date": "Appium Inspector is up-to-date", "Later": "Later", "Update Downloaded": "Update Downloaded", "Could not download update": "Could not download update", @@ -133,7 +133,6 @@ "The server is stopped": "The server is stopped", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Bad status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/assets/locales/es-ES/translation.json b/assets/locales/es-ES/translation.json index 114df84112..6c53146019 100644 --- a/assets/locales/es-ES/translation.json +++ b/assets/locales/es-ES/translation.json @@ -12,7 +12,7 @@ "te": "Télugu", "pt-BR": "Português (Brasil)", "it": "Español", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Editar", "Redo": "Rehacer", "Cut": "Cortar", @@ -88,16 +88,16 @@ "presetAdded": "¡Tu predefinido '{{presetName}}' ha sido añadido a la lista en la pestaña Predefinidos!", "datetimeFormat": "MMM Do YYYYY, h:mma", "updateDetails": "Fecha de lanzamiento: {{pubDate}}\n\nnotas: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} está disponible", + "appiumIsAvailable": "Appium Inspector {{name}} está disponible", "updateIsBeingDownloaded": "La actualización está siendo descargada ahora. Se le notificará de nuevo cuando esté completa", - "updateIsDownloaded": "Se ha descargado el Appium Desktop {{releaseName}}. Debe reiniciar para aplicar las actualizaciones (nota: puede tardar varios minutos para que Appium Desktop instale y reinicie)", + "updateIsDownloaded": "Se ha descargado el Appium Inspector {{releaseName}}. Debe reiniciar para aplicar las actualizaciones (nota: puede tardar varios minutos para que Appium Inspector instale y reinicie)", "updateDownloadFailed": "Error al descargar la actualización. Razón: {{message}}", "OK": "OK", "Install Now": "Instalar ahora", "Install Later": "Instalar más tarde", "Update Download Started": "Actualización descargando", "No update available": "No hay actualizaciones disponibles", - "Appium Desktop is up-to-date": "Appium Desktop está actualizado", + "Appium Inspector is up-to-date": "Appium Inspector está actualizado", "Later": "Más tarde", "Update Downloaded": "Actualización descargada", "Could not download update": "No se pudo descargar la actualización", @@ -133,7 +133,6 @@ "The server is stopped": "El servidor está detenido", "The server is waiting for all connections to close": "El servidor está esperando todas las conexiones para cerrar", "badStatus": "Estado erróneo: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop debe ejecutarse desde la carpeta Aplicaciones", "Move to Applications Folder": "Arrastrar a la carpeta Aplicaciones", "locatorStrategy": "Estrategia de localizador:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Las interacciones no están disponibles para este elemento", "usingXPathNotRecommended": "El uso de los localizadores XPath no es recomendado y puede llevar a pruebas frágiles. ¡Pide a tu equipo de desarrollo que proporcione a los localizadores de accesibilidad únicos en su lugar!", "usingSwitchContextRecommended": "Contexto(s) de vista web detectados; ciertos elementos sólo pueden ser accesibles después de cambiar al contexto de una vista web, que debe hacerse en un script de Appium. Ver http://appium.io/docs/es/writing-running-appium/web/hybrid/ para más información", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Recolectando código fuente inicial de la aplicación…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "Centro de datos de SauceLabs", "US": "EE. UU.", "EU": "UE", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "texto", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Clave de la API de Bitbar", - "willUseCurrentlyRunningServer": "Utilizará el servidor de Appium Desktop en ejecución", + "willUseCurrentlyRunningServer": "Utilizará el servidor de Appium Inspector en ejecución", "Name": "Nombre", "enterYourSessionId": "Introduce tu ID de sesión aquí", "Proxy URL": "URL del proxy", diff --git a/assets/locales/fa/translation.json b/assets/locales/fa/translation.json index 0d08b6c191..01eadfbadd 100644 --- a/assets/locales/fa/translation.json +++ b/assets/locales/fa/translation.json @@ -12,7 +12,7 @@ "te": "تلوگو", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "صفحه دسکتاپ", + "appiumInspector": "صفحه دسکتاپ", "Edit": "ویرایش", "Redo": "انجام مجدد", "Cut": "بُرش", @@ -88,16 +88,16 @@ "presetAdded": "\"{{presetName}}\" از پیش تعیین شده شما در برگه تنظیمات به لیست از پیش تعیین شده اضافه شده است!", "datetimeFormat": "MMM یا YYYY و یا h:mma", "updateDetails": "تاریخ انتشار: {{pubDate}}\n\nیادداشت انتشار: {{notes}}", - "appiumIsAvailable": "نرم‌افزار Appium Desktop {{name}} در دسترس است", + "appiumIsAvailable": "نرم‌افزار Appium Inspector {{name}} در دسترس است", "updateIsBeingDownloaded": "بروزرسانی دانلود شده است. هنگام تکمیل به شما اطلاع داده خواهد شد", - "updateIsDownloaded": "نرم‌افزار Appium Desktop {{releaseName}} دانلود شد. برای بروزرسانی باید سیستم را راه‌اندازی مجدد کنید (نکته: ممکن است چند دقیقه طول بکشد تا Appium Desktop نصب و راه‌اندازی مجدد شود)", + "updateIsDownloaded": "نرم‌افزار Appium Inspector {{releaseName}} دانلود شد. برای بروزرسانی باید سیستم را راه‌اندازی مجدد کنید (نکته: ممکن است چند دقیقه طول بکشد تا Appium Inspector نصب و راه‌اندازی مجدد شود)", "updateDownloadFailed": "دانلود بروزرسانی انجام نشد. دلیل: {{message}}", "OK": "موفق", "Install Now": "هم اکنون نصب کنید", "Install Later": "بعدا نصب کنید", "Update Download Started": "دانلود بروزرسانی شروع شد", "No update available": "بروزرسانی موجود نیست", - "Appium Desktop is up-to-date": "نرم‌افزار Appium Desktop بروز است", + "Appium Inspector is up-to-date": "نرم‌افزار Appium Inspector بروز است", "Later": "بعدا", "Update Downloaded": "بروزرسانی دانلود شد", "Could not download update": "امکان دانلود بروزرسانی وجود ندارد", @@ -133,7 +133,6 @@ "The server is stopped": "سرور متوقف شده است", "The server is waiting for all connections to close": "سرور منتظر بسته شدن تمام ارتباط هاست", "badStatus": "وضعیت بد: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "نرم‌افزار Appium Desktop باید از پوشه نرم‌افزار اجرا شود", "Move to Applications Folder": "انتقال به پوشه برنامه های کاربردی", "locatorStrategy": "استراتژی مکان یاب:", "selector": "گزینشگر (selector):", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "امکان تعامل با این عنصر در دسترس نیست", "usingXPathNotRecommended": "استفاده از مکان یاب XPath توصیه نمی شود و می تواند منجر به تست های شکننده شود. از تیم توسعه خود بخواهید به جای آن مکان یاب های دسترسی منحصر به فرد را ارائه دهند!", "usingSwitchContextRecommended": "زمینه(های) نمای وب شناسایی شد. برخی از عناصر ممکن است تنها پس از جابجایی به یک زمینه وب‌نما در دسترس باشند، که باید در یک اسکریپت Appium انجام شود. برای اطلاعات بیشتر http://appium.io/docs/en/writing-running-appium/web/hybrid/ را ببینید", - "usingWebviewContext": "استفاده از بازرس Webview در Appium Desktop در بازیابی و انتخاب عناصر DOM در مقایسه با استفاده از DevTools Chrome و Safari دقت کمتری دارد.", + "usingWebviewContext": "استفاده از بازرس Webview در Appium Inspector در بازیابی و انتخاب عناصر DOM در مقایسه با استفاده از DevTools Chrome و Safari دقت کمتری دارد.", "contextSwitcher": "در اینجا می توانید به یک زمینه متفاوت تغییر دهید. برای اطلاعات بیشتر http://appium.io/docs/en/writing-running-appium/web/hybrid/ را ببینید", "Tap": "ضربه", "Gathering initial app source…": "در حال جمع‌آوری منبع اولیه برنامه…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "مرکز داده SauceLabs", "US": "ایالات متحده", "EU": "اروپا", - "UP": "نرم افزار Appium Desktop از endpoint جدید Sauce Labs Unified Platform ایالات متحده به صورت پیشفرض استفاده خواهد کرد. اگر می خواهید از endpoint قدیمی ایالات متحده استفاده کنید، موارد زیر را انجام دهید: به تب 'Custom server' بروید، هاست ریموت 'ondemand.saucelabs.com' را اضافه کنید، پورت '433' را استفاده کنید، آدرس ریموت به صورت /wd/hub' باشد و در آخر 'SSL' را فعال کنید.", + "UP": "نرم افزار Appium Inspector از endpoint جدید Sauce Labs Unified Platform ایالات متحده به صورت پیشفرض استفاده خواهد کرد. اگر می خواهید از endpoint قدیمی ایالات متحده استفاده کنید، موارد زیر را انجام دهید: به تب 'Custom server' بروید، هاست ریموت 'ondemand.saucelabs.com' را اضافه کنید، پورت '433' را استفاده کنید، آدرس ریموت به صورت /wd/hub' باشد و در آخر 'SSL' را فعال کنید.", "proxyThroughSC": "پروکسی از طریق Selenium Relay قسمت Sauce Connect", "SSL": "SSL", "text": "متن", diff --git a/assets/locales/fr/translation.json b/assets/locales/fr/translation.json index a9a970d788..db00131ed4 100644 --- a/assets/locales/fr/translation.json +++ b/assets/locales/fr/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italien", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Modifier", "Redo": "Recommencer", "Cut": "Couper", @@ -88,16 +88,16 @@ "presetAdded": "Votre modèle '{{presetName}}' a été ajouté à la liste dans l'onglet Modèles !", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Date de sortie : {{pubDate}}\n\nNotes de sortie : {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} est disponible", + "appiumIsAvailable": "Appium Inspector {{name}} est disponible", "updateIsBeingDownloaded": "La mise à jour est en cours de téléchargement. Vous serez informé une fois terminée", - "updateIsDownloaded": "Appium Desktop {{releaseName}} a été téléchargé. Redémarrage requis pour appliquer les mises à jour (note : l'installation peut prendre plusieurs minutes)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} a été téléchargé. Redémarrage requis pour appliquer les mises à jour (note : l'installation peut prendre plusieurs minutes)", "updateDownloadFailed": "Échec du téléchargement de la mise à jour. Raison : {{message}}", "OK": "OK", "Install Now": "Installer maintenant", "Install Later": "Installer plus tard", "Update Download Started": "Mise à jour du téléchargement démarré", "No update available": "Aucune mise à jour disponible", - "Appium Desktop is up-to-date": "Appium Desktop est à jour", + "Appium Inspector is up-to-date": "Appium Inspector est à jour", "Later": "Plus tard", "Update Downloaded": "Mise à jour téléchargée", "Could not download update": "Impossible de télécharger la mise à jour", @@ -133,7 +133,6 @@ "The server is stopped": "The server is stopped", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Bad status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/assets/locales/hi/translation.json b/assets/locales/hi/translation.json index 6fa703e7a8..2d53a519ac 100644 --- a/assets/locales/hi/translation.json +++ b/assets/locales/hi/translation.json @@ -12,7 +12,7 @@ "te": "तेलुगु", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium डेस्कटॉप", + "appiumInspector": "Appium डेस्कटॉप", "Edit": "संपादित करें", "Redo": "फिर से करें", "Cut": "काटें", @@ -97,7 +97,7 @@ "Install Later": "बाद में इनस्टॉल करें", "Update Download Started": "अद्यतन डाउनलोड प्रारंभ", "No update available": "कोई अद्यतन उपलब्ध नहीं है", - "Appium Desktop is up-to-date": "Appium डेस्कटॉप अद्यतित है", + "Appium Inspector is up-to-date": "Appium डेस्कटॉप अद्यतित है", "Later": "बादमे", "Update Downloaded": "अद्यतन डाउनलोड किया गया", "Could not download update": "अपडेट डाउनलोड नहीं किया जा सका", @@ -133,7 +133,6 @@ "The server is stopped": "सर्वर बंद है", "The server is waiting for all connections to close": "सर्वर सभी कनेक्शन बंद होने का इंतजार कर रहा है", "badStatus": "खराब स्थिति: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium डेस्कटॉप एप्लीकेशन फ़ोल्डर से चलाया जाना चाहिए", "Move to Applications Folder": "एप्लिकेशन फ़ोल्डर में ले जाएं", "locatorStrategy": "लोकेटर कार्यनीति:", "selector": "चुननेवाला", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "इस तत्व के लिए सहभागिता उपलब्ध नहीं है", "usingXPathNotRecommended": "XPath लोकेटर का उपयोग करने की अनुशंसा नहीं की जाती है और इससे tests नाजुक हो सकते हैं। इसके बजाय अनूठा एक्सेसिबिलिटी लोकेटर उपलब्ध कराने के लिए अपनी डेवलपमेंट टीम से पूछें!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "टेप करें", "Gathering initial app source…": "प्रारंभिक एप्लिकेशन स्रोत प्राप्त कर रहा है...", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs डेटा सेंटर", "US": "अमेरीका", "EU": "यूरोपीय संघ", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "सॉस कनेक्ट के सेलेनियम रिले के माध्यम से प्रॉक्सी", "SSL": "SSL", "text": "टेक्स्ट", diff --git a/assets/locales/it/translation.json b/assets/locales/it/translation.json index dfedc69563..8563a21c8e 100644 --- a/assets/locales/it/translation.json +++ b/assets/locales/it/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Modifica", "Redo": "Ripeti", "Cut": "Taglia", @@ -88,16 +88,16 @@ "presetAdded": "La variabile predefinita '{{presetName}}' è stata aggiunta alla lista nella scheda Variabili predefinite!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Data di rilascio: {{pubDate}}\n\nNote di rilascio: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} è disponibile", + "appiumIsAvailable": "Appium Inspector {{name}} è disponibile", "updateIsBeingDownloaded": "L'aggiornamento è in fase di scaricamento. Sarai avvisato di nuovo quando sarà completato", - "updateIsDownloaded": "Appium Desktop {{releaseName}} è stato scaricato. È necessario riavviare l'app per applicare gli aggiornamenti (nota: potrebbero essere necessari alcuni minuti per installare e riavviare Appium desktop)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} è stato scaricato. È necessario riavviare l'app per applicare gli aggiornamenti (nota: potrebbero essere necessari alcuni minuti per installare e riavviare Appium Inspector)", "updateDownloadFailed": "Impossibile scaricare l'aggiornamento. Motivo: {{message}}", "OK": "OK", "Install Now": "Installa Ora", "Install Later": "Installa dopo", "Update Download Started": "Download dell'aggiornamento iniziato", "No update available": "Nessun aggiornamento disponibile", - "Appium Desktop is up-to-date": "Appium Desktop è aggiornato", + "Appium Inspector is up-to-date": "Appium Inspector è aggiornato", "Later": "Dopo", "Update Downloaded": "Aggiornamento scaricato", "Could not download update": "Impossibile scaricare l'aggiornamento", @@ -133,7 +133,6 @@ "The server is stopped": "Il server è stato arrestato", "The server is waiting for all connections to close": "Il server sta attendendo la chiusura di tutte le connessioni", "badStatus": "Stato errato: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop deve essere eseguito dalla cartella Applicazioni", "Move to Applications Folder": "Sposta nella cartella Applicazioni", "locatorStrategy": "Strategia di localizzazione:", "selector": "Selettore:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Le interazioni non sono disponibili per questo elemento", "usingXPathNotRecommended": "L'utilizzo di localizzatori XPath non è raccomandato e può portare a test fragili. Chiedi invece al tuo team di sviluppo di fornire localizzatori unici di accessibilità!", "usingSwitchContextRecommended": "Rilevato(i) contesto(i) Web; alcuni elementi potrebbero essere accessibili solo dopo il passaggio a un contesto Web, che deve essere fatto in uno script Appium. Per maggiori informazioni consultare http://appium.io/docs/en/writing-running-appium/web/hybrid/", - "usingWebviewContext": "Utilizzare l'inspector di Appium Desktop è meno accurato nel recupero e la selezione di elementi DOM in confronto all'uso degli strumenti per gli sviluppatori di Chrome e Safari.", + "usingWebviewContext": "Utilizzare l'inspector di Appium Inspector è meno accurato nel recupero e la selezione di elementi DOM in confronto all'uso degli strumenti per gli sviluppatori di Chrome e Safari.", "contextSwitcher": "Qui puoi passare a un contesto diverso. Vedi http://appium.io/docs/en/writing-running-appium/web/hybrid/ per maggiori informazioni", "Tap": "Tocco", "Gathering initial app source…": "Ottenendo il sorgente iniziale dell'app…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "Data Center di SauceLabs", "US": "US", "EU": "EU", - "UP": "Appium Desktop userà il nuovo Sauce Labs Unified Platform US endpoint come impostazione predefinita. Se si desidera utilizzare il vecchio endpoint degli Stati Uniti, procedere come segue: Vai alla scheda 'Server personalizzato', aggiungi 'ondemand.saucelabs.com' come host remoto, usa la porta '433', il percorso remoto è '/wd/hub' e infine abilita 'SSL'.", + "UP": "Appium Inspector userà il nuovo Sauce Labs Unified Platform US endpoint come impostazione predefinita. Se si desidera utilizzare il vecchio endpoint degli Stati Uniti, procedere come segue: Vai alla scheda 'Server personalizzato', aggiungi 'ondemand.saucelabs.com' come host remoto, usa la porta '433', il percorso remoto è '/wd/hub' e infine abilita 'SSL'.", "proxyThroughSC": "Proxy attraverso il relay selenium di Sauce Connect", "SSL": "SSL", "text": "testo", @@ -248,7 +247,7 @@ "LambdaTest Username": "Username di LambdaTest", "LambdaTest Access Key": "Access Key di LambdaTest", "Bitbar API Key": "API Key di Bitbar", - "willUseCurrentlyRunningServer": "Utilizzerà il server Appium Desktop attualmente in esecuzione", + "willUseCurrentlyRunningServer": "Utilizzerà il server Appium Inspector attualmente in esecuzione", "Name": "Nome", "enterYourSessionId": "Inserisci qui l'ID della sessione", "Proxy URL": "Proxy URL", diff --git a/assets/locales/ja/translation.json b/assets/locales/ja/translation.json index 3439bdc257..48a0d75c79 100644 --- a/assets/locales/ja/translation.json +++ b/assets/locales/ja/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "編集", "Redo": "やり直し", "Cut": "切り取り", @@ -88,16 +88,16 @@ "presetAdded": "事前設定 ' {{presetName}} ' が事前設定タブに追加されました", "datetimeFormat": "YYYY MMM Do, h:mma", "updateDetails": "リリース日: {{pubDate}}\n\nリリースノート: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} が入手可能です", + "appiumIsAvailable": "Appium Inspector {{name}} が入手可能です", "updateIsBeingDownloaded": "更新をダウンロードし始めました。完了し次第、お知らせします。", - "updateIsDownloaded": "Appium Desktop {{releaseName}} のダウンロードが完了しました。適用するにはアプリを再起動してください(Appium Desktopをインストール、再起動するまでに数分かかることがあります)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} のダウンロードが完了しました。適用するにはアプリを再起動してください(Appium Inspectorをインストール、再起動するまでに数分かかることがあります)", "updateDownloadFailed": "{{message}} のため更新のダウンロードに失敗しました", "OK": "OK", "Install Now": "今すぐインストールする", "Install Later": "後でインストールする", "Update Download Started": "更新のダウンロードを開始しました", "No update available": "利用可能な更新はありません", - "Appium Desktop is up-to-date": "Appium Desktopは最新版です", + "Appium Inspector is up-to-date": "Appium Inspectorは最新版です", "Later": "後で", "Update Downloaded": "更新のダウンロードが完了しました", "Could not download update": "更新のダウンロードに失敗しました", @@ -133,7 +133,6 @@ "The server is stopped": "サーバー停止", "The server is waiting for all connections to close": "サーバーは全ての接続が閉じるのを待っています", "badStatus": "何か問題があります: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktopはアプリケーションフォルダから起動する必要があります", "Move to Applications Folder": "アプリケーションフォルダに移動します", "locatorStrategy": "ロケーター:", "selector": "セレクタ:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "この要素に対しては対話的な操作は行えません", "usingXPathNotRecommended": "壊れやすいテストになりやすいため、XPathロケータの利用はおすすめされません。開発者と協力してユニークなaccessibilityロケータへの置き換えを検討してください。", "usingSwitchContextRecommended": "WebView コンテキストが検出されました。特定の要素は WebView コンテキストに切り替えた後にのみアクセス可能で、Appium スクリプトで実行する必要があります。 詳細については http://appium.io/docs/en/writing-running-appium/web/hybrid/ を参照してください。", - "usingWebviewContext": "Appium DesktopでWebViewインスペクターを使用すると、ChromeおよびSafariのDevToolsを使用する場合と比較して、DOM要素の取得および選択時の精度が低くなります。", + "usingWebviewContext": "Appium InspectorでWebViewインスペクターを使用すると、ChromeおよびSafariのDevToolsを使用する場合と比較して、DOM要素の取得および選択時の精度が低くなります。", "contextSwitcher": "別のコンテキストに切り替えることができます。詳細については、http://appium.io/docs/en/writing-running-appium/web/hybrid/ を参照してください。", "Tap": "タップ", "Gathering initial app source…": "アプリのソースを取得しています…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs データセンター", "US": "US", "EU": "EU", - "UP": "Appium Desktopは、デフォルトで新しいSauce LabsのUnified Platform USエンドポイントを使用します。 古いUSエンドポイントを使用したい場合は、次の操作を行ってください: 'Custom server'タブに移動し、'ondemand.saucelabs.com'をリモートホスト、ポートとして'433'を追加、パスは '/wd/hub'に設定します。'SSL' を有効にする必要はありません。", + "UP": "Appium Inspectorは、デフォルトで新しいSauce LabsのUnified Platform USエンドポイントを使用します。 古いUSエンドポイントを使用したい場合は、次の操作を行ってください: 'Custom server'タブに移動し、'ondemand.saucelabs.com'をリモートホスト、ポートとして'433'を追加、パスは '/wd/hub'に設定します。'SSL' を有効にする必要はありません。", "proxyThroughSC": "Sauce ConnectのSelenium Relayを通してプロキシする", "SSL": "SSL", "text": "テキスト", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest のユーザー名", "LambdaTest Access Key": "LambdaTest のアクセスキー", "Bitbar API Key": "BitbarのAPIキー", - "willUseCurrentlyRunningServer": "現在起動中のAppium Desktopサーバを利用します", + "willUseCurrentlyRunningServer": "現在起動中のAppium Inspectorサーバを利用します", "Name": "キー名", "enterYourSessionId": "セッションIDを入力してください", "Proxy URL": "プロキシURL", diff --git a/assets/locales/kn/translation.json b/assets/locales/kn/translation.json index bc5323f3f5..0fe5b0102b 100644 --- a/assets/locales/kn/translation.json +++ b/assets/locales/kn/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "ಮಾಹಿತಿಗಳನ ಪರಿಷ್ಕರಿಸಿ", "Redo": "ಕ್ರಿಯೆ ಪುನರಾವರ್ತಿಸು", "Cut": "ತುಂಡರಿಸು", @@ -97,7 +97,7 @@ "Install Later": "ನಂತರ ಇನ್ಸ್ಟಾಲ್ ಮಾಡಿ", "Update Download Started": "ನವೀಕರಣಗಳ ಡೌನ್ಲೋಡ್ ಶುರುವಾಗಿದೆ", "No update available": "ಯಾವುದೇ ನವೀಕರಣಗಳು ಸಧ್ಯ ಲಭ್ಯವಿಲ್ಲ", - "Appium Desktop is up-to-date": "ಈ ಅಪ್ಪಿಯಂ ಡೆಸ್ಕಟಾಪ್ ನವೀಕೃತವಾಗಿದೆ", + "Appium Inspector is up-to-date": "ಈ ಅಪ್ಪಿಯಂ ಡೆಸ್ಕಟಾಪ್ ನವೀಕೃತವಾಗಿದೆ", "Later": "ಆಮೇಲೆ", "Update Downloaded": "ನವೀಕರಣಗಳು ಡೌನ್ಲೋಡ್ ಅಗಿದೆ", "Could not download update": "ನವೀಕರಣಗಳನ್ನ ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಲಿಲ್ಲ", @@ -133,7 +133,6 @@ "The server is stopped": "ಸರ್ವರ್ ಚಾಲ್ತಿಯಲ್ಲಿಲ್ಲ", "The server is waiting for all connections to close": "ಎಲ್ಲ ಕನೆಕ್ಷನ್ಗಳ ಮುಚ್ಚುವಿಕೆಗೆ ಸರ್ವರ್ ಕಾಯುತ್ತಿದೆ", "badStatus": "ಬ್ಯಾಡ ಸ್ಟೇಟಸ್: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "ಅಪ್ಪಿಯಂ ಡೆಸ್ಕ್ಟಾಪ್ ಅಪ್ಲಿಕೇಷನ್ ಫೋಲ್ಡರ್ಯಿಂದ ಚಲಾಯಿಸಬೇಕು", "Move to Applications Folder": "ಅಪ್ಲಿಕೇಷನ್ ಫೋಲ್ಡೆರ್ಗೆ ಮೂವ್ ಮಾಡಿ", "locatorStrategy": "ಲೊಕೇಟರ್ ಸ್ಟ್ರಾಟೆಜಿ:", "selector": "ಸೆಲೆಕ್ಟರ್:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "ಈ ಎಲಿಮೆಂಟ್ಗೆ ಸಂವಹನ ಲಭ್ಯವಿಲ್ಲ", "usingXPathNotRecommended": "XPath ಲೋಕೆಟರ್ಸ್ ಬಳಸಬೇಕು ಎಂಬುದು ನಮ್ಮ ಸಲಹೆಯಲ್ಲ ಹಾಗು ಇದು ಟೆಸ್ಟ್ನನ್ನ ಅಸ್ಥಿರ ಮಾಡಬಹುದು. ಅನುಪಮವಾದ ಅಕ್ಸೆಸೆಸಿಬಿಲಿಟಿ ಲೋಕೆಟರ್ಸ್ನನ್ನು ನಿಮ್ಮ ಡೆವಲಪ್ಮೆಂಟ್ ತಂಡದಿಂದ ಕೇಳಿ ಪಡೆದು ಬಳಸಿ!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "ಟ್ಯಾಪ್", "Gathering initial app source…": "ಅಪ್ಪ್ ಆರಂಭಿಕ ಮೂಲವನ್ನು ಸಂಗ್ರಹಿಸಲಾಗುತ್ತಿದೆ…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "ಸೌಸ್ಲ್ಯಾಬ್ ಡಾಟಾ ಸೆಂಟೆರ್", "US": "ಯುಎಸ್", "EU": "ಈಯು", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "ಪ್ರೋಕ್ಸಿಯು ಸೌಸ್ ಕನೆಕ್ಟ್ ಸೆಲೆನಿಯಂ ರಿಲೇ ಮುಖೇನ", "SSL": "ಎಸ್ಎಸ್ಎಲ್", "text": "ಟೆಕ್ಸ್ಟ್", diff --git a/assets/locales/ko/translation.json b/assets/locales/ko/translation.json index 48faf9da6e..27ef8e937b 100644 --- a/assets/locales/ko/translation.json +++ b/assets/locales/ko/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "변경", "Redo": "재실행", "Cut": "자르기", @@ -88,16 +88,16 @@ "presetAdded": "프리셋 '{{presetName}}'이(가) 프리셋 탭의 목록에 추가되었습니다!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "출시일: {{pubDate}}\n\n릴리즈 정보: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} 사용이 가능합니다", + "appiumIsAvailable": "Appium Inspector {{name}} 사용이 가능합니다", "updateIsBeingDownloaded": "업데이트를 다운로드 중 입니다. 다운로드가 완료되면 다시 알려드립니다.", - "updateIsDownloaded": "Appium Desktop {{releaseName}} 다운로드가 완료되었습니다. 업데이트를 적용하려면 다시 시작해야합니다. (참고 : Appium Desktop을 설치하고 다시 시작하는 데 몇 분 정도 걸릴 수 있습니다.)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} 다운로드가 완료되었습니다. 업데이트를 적용하려면 다시 시작해야합니다. (참고 : Appium Inspector을 설치하고 다시 시작하는 데 몇 분 정도 걸릴 수 있습니다.)", "updateDownloadFailed": "업데이트 다운로드에 실패했습니다. 이유: {{message}}", "OK": "OK", "Install Now": "지금 설치하기", "Install Later": "나중에 설치하기", "Update Download Started": "업데이트 다운로드 시작", "No update available": "다운로드가 가능한 업데이트가 없습니다", - "Appium Desktop is up-to-date": "최신 버전의 Appium Desktop를 사용중입니다", + "Appium Inspector is up-to-date": "최신 버전의 Appium Inspector를 사용중입니다", "Later": "나중에", "Update Downloaded": "업데이트 다운로드", "Could not download update": "업데이트를 다운로드 할 수 없습니다", @@ -133,7 +133,6 @@ "The server is stopped": "서버가 중지되었습니다", "The server is waiting for all connections to close": "서버가 모든 연결이 닫힐 때까지 대기 중입니다", "badStatus": "잘못된 상태: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop은 응용 프로그램 폴더에서 실행해야합니다.", "Move to Applications Folder": "응용 프로그램 폴더로 이동하기", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "이 element에는 가능한 상호작용이 없습니다", "usingXPathNotRecommended": "XPath 로케이터를 사용하는 것은 권장하지 않으며, 불안정한 테스트로 이어질 수 있습니다. Accessibility 로케이터를 제공하도록 개발 팀에 요청하세요!", "usingSwitchContextRecommended": "Webview 컨텍스트(들)가 감지되었습니다; 특정 요소는 Appium 스크립트에서 수행해야하는 webview 컨텍스트로 전환한 후에만 ​​접근 할 수 있습니다. 자세한 내용은 http://appium.io/docs/en/writing-running-appium/web/hybrid/ 를 참조하세요.", - "usingWebviewContext": "Appium Desktop에서 Webview 검사기를 사용하는 것은 Chrome 및 Safari의 DevTools를 사용하는 것과 비교할 때 DOM 요소를 검색하고 선택하는 데 있어 정확도가 떨어집니다.", + "usingWebviewContext": "Appium Inspector에서 Webview 검사기를 사용하는 것은 Chrome 및 Safari의 DevTools를 사용하는 것과 비교할 때 DOM 요소를 검색하고 선택하는 데 있어 정확도가 떨어집니다.", "contextSwitcher": "여기에서 다른 컨텍스트로 전환 할 수 있습니다. 자세한 내용은 http://appium.io/docs/en/writing-running-appium/web/hybrid/ 를 참조하시기 바랍니다.", "Tap": "탭", "Gathering initial app source…": "초기 어플리케이션 소스 수집중…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs 데이터 센터", "US": "US", "EU": "EU", - "UP": "Appium Desktop은 기본적으로 새로운 Sauce Labs Unified Platform US 엔드 포인트를 사용합니다. 이전 US 엔드 포인트를 사용하려면 다음을 수행하십시오: '사용자 정의 서버'탭으로 이동하여 'ondemand.saucelabs.com'을 원격 호스트로 추가하고, 포트 '433'을 사용하십시오. 원격 경로는 '/wd/hub'로 설정하시고, 마지막으로 'SSL' 을 활성화하세요.", + "UP": "Appium Inspector은 기본적으로 새로운 Sauce Labs Unified Platform US 엔드 포인트를 사용합니다. 이전 US 엔드 포인트를 사용하려면 다음을 수행하십시오: '사용자 정의 서버'탭으로 이동하여 'ondemand.saucelabs.com'을 원격 호스트로 추가하고, 포트 '433'을 사용하십시오. 원격 경로는 '/wd/hub'로 설정하시고, 마지막으로 'SSL' 을 활성화하세요.", "proxyThroughSC": "Sauce Connect의 Selenium Relay를 통한 프록시", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API 키", - "willUseCurrentlyRunningServer": "현재 실행중인 Appium Desktop 서버를 사용합니다", + "willUseCurrentlyRunningServer": "현재 실행중인 Appium Inspector 서버를 사용합니다", "Name": "이름", "enterYourSessionId": "세션 ID를 입력하세요", "Proxy URL": "프록시 URL", diff --git a/assets/locales/ml-IN/translation.json b/assets/locales/ml-IN/translation.json index 2bfadb3629..04cac18cf9 100644 --- a/assets/locales/ml-IN/translation.json +++ b/assets/locales/ml-IN/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "തിരുത്തുക", "Redo": "വീണ്ടും ചെയ്യുക", "Cut": "മുറിക്കുക", @@ -88,16 +88,16 @@ "presetAdded": "Your preset '{{presetName}}' has been added to the list in the Presets tab!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} is available", + "appiumIsAvailable": "Appium Inspector {{name}} is available", "updateIsBeingDownloaded": "Update is being downloaded now. You will be notified again when it is complete", - "updateIsDownloaded": "Appium Desktop {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Desktop to install and restart)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Inspector to install and restart)", "updateDownloadFailed": "Failed to download update. Reason: {{message}}", "OK": "OK", "Install Now": "Install Now", "Install Later": "Install Later", "Update Download Started": "Update Download Started", "No update available": "No update available", - "Appium Desktop is up-to-date": "Appium Desktop is up-to-date", + "Appium Inspector is up-to-date": "Appium Inspector is up-to-date", "Later": "Later", "Update Downloaded": "Update Downloaded", "Could not download update": "Could not download update", @@ -133,7 +133,6 @@ "The server is stopped": "The server is stopped", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Bad status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/assets/locales/pa-IN/translation.json b/assets/locales/pa-IN/translation.json index b969ed2a79..8c4387eee3 100644 --- a/assets/locales/pa-IN/translation.json +++ b/assets/locales/pa-IN/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Edit", "Redo": "Redo", "Cut": "Cut", @@ -88,16 +88,16 @@ "presetAdded": "Your preset '{{presetName}}' has been added to the list in the Presets tab!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} is available", + "appiumIsAvailable": "Appium Inspector {{name}} is available", "updateIsBeingDownloaded": "Update is being downloaded now. You will be notified again when it is complete", - "updateIsDownloaded": "Appium Desktop {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Desktop to install and restart)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Inspector to install and restart)", "updateDownloadFailed": "Failed to download update. Reason: {{message}}", "OK": "OK", "Install Now": "Install Now", "Install Later": "Install Later", "Update Download Started": "Update Download Started", "No update available": "No update available", - "Appium Desktop is up-to-date": "Appium Desktop is up-to-date", + "Appium Inspector is up-to-date": "Appium Inspector is up-to-date", "Later": "Later", "Update Downloaded": "Update Downloaded", "Could not download update": "Could not download update", @@ -133,7 +133,6 @@ "The server is stopped": "The server is stopped", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Bad status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/assets/locales/pl/translation.json b/assets/locales/pl/translation.json index 1701aebc7b..0280fbbe91 100644 --- a/assets/locales/pl/translation.json +++ b/assets/locales/pl/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Portuguese (Brazil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Edycja", "Redo": "Przywróć", "Cut": "Wytnij", @@ -88,16 +88,16 @@ "presetAdded": "Twój preset '{{presetName}}' został dodany do listy w zakładce Presety!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} jest dostępny", + "appiumIsAvailable": "Appium Inspector {{name}} jest dostępny", "updateIsBeingDownloaded": "Aktualizacja jest teraz pobierana. Zostaniesz powiadomiony ponownie po jej zakończeniu", - "updateIsDownloaded": "Appium Desktop {{releaseName}} został pobrany. Musisz zrestartować aplikację (uwaga: zainstalowanie i ponowne uruchomienie Appium może zająć kilka minut)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} został pobrany. Musisz zrestartować aplikację (uwaga: zainstalowanie i ponowne uruchomienie Appium może zająć kilka minut)", "updateDownloadFailed": "Nie udało się pobrać aktualizacji. Powód: {{message}}", "OK": "OK", "Install Now": "Zainstaluj teraz", "Install Later": "Zainstaluj później", "Update Download Started": "Rozpoczęto pobieranie aktualizacji", "No update available": "Brak dostępnych aktualizacji", - "Appium Desktop is up-to-date": "Appium jest aktualny", + "Appium Inspector is up-to-date": "Appium jest aktualny", "Later": "Później", "Update Downloaded": "Aktualizacja pobrana", "Could not download update": "Nie można pobrać aktualizacji", @@ -133,7 +133,6 @@ "The server is stopped": "Serwer jest zatrzymany", "The server is waiting for all connections to close": "Serwer czeka na zamknięcie wszystkich połączeń", "badStatus": "Błędny status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop powinien być uruchomiony z folderu Aplikacje", "Move to Applications Folder": "Przenieś do folderu Aplikacje", "locatorStrategy": "Locator Strategy:", "selector": "Selektor:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interakcje nie są dostępne dla tego elementu", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "Tutaj możesz przejść do innego kontekstu. Więcej informacji znajdziesz na stronie http://appium.io/docs/en/writing-running-appium/web/hybrid/", "Tap": "Naciśnij", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "tekst", @@ -248,7 +247,7 @@ "LambdaTest Username": "Nazwa użytkownika LambdaTest", "LambdaTest Access Key": "Klucz dostępu LambdaTest", "Bitbar API Key": "Klucz API Bitbar", - "willUseCurrentlyRunningServer": "Używa aktualnie uruchomionego serwera Appium Desktop", + "willUseCurrentlyRunningServer": "Używa aktualnie uruchomionego serwera Appium Inspector", "Name": "Nazwa", "enterYourSessionId": "Wprowadź tutaj ID sesji", "Proxy URL": "Adres URL serwera proxy", diff --git a/assets/locales/pt-BR/translation.json b/assets/locales/pt-BR/translation.json index 232713ee82..0e9ff7764e 100644 --- a/assets/locales/pt-BR/translation.json +++ b/assets/locales/pt-BR/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Desktop Appium", + "appiumInspector": "Inspector Appium", "Edit": "Editar", "Redo": "Refazer", "Cut": "Recortar", @@ -88,16 +88,16 @@ "presetAdded": "Sua configuração '{{presetName}}' foi adicionada à lista na aba Configurações!", "datetimeFormat": "DD de MMMM de YYYY hh:mm", "updateDetails": "Data de Lançamento: {{pubDate}}\n\nNotas de Lançamento: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} está disponível", + "appiumIsAvailable": "Appium Inspector {{name}} está disponível", "updateIsBeingDownloaded": "A atualização está sendo baixada agora. Você será notificado novamente quando estiver concluída", - "updateIsDownloaded": "O Appium Desktop {{releaseName}} foi baixado. Deve reiniciar para aplicar as atualizações (note: pode levar vários minutos para o Appium Desktop instalar e reiniciar)", + "updateIsDownloaded": "O Appium Inspector {{releaseName}} foi baixado. Deve reiniciar para aplicar as atualizações (note: pode levar vários minutos para o Appium Inspector instalar e reiniciar)", "updateDownloadFailed": "Falha ao baixar a atualização. Motivo: {{message}}", "OK": "OK", "Install Now": "Instalar Agora", "Install Later": "Instalar mais tarde", "Update Download Started": "Download da Atualização iniciado", "No update available": "Nenhuma atualização disponível", - "Appium Desktop is up-to-date": "O Appium Desktop está atualizado", + "Appium Inspector is up-to-date": "O Appium Inspector está atualizado", "Later": "Mais tarde", "Update Downloaded": "Download concluído", "Could not download update": "Não foi possível efetuar o download das atualizações", @@ -133,7 +133,6 @@ "The server is stopped": "O servidor está parado", "The server is waiting for all connections to close": "O servidor está aguardando o fechamento de todas as conexões", "badStatus": "Status Errado: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "O Appium Desktop deve ser executado a partir da pasta Aplicativos", "Move to Applications Folder": "Mover para a Pasta Aplicativos", "locatorStrategy": "Estratégia de Localização:", "selector": "Seletor:", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "Centro de Dados do SauceLabs", "US": "EUA", "EU": "EU", - "UP": "Appium Desktop usará o novo Sauce Labs Unified Platform US por padrão. Se você quiser usar o antigo US endpoint, faça o seguinte: Vá para a aba 'Servidor personalizado', adicione 'ondemand. aucelabs.com' como um host remoto, use a porta '433', o caminho remoto é '/wd/hub' e por último, mas não menos ativando 'SSL'.", + "UP": "Appium Inspector usará o novo Sauce Labs Unified Platform US por padrão. Se você quiser usar o antigo US endpoint, faça o seguinte: Vá para a aba 'Servidor personalizado', adicione 'ondemand. aucelabs.com' como um host remoto, use a porta '433', o caminho remoto é '/wd/hub' e por último, mas não menos ativando 'SSL'.", "proxyThroughSC": "Proxy através do Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "texto", @@ -248,7 +247,7 @@ "LambdaTest Username": "Nome de usuário do LambdaTest", "LambdaTest Access Key": "Chave de Acesso LambdaTest", "Bitbar API Key": "Chave API da Bitbar", - "willUseCurrentlyRunningServer": "Usará o Appium Desktop com o servidor atual", + "willUseCurrentlyRunningServer": "Usará o Appium Inspector com o servidor atual", "Name": "Nome", "enterYourSessionId": "Digite seu ID da sessão aqui", "Proxy URL": "URL do proxy", diff --git a/assets/locales/pt-PT/translation.json b/assets/locales/pt-PT/translation.json index 207c5dffc1..026995e8ef 100644 --- a/assets/locales/pt-PT/translation.json +++ b/assets/locales/pt-PT/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Editar", "Redo": "Refazer", "Cut": "Cortar", @@ -88,16 +88,16 @@ "presetAdded": "Sua predefinição '{{presetName}}' foi adicionada à lista na aba Predefinições!", "datetimeFormat": "D MMM YYYY, h:m", "updateDetails": "Data de Lançamento: {{pubDate}}\n\nNotas de Lançamento: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} está disponível", + "appiumIsAvailable": "Appium Inspector {{name}} está disponível", "updateIsBeingDownloaded": "A atualização está sendo baixada agora. Você será notificado novamente quando estiver concluída", - "updateIsDownloaded": "Appium Desktop {{releaseName}} foi baixado. É necessário reiniciar para aplicar as atualizações (nota: pode levar vários minutos para que o Appium Desktop instale e reinicie)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} foi baixado. É necessário reiniciar para aplicar as atualizações (nota: pode levar vários minutos para que o Appium Inspector instale e reinicie)", "updateDownloadFailed": "Falha ao baixar a atualização. Motivo: {{message}}", "OK": "OK", "Install Now": "Instalar Agora", "Install Later": "Instalar Mais Tarde", "Update Download Started": "Download da Atualização Iniciado", "No update available": "Nenhuma atualização disponível", - "Appium Desktop is up-to-date": "O Appium Desktop está atualizado", + "Appium Inspector is up-to-date": "O Appium Inspector está atualizado", "Later": "Mais Tarde", "Update Downloaded": "Atualização Transferida", "Could not download update": "Não foi possível transferir a atualização", @@ -133,7 +133,6 @@ "The server is stopped": "O servidor está parado", "The server is waiting for all connections to close": "O servidor está a aguardar o fecho de todas as ligações", "badStatus": "Mau Estado: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "O Appium Desktop deve ser executado a partir da pasta Aplicações", "Move to Applications Folder": "Mover para a pasta Aplicações", "locatorStrategy": "Locator Strategy:", "selector": "Selecionador:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "EUA", "EU": "UE", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "texto", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Nome", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/assets/locales/ru/translation.json b/assets/locales/ru/translation.json index d0ad536384..36172f17b5 100644 --- a/assets/locales/ru/translation.json +++ b/assets/locales/ru/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Итальянский", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "Изменить", "Redo": "Возврат", "Cut": "Вырезать", @@ -88,16 +88,16 @@ "presetAdded": "Ваш пресет '{{presetName}}' добавлен. Смотрите вкладку Пресеты!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Дата релиза: {{pubDate}}\n\nПримечания к релизу: {{notes}}", - "appiumIsAvailable": "Доступно Appium Desktop {{name}}", + "appiumIsAvailable": "Доступно Appium Inspector {{name}}", "updateIsBeingDownloaded": "Обновление загружается. Мы уведомим о завершении", - "updateIsDownloaded": "Appium Desktop {{releaseName}} загружен. Для обновления необходим перезапуск. Он может занять несколько минут", + "updateIsDownloaded": "Appium Inspector {{releaseName}} загружен. Для обновления необходим перезапуск. Он может занять несколько минут", "updateDownloadFailed": "Обновление не загрузилось. Причина: {{message}}", "OK": "OK", "Install Now": "Установить сейчас", "Install Later": "Установить позже", "Update Download Started": "Запущена загрузка обновлений", "No update available": "Нет доступных обновлений", - "Appium Desktop is up-to-date": "Версия Appium Desktop актуальна", + "Appium Inspector is up-to-date": "Версия Appium Inspector актуальна", "Later": "Позже", "Update Downloaded": "Обновление загружено", "Could not download update": "Не удалось загрузить обновление", @@ -133,7 +133,6 @@ "The server is stopped": "Сервер остановлен", "The server is waiting for all connections to close": "Сервер ожидает закрытия всех подключений", "badStatus": "Неверный статус: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop должен быть запущен из папки Приложения", "Move to Applications Folder": "Переместить в папку приложений", "locatorStrategy": "Стратегия поиска:", "selector": "Селектор:", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "Дата-центр SauceLabs", "US": "США", "EU": "ЕС", - "UP": "Appium Desktop по умолчанию задействует новую конечную точку US: Sauce Labs Unified Platform. Если вы хотите оставить старую конечную точку US, перейдите на вкладку 'Пользовательский сервер', пропишите 'ondemand.saucelabs.com' как удаленный хост, порт 443 и удаленный путь '/wd/hub'. Важно включить 'SSL'.", + "UP": "Appium Inspector по умолчанию задействует новую конечную точку US: Sauce Labs Unified Platform. Если вы хотите оставить старую конечную точку US, перейдите на вкладку 'Пользовательский сервер', пропишите 'ondemand.saucelabs.com' как удаленный хост, порт 443 и удаленный путь '/wd/hub'. Важно включить 'SSL'.", "proxyThroughSC": "Прокси Sauce Connect через Selenium Relay", "SSL": "SSL", "text": "текст", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Ключ API Bitbar", - "willUseCurrentlyRunningServer": "Будет использован текущий сервер Appium Desktop", + "willUseCurrentlyRunningServer": "Будет использован текущий сервер Appium Inspector", "Name": "Название", "enterYourSessionId": "Введите идентификатор сессии здесь", "Proxy URL": "URL прокси-сервера", diff --git a/assets/locales/te/translation.json b/assets/locales/te/translation.json index 0d6b4a09c9..4c44c7dcc4 100644 --- a/assets/locales/te/translation.json +++ b/assets/locales/te/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "ఇటాలియన్", - "appiumDesktop": "Appium డెస్క్‌టాప్", + "appiumInspector": "Appium డెస్క్‌టాప్", "Edit": "సవరించు", "Redo": "మళ్లీ చేయుము", "Cut": "కత్తిరించు", @@ -97,7 +97,7 @@ "Install Later": "తర్వాత ఇన్‌స్టాల్ చేయండి", "Update Download Started": "అప్‌డేట్ డౌన్‌లోడ్ ప్రారంభించబడింది", "No update available": "నవీకరణ అందుబాటులో లేదు", - "Appium Desktop is up-to-date": "Appium డెస్క్‌టాప్ తాజాగా ఉంది", + "Appium Inspector is up-to-date": "Appium డెస్క్‌టాప్ తాజాగా ఉంది", "Later": "తరువాత", "Update Downloaded": "అప్‌డేట్ డౌన్‌లోడ్ చేయబడింది", "Could not download update": "నవీకరణను డౌన్‌లోడ్ చేయడం సాధ్యపడలేదు", @@ -133,7 +133,6 @@ "The server is stopped": "సర్వర్ ఆగిపోయింది", "The server is waiting for all connections to close": "అన్ని కనెక్షన్‌లు మూసివేయడం కోసం సర్వర్ వేచి ఉంది", "badStatus": "చెడు స్థితి: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium డెస్క్‌టాప్ అప్లికేషన్‌ల ఫోల్డర్ నుండి అమలు చేయాలి", "Move to Applications Folder": "అప్లికేషన్ల ఫోల్డర్‌కి తరలించండి", "locatorStrategy": "లొకేటర్ వ్యూహం:", "selector": "సెలెక్టర్:", diff --git a/assets/locales/zh-CN/translation.json b/assets/locales/zh-CN/translation.json index 0e81f64d36..747a1387f8 100644 --- a/assets/locales/zh-CN/translation.json +++ b/assets/locales/zh-CN/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Portuguese (Brazil)", "it": "意大利语", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "编辑", "Redo": "恢复", "Cut": "剪切", @@ -88,16 +88,16 @@ "presetAdded": "您的预设 '{{presetName}}''已被添加到预设标签页中的列表中!", "datetimeFormat": "YYYY-MM-DD HH:mm", "updateDetails": "发布日期: {{pubDate}}\n\n版本注释: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} 可用", + "appiumIsAvailable": "Appium Inspector {{name}} 可用", "updateIsBeingDownloaded": "更新正在下载。完成后将再次通知您", - "updateIsDownloaded": "Appium Desktop {{releaseName}} 已经下载。必须重新启动以应用更新(注意:它可能需要几分钟时间,以便安装并重启)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} 已经下载。必须重新启动以应用更新(注意:它可能需要几分钟时间,以便安装并重启)", "updateDownloadFailed": "下载更新失败。原因: {{message}}", "OK": "OK", "Install Now": "立即安装​​​​​​​", "Install Later": "稍后安装", "Update Download Started": "更新下载开始", "No update available": "没有可用的更新", - "Appium Desktop is up-to-date": "Appium Desktop 是最新的", + "Appium Inspector is up-to-date": "Appium Inspector 是最新的", "Later": "稍后", "Update Downloaded": "已经成功下载更新", "Could not download update": "无法下载更新", @@ -133,7 +133,6 @@ "The server is stopped": "服务器已停止", "The server is waiting for all connections to close": "服务器正在等待所有连接关闭", "badStatus": "错误状态: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop 应从 \"应用程序\" 文件夹中运行", "Move to Applications Folder": "移动到应用程序文件夹", "locatorStrategy": "定位策略:", "selector": "选择器:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "此元素的交互不可用", "usingXPathNotRecommended": "不建议使用 XPath 定位器,这可能会导致脆弱的测试。请您的开发团队提供独特的辅助定位器!", "usingSwitchContextRecommended": "检测到 Webview context(s);某些元素只有在切换到 Webview 视图上的环境后才能访问,而这些必须在 Appium 脚本中完成。 详见 http://appium.io/docs/en/writing-running-appium/web/hybrid/。", - "usingWebviewContext": "与使用 Chrome 和 Safari 的 DevTools 相比,在 Appium Desktop 中使用 Webview 检查器检索和选择 DOM 元素的准确性较低。", + "usingWebviewContext": "与使用 Chrome 和 Safari 的 DevTools 相比,在 Appium Inspector 中使用 Webview 检查器检索和选择 DOM 元素的准确性较低。", "contextSwitcher": "您可以在此切换到不同的上下文。请参阅 http://appium.io/docs/en/writing-running-appium/web/hybrid/ 了解更多信息。", "Tap": "点击", "Gathering initial app source…": "收集初始应用源…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs 数据中心", "US": "US", "EU": "EU", - "UP": "Appium Desktop 默认使用新的 Sauce Labs Unified Platform 美国端点。 如果你想要使用旧的美国端点,那么执行以下操作:转到“自定义服务器”-标签,添加 'ondemand.saucelabs.com' 作为远程主机, 使用端口 '433', 远程路径是 '/wd/hub' ,最后但并非最不重要的是启用 'SSL'。", + "UP": "Appium Inspector 默认使用新的 Sauce Labs Unified Platform 美国端点。 如果你想要使用旧的美国端点,那么执行以下操作:转到“自定义服务器”-标签,添加 'ondemand.saucelabs.com' 作为远程主机, 使用端口 '433', 远程路径是 '/wd/hub' ,最后但并非最不重要的是启用 'SSL'。", "proxyThroughSC": "通过 Sauce Connect 的 Selenium Relay 代理", "SSL": "SSL", "text": "文本", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest 用户名", "LambdaTest Access Key": "LambdaTest 访问密钥", "Bitbar API Key": "Bitbar API 密钥", - "willUseCurrentlyRunningServer": "将使用当前运行的 Appium Desktop 服务器", + "willUseCurrentlyRunningServer": "将使用当前运行的 Appium Inspector 服务器", "Name": "名称", "enterYourSessionId": "在此输入您的会话ID", "Proxy URL": "代理 URL", diff --git a/assets/locales/zh-TW/translation.json b/assets/locales/zh-TW/translation.json index fedb6e201f..403c68de37 100644 --- a/assets/locales/zh-TW/translation.json +++ b/assets/locales/zh-TW/translation.json @@ -12,7 +12,7 @@ "te": "Telugu", "pt-BR": "Português (Brasil)", "it": "Italiano", - "appiumDesktop": "Appium Desktop", + "appiumInspector": "Appium Inspector", "Edit": "編輯", "Redo": "重做", "Cut": "剪下", @@ -88,16 +88,16 @@ "presetAdded": "Your preset '{{presetName}}' has been added to the list in the Presets tab!", "datetimeFormat": "MMM Do YYYY, h:mma", "updateDetails": "Release Date: {{pubDate}}\n\nRelease Notes: {{notes}}", - "appiumIsAvailable": "Appium Desktop {{name}} is available", + "appiumIsAvailable": "Appium Inspector {{name}} is available", "updateIsBeingDownloaded": "Update is being downloaded now. You will be notified again when it is complete", - "updateIsDownloaded": "Appium Desktop {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Desktop to install and restart)", + "updateIsDownloaded": "Appium Inspector {{releaseName}} has been downloaded. Must restart to apply the updates (note: it may take several minutes for Appium Inspector to install and restart)", "updateDownloadFailed": "Failed to download update. Reason: {{message}}", "OK": "OK", "Install Now": "Install Now", "Install Later": "Install Later", "Update Download Started": "Update Download Started", "No update available": "No update available", - "Appium Desktop is up-to-date": "Appium Desktop is up-to-date", + "Appium Inspector is up-to-date": "Appium Inspector is up-to-date", "Later": "Later", "Update Downloaded": "Update Downloaded", "Could not download update": "Could not download update", @@ -133,7 +133,6 @@ "The server is stopped": "The server is stopped", "The server is waiting for all connections to close": "The server is waiting for all connections to close", "badStatus": "Bad status: {{serverStatus}}", - "Appium Desktop should be run from the Applications folder": "Appium Desktop should be run from the Applications folder", "Move to Applications Folder": "Move to Applications Folder", "locatorStrategy": "Locator Strategy:", "selector": "Selector:", @@ -180,7 +179,7 @@ "Interactions are not available for this element": "Interactions are not available for this element", "usingXPathNotRecommended": "Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!", "usingSwitchContextRecommended": "Webview context(s) detected; certain elements might only be accessible after switching to a webview context, which must be done in an Appium script. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", - "usingWebviewContext": "Using the Webview inspector in Appium Desktop is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", + "usingWebviewContext": "Using the Webview inspector in Appium Inspector is less accurate in retrieving and selecting DOM elements in comparison to using the DevTools of Chrome and Safari.", "contextSwitcher": "You can switch to a different context here. See http://appium.io/docs/en/writing-running-appium/web/hybrid/ for more information", "Tap": "Tap", "Gathering initial app source…": "Gathering initial app source…", @@ -202,7 +201,7 @@ "SauceLabs Data Center": "SauceLabs Data Center", "US": "US", "EU": "EU", - "UP": "Appium Desktop will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", + "UP": "Appium Inspector will use the new Sauce Labs Unified Platform US endpoint by default. If you want to use the old US endpoint then do the following: Go to the 'Custom server'-tab, add 'ondemand.saucelabs.com' as a remote host, use port '433', the remote path is '/wd/hub' and last but not least enable 'SSL'.", "proxyThroughSC": "Proxy through Sauce Connect's Selenium Relay", "SSL": "SSL", "text": "text", @@ -248,7 +247,7 @@ "LambdaTest Username": "LambdaTest Username", "LambdaTest Access Key": "LambdaTest Access Key", "Bitbar API Key": "Bitbar API Key", - "willUseCurrentlyRunningServer": "Will use currently-running Appium Desktop server", + "willUseCurrentlyRunningServer": "Will use currently-running Appium Inspector server", "Name": "Name", "enterYourSessionId": "Enter your session ID here", "Proxy URL": "Proxy URL", diff --git a/test/integration/update-checker.integration-test.js b/test/integration/update-checker.integration-test.js index 4a1595ee2c..6e7ef892da 100644 --- a/test/integration/update-checker.integration-test.js +++ b/test/integration/update-checker.integration-test.js @@ -15,7 +15,7 @@ describe.skip('updateChecker', function () { if (!process.env.GITHUB_TOKEN) { return this.skip(); } - const latestReleaseUrl = `https://api.github.com/repos/appium/appium-desktop/releases/latest?access_token=${process.env.GITHUB_TOKEN}`; + const latestReleaseUrl = `https://api.github.com/repos/appium/appium-inspector/releases/latest?access_token=${process.env.GITHUB_TOKEN}`; const res = JSON.parse(await request.get(latestReleaseUrl, {headers: {'user-agent': 'node.js'}})); latestVersion = res.name; }); diff --git a/test/unit/mocks/appium.page.original.html b/test/unit/mocks/appium.page.original.html index d66901025e..3d1575f3c2 100644 --- a/test/unit/mocks/appium.page.original.html +++ b/test/unit/mocks/appium.page.original.html @@ -36,68 +36,68 @@ -