diff --git a/.env b/.env index 3bb01b58da..bb636cc4fa 100644 --- a/.env +++ b/.env @@ -1,4 +1,3 @@ -TESTFAIRY_ENABLED=0 ETHEREUM_DEV_CLUSTER=1 RPC_NETWORKS_ONLY=0 LOG_LEVEL=debug @@ -8,7 +7,6 @@ RN_BRIDGE_THRESHOLD_WARNINGS=0 POW_TARGET=0.002 POW_TIME=1 DEFAULT_NETWORK=mainnet_rpc -TESTFAIRY_TOKEN=969f6c921cb435cea1d41d1ea3f5b247d6026d55 INSTABUG_TOKEN=758630ed52864cbad9c5eeeac596c60c DEBUG_WEBVIEW=1 INSTABUG_SURVEYS=1 diff --git a/.env.e2e b/.env.e2e index ae69314cd2..80ed5fae69 100644 --- a/.env.e2e +++ b/.env.e2e @@ -1,4 +1,3 @@ -TESTFAIRY_ENABLED=1 ETHEREUM_DEV_CLUSTER=1 LOG_LEVEL=debug LOG_LEVEL_STATUS_GO=info diff --git a/.env.jenkins b/.env.jenkins index a1c45a67cb..981a232e96 100644 --- a/.env.jenkins +++ b/.env.jenkins @@ -1,11 +1,9 @@ -TESTFAIRY_ENABLED=1 RPC_NETWORKS_ONLY=0 ETHEREUM_DEV_CLUSTER=1 LOG_LEVEL=debug LOG_LEVEL_STATUS_GO=info FLEET=eth.beta RN_BRIDGE_THRESHOLD_WARNINGS=0 -TESTFAIRY_TOKEN=969f6c921cb435cea1d41d1ea3f5b247d6026d55 POW_TARGET=0.002 POW_TIME=1 DEFAULT_NETWORK=mainnet_rpc diff --git a/.env.nightly b/.env.nightly index 97a1cb9bf6..110182b4e6 100644 --- a/.env.nightly +++ b/.env.nightly @@ -1,11 +1,9 @@ -TESTFAIRY_ENABLED=1 ETHEREUM_DEV_CLUSTER=1 RPC_NETWORKS_ONLY=0 LOG_LEVEL=debug LOG_LEVEL_STATUS_GO=info FLEET=eth.beta RN_BRIDGE_THRESHOLD_WARNINGS=0 -TESTFAIRY_TOKEN=969f6c921cb435cea1d41d1ea3f5b247d6026d55 POW_TARGET=0.002 POW_TIME=1 DEFAULT_NETWORK=mainnet_rpc diff --git a/.env.nightly.staging.fleet b/.env.nightly.staging.fleet index 64118e3835..35ca487e31 100644 --- a/.env.nightly.staging.fleet +++ b/.env.nightly.staging.fleet @@ -1,10 +1,8 @@ -TESTFAIRY_ENABLED=1 ETHEREUM_DEV_CLUSTER=1 LOG_LEVEL=debug LOG_LEVEL_STATUS_GO=info FLEET=eth.staging RN_BRIDGE_THRESHOLD_WARNINGS=0 -TESTFAIRY_TOKEN=969f6c921cb435cea1d41d1ea3f5b247d6026d55 POW_TARGET=0.002 POW_TIME=1 DEFAULT_NETWORK=mainnet_rpc diff --git a/.env.prod b/.env.prod index adafe3ec3b..6b4072c17e 100644 --- a/.env.prod +++ b/.env.prod @@ -1,4 +1,3 @@ -TESTFAIRY_ENABLED=0 ETHEREUM_DEV_CLUSTER=0 MAINNET_WARNING_ENABLED=1 RPC_NETWORKS_ONLY=1 @@ -9,7 +8,6 @@ RN_BRIDGE_THRESHOLD_WARNINGS=0 POW_TARGET=0.002 POW_TIME=1 DEFAULT_NETWORK=mainnet_rpc -TESTFAIRY_TOKEN=969f6c921cb435cea1d41d1ea3f5b247d6026d55 INSTABUG_TOKEN=758630ed52864cbad9c5eeeac596c60c DEBUG_WEBVIEW=0 GROUP_CHATS_ENABLED=0 diff --git a/android/app/build.gradle b/android/app/build.gradle index 56db4c0b6d..d849bc15d2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -252,7 +252,6 @@ dependencies { } implementation 'com.google.firebase:firebase-core:16.0.3' //this decides your firebase SDK version implementation 'com.google.firebase:firebase-messaging:17.1.0' - implementation project(':react-native-testfairy') implementation project(':react-native-keychain') implementation project(':instabug-reactnative') diff --git a/android/app/src/main/java/im/status/ethereum/MainActivity.java b/android/app/src/main/java/im/status/ethereum/MainActivity.java index dd9473f0f1..3193c4b6b3 100644 --- a/android/app/src/main/java/im/status/ethereum/MainActivity.java +++ b/android/app/src/main/java/im/status/ethereum/MainActivity.java @@ -23,7 +23,6 @@ import android.os.Bundle; import com.facebook.react.ReactActivity; import com.facebook.react.modules.core.PermissionListener; import org.devio.rn.splashscreen.SplashScreen; -import com.testfairy.TestFairy; import com.instabug.library.Instabug; import java.util.Properties; @@ -117,9 +116,6 @@ public class MainActivity extends ReactActivity super.onCreate(savedInstanceState); Instabug.setIntroMessageEnabled(false); - if(BuildConfig.TESTFAIRY_ENABLED == "1") { - TestFairy.begin(this, "969f6c921cb435cea1d41d1ea3f5b247d6026d55"); - } if (!shouldShowRootedNotification()) { configureStatus(); diff --git a/android/app/src/main/java/im/status/ethereum/MainApplication.java b/android/app/src/main/java/im/status/ethereum/MainApplication.java index 66c1d74f6d..b934a3c80e 100644 --- a/android/app/src/main/java/im/status/ethereum/MainApplication.java +++ b/android/app/src/main/java/im/status/ethereum/MainApplication.java @@ -26,7 +26,6 @@ import fr.bamlab.rnimageresizer.ImageResizerPackage; import im.status.ethereum.module.StatusPackage; import io.realm.react.RealmReactPackage; import me.alwx.HttpServer.HttpServerReactPackage; -import com.testfairy.react.TestFairyPackage; import com.oblador.keychain.KeychainPackage; import java.util.ArrayList; @@ -75,7 +74,6 @@ public class MainApplication extends MultiDexApplication implements ReactApplica new ReactNativeDialogsPackage(), new ImageResizerPackage(), new PickerPackage(), - new TestFairyPackage(), new WebViewBridgePackage(webViewDebugEnabled, callRPC), new ReactNativeConfigPackage(), new KeychainPackage(), diff --git a/android/settings.gradle b/android/settings.gradle index 4b2e2bcdd9..cdd0146f3d 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -40,8 +40,5 @@ include ':react-native-webview-bridge' project(':react-native-webview-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview-bridge/android') include ':react-native-config' project(':react-native-config').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-config/android') -include ':react-native-testfairy' -project(':react-native-testfairy').projectDir = new File(settingsDir, '../node_modules/react-native-testfairy/android') - include ':react-native-android' project(':react-native-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native/ReactAndroid') diff --git a/clj-rn.conf.edn b/clj-rn.conf.edn index c379fd7b15..2c3b8b1b3a 100644 --- a/clj-rn.conf.edn +++ b/clj-rn.conf.edn @@ -38,7 +38,6 @@ "react-native/Libraries/vendor/emitter/EventEmitter" "react-native-background-timer" "react-native-fetch-polyfill" - "react-native-testfairy" "react-native-nfc-manager" "text-encoding" "js-sha3" diff --git a/ios/StatusIm.xcodeproj/project.pbxproj b/ios/StatusIm.xcodeproj/project.pbxproj index ef505e73bf..e7999393f0 100644 --- a/ios/StatusIm.xcodeproj/project.pbxproj +++ b/ios/StatusIm.xcodeproj/project.pbxproj @@ -41,7 +41,6 @@ 925C1F4C1F7B73B20063DFA0 /* nanopb.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 925C1F451F7B73B20063DFA0 /* nanopb.framework */; }; 92A0DF7D1F4DE3A4002051BC /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92A0DF491F4DE3A0002051BC /* GoogleService-Info.plist */; }; 983F077E2119C9D2004133ED /* message.wav in Resources */ = {isa = PBXBuildFile; fileRef = 983F07442119C9D2004133ED /* message.wav */; }; - 98482A6F2065257B00263651 /* libReactNativeTestFairy.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9880471C20650CBC00CEBFE0 /* libReactNativeTestFairy.a */; }; 9E3AB6D01D87DB2B008846B4 /* libReact-Native-Webview-Bridge.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9E3AB6C61D87DA2B008846B4 /* libReact-Native-Webview-Bridge.a */; }; 9EE89E271E03FCB7007D3C25 /* libSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7F21DE718EF00D694FF /* libSplashScreen.a */; }; 9EE89E2D1E03FD9F007D3C25 /* libimageCropPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 20A5C9531D927137002C4965 /* libimageCropPicker.a */; }; @@ -614,7 +613,6 @@ files = ( 475D202F20B7450D00879A77 /* libRNFirebase.a in Frameworks */, 4CA4DA1B206D105D006A98B0 /* libRNInstabug.a in Frameworks */, - 98482A6F2065257B00263651 /* libReactNativeTestFairy.a in Frameworks */, C93242561FE1C68C00FE7099 /* libRCTAnimation.a in Frameworks */, 4C16DE0C1F89508700AA10DB /* JavaScriptCore.framework in Frameworks */, B2DEA0D01E49E33300FA28D6 /* libRCTHttpServer.a in Frameworks */, diff --git a/ios/StatusIm/AppDelegate.m b/ios/StatusIm/AppDelegate.m index 698b84023a..96631c00a9 100644 --- a/ios/StatusIm/AppDelegate.m +++ b/ios/StatusIm/AppDelegate.m @@ -15,7 +15,6 @@ #import "RCTBundleURLProvider.h" #import "RCTRootView.h" #import "RNSplashScreen.h" -#import "TestFairy.h" #import "RCTLinkingManager.h" #import #import "RNFirebaseNotifications.h" @@ -23,44 +22,6 @@ @implementation AppDelegate -/* Modified version of RCTDefaultLogFunction that also directs all app logs to TestFairy. */ -RCTLogFunction RCTTestFairyLogFunction = ^( - RCTLogLevel level, - __unused RCTLogSource source, - NSString *fileName, - NSNumber *lineNumber, - NSString *message - ) -{ - NSString *log = RCTFormatLog([NSDate date], level, fileName, lineNumber, message); - fprintf(stderr, "%s\n", log.UTF8String); - fflush(stderr); - - /* Only custom part */ - TFLog(log); - - int aslLevel; - switch(level) { - case RCTLogLevelTrace: - aslLevel = ASL_LEVEL_DEBUG; - break; - case RCTLogLevelInfo: - aslLevel = ASL_LEVEL_NOTICE; - break; - case RCTLogLevelWarning: - aslLevel = ASL_LEVEL_WARNING; - break; - case RCTLogLevelError: - aslLevel = ASL_LEVEL_ERR; - break; - case RCTLogLevelFatal: - aslLevel = ASL_LEVEL_CRIT; - break; - } - asl_log(NULL, NULL, aslLevel, "%s", message.UTF8String); - -}; - - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { signal(SIGPIPE, SIG_IGN); @@ -84,7 +45,6 @@ RCTLogFunction RCTTestFairyLogFunction = ^( } else if([logLevel isEqualToString:@"debug"]){ RCTSetLogThreshold(RCTLogLevelTrace); - RCTSetLogFunction(RCTTestFairyLogFunction); } jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; diff --git a/mobile_files/package-lock.json b/mobile_files/package-lock.json index 92986490cb..9fe8f126be 100644 --- a/mobile_files/package-lock.json +++ b/mobile_files/package-lock.json @@ -8959,9 +8959,6 @@ } } }, - "react-native-testfairy": { - "version": "git+https://github.com/status-im/react-native-testfairy.git#6430e98083955630168073b86848f1d8411d6432" - }, "react-native-udp": { "version": "git+https://github.com/status-im/react-native-udp.git#6e9a817326208f6ca36fa42b20f5e530c1b39d37", "requires": { diff --git a/mobile_files/package.json b/mobile_files/package.json index c8916bc5d7..a2ea862bf6 100644 --- a/mobile_files/package.json +++ b/mobile_files/package.json @@ -59,7 +59,6 @@ "react-native-splash-screen": "3.1.1", "react-native-svg": "6.5.2", "react-native-tcp": "https://github.com/status-im/react-native-tcp.git#3.3.0-1", - "react-native-testfairy": "https://github.com/status-im/react-native-testfairy.git#2.14.1-1", "react-native-udp": "https://github.com/status-im/react-native-udp.git#2.3.1-1", "react-native-webview-bridge": "git+https://github.com/status-im/react-native-webview-bridge.git#0.33.16-3", "react-navigation": "^2.12.1", diff --git a/react-native/src/desktop/status_im/react_native/js_dependencies.cljs b/react-native/src/desktop/status_im/react_native/js_dependencies.cljs index eaaf4c13b6..adf643c9b1 100644 --- a/react-native/src/desktop/status_im/react_native/js_dependencies.cljs +++ b/react-native/src/desktop/status_im/react_native/js_dependencies.cljs @@ -27,5 +27,4 @@ (def snoopy-bars #js {}) (def snoopy-buffer #js {}) (def background-timer #js {:setTimeout (fn [cb ms] (js/setTimeout cb ms))}) -(def testfairy #js {}) (def react-navigation #js {:NavigationActions #js {}}) diff --git a/react-native/src/mobile/status_im/react_native/js_dependencies.cljs b/react-native/src/mobile/status_im/react_native/js_dependencies.cljs index 3d0f7187d8..ec2b0d218c 100644 --- a/react-native/src/mobile/status_im/react_native/js_dependencies.cljs +++ b/react-native/src/mobile/status_im/react_native/js_dependencies.cljs @@ -26,5 +26,4 @@ (def snoopy-bars (js/require "rn-snoopy/stream/bars")) (def snoopy-buffer (js/require "rn-snoopy/stream/buffer")) (def background-timer (.-default (js/require "react-native-background-timer"))) -(def testfairy (js/require "react-native-testfairy")) (def react-navigation (js/require "react-navigation")) diff --git a/src/status_im/core.cljs b/src/status_im/core.cljs index 3a6652272c..f9d03daa98 100644 --- a/src/status_im/core.cljs +++ b/src/status_im/core.cljs @@ -18,6 +18,4 @@ (log/set-level! config/log-level) (error-handler/register-exception-handler!) (re-frame/dispatch [:init/app-started]) - (when config/testfairy-enabled? - (.begin js-dependencies/testfairy config/testfairy-token)) (.registerComponent react/app-registry "StatusIm" #(reagent/reactify-component app-root))) diff --git a/src/status_im/i18n.cljs b/src/status_im/i18n.cljs index 0ff1a0b09f..0c0a1ddade 100644 --- a/src/status_im/i18n.cljs +++ b/src/status_im/i18n.cljs @@ -107,7 +107,7 @@ :add-network :unknown-status-go-error :contacts-group-new-chat :and-you :wallets :clear-history :wallet-choose-from-contacts :signing-phrase-description :no-contacts :here-is-your-signing-phrase - :soon :close-app-content :status-sent :status-prompt :testfairy-title + :soon :close-app-content :status-sent :status-prompt :delete-contact-confirmation :datetime-today :add-a-status :web-view-error :notifications-title :error :transactions-sign-transaction :edit-contacts :more :cancel :no-statuses-found :can-not-add-yourself @@ -118,7 +118,7 @@ :new-contact :datetime-second :status-failed :is-typing :recover :suggestions-commands :nonce :new-network :contact-already-added :datetime-minute :browsing-open-in-web-browser :delete-group-prompt :wallet-total-value - :wallet-insufficient-funds :edit-profile :active-unknown :testfairy-message + :wallet-insufficient-funds :edit-profile :active-unknown :search-tags :transaction-failed :public-key :error-processing-json :status-seen :transactions-filter-tokens :status-delivered :profile :wallet-choose-recipient :no-statuses-discovered :none :removed :empty-topic diff --git a/src/status_im/init/core.cljs b/src/status_im/init/core.cljs index 965666bb69..4843313641 100644 --- a/src/status_im/init/core.cljs +++ b/src/status_im/init/core.cljs @@ -37,12 +37,6 @@ (log/warn "Could not decrypt database" error) (re-frame/dispatch [:init.callback/init-store-error encryption-key]))))) -(defn testfairy-alert! [] - (when config/testfairy-enabled? - (utils/show-popup - (i18n/label :testfairy-title) - (i18n/label :testfairy-message)))) - ;; TODO (yenda) move keychain functions to dedicated namespace (defn reset-keychain! [] (.. (keychain/reset) @@ -82,7 +76,6 @@ {:init/get-device-UUID nil :init/init-store encryption-key :ui/listen-to-window-dimensions-change nil - :init/testfairy-alert nil :notifications/handle-initial-push-notification nil :network/listen-to-network-status nil :network/listen-to-connection-status nil @@ -220,10 +213,6 @@ :init/status-module-initialized status/module-initialized!) -(re-frame/reg-fx - :init/testfairy-alert - testfairy-alert!) - (re-frame/reg-fx :init/get-device-UUID (fn [] diff --git a/src/status_im/ui/screens/accounts/login/views.cljs b/src/status_im/ui/screens/accounts/login/views.cljs index eed50c46af..20692b8094 100644 --- a/src/status_im/ui/screens/accounts/login/views.cljs +++ b/src/status_im/ui/screens/accounts/login/views.cljs @@ -68,7 +68,7 @@ {:label (i18n/label :t/password) :placeholder (i18n/label :t/password) :ref #(reset! password-text-input %) - :auto-focus can-navigate-back? ;;this needed because keyboard overlays testfairy alert + :auto-focus true :on-submit-editing #(login-account @password-text-input) :on-change-text #(do (re-frame/dispatch [:set-in [:accounts/login :password] %]) diff --git a/src/status_im/ui/screens/profile/seed/views.cljs b/src/status_im/ui/screens/profile/seed/views.cljs index d41ea0d00d..19d7bb6ab7 100644 --- a/src/status_im/ui/screens/profile/seed/views.cljs +++ b/src/status_im/ui/screens/profile/seed/views.cljs @@ -64,8 +64,6 @@ (defview twelve-words [{:keys [mnemonic]}] (letsubs [mnemonic-vec (vec (map-indexed vector (clojure.string/split mnemonic #" "))) ref (reagent/atom nil)] - {:component-did-mount (fn [_] (when config/testfairy-enabled? - (.hideView js-dependencies/testfairy @ref)))} [react/view {:style styles/twelve-words-container} [react/text {:style styles/twelve-words-label} (i18n/label :t/your-recovery-phrase)] @@ -84,8 +82,6 @@ (defview input [error next-handler] (letsubs [ref (reagent/atom nil)] - {:component-did-mount (fn [_] (when config/testfairy-enabled? - (.hideView js-dependencies/testfairy @ref)))} [text-input/text-input-with-label {:placeholder (i18n/label :t/enter-word) :ref (partial reset! ref) diff --git a/src/status_im/utils/config.cljs b/src/status_im/utils/config.cljs index 4da89d3a99..6242b75e6a 100644 --- a/src/status_im/utils/config.cljs +++ b/src/status_im/utils/config.cljs @@ -14,11 +14,6 @@ ;; NOTE(oskarth): Feature flag deprecation lifecycles. We want to make sure ;; flags stay up to date and are removed once behavior introduced is stable. -;; -;; TESTFAIRY_ENABLED - indefinite - -;; CONFIG FLAGS -(def testfairy-enabled? (when-not platform/desktop? (enabled? (get-config :TESTFAIRY_ENABLED)))) (def bootnodes-settings-enabled? (enabled? (get-config :BOOTNODES_SETTINGS_ENABLED "1"))) (def rpc-networks-only? (enabled? (get-config :RPC_NETWORKS_ONLY "1"))) @@ -42,8 +37,6 @@ string/upper-case)) (def fleet (get-config :FLEET "eth.beta")) (def default-network (get-config :DEFAULT_NETWORK)) -;; the default value should be a string for `enabled?` to work correctly. -(def testfairy-token (get-config :TESTFAIRY_TOKEN)) (def instabug-token (get-config :INSTABUG_TOKEN)) (def pow-target (js/parseFloat (get-config :POW_TARGET "0.002"))) (def pow-time (js/parseInt (get-config :POW_TIME "1"))) diff --git a/translations/cs.json b/translations/cs.json index 1d8bc82065..763e5402a0 100644 --- a/translations/cs.json +++ b/translations/cs.json @@ -149,7 +149,6 @@ "no-contacts": "Ještě tu nejsou žádné kontakty", "status-sent": "Odesláno", "status-prompt": "Můžete vytvořit status, aby ostatní věděli, co nabízíte. Můžete používat i #hashtagy.", - "testfairy-title": "Varování!", "delete-contact-confirmation": "Tento kontakt bude smazán z tvých kontaktů", "datetime-today": "dnes", "add-a-status": "Přidat status...", @@ -196,7 +195,6 @@ "delete-group-prompt": "Kontaktů se to nedotkne", "edit-profile": "Upravit profil", "active-unknown": "Neznámý", - "testfairy-message": "Používáte aplikaci z nestabilního sestavení. Kvůli testování se v případě, že používáte Wi-Fi připojení, veškerá interakce nahrává (jako video a záznamy) a tyto informace může využít tým vývojářů pro řešení problémů. Uložená videa ani záznamy neobsahují Vaše hesla. Toto naahrávání se provádí jen v případě, že je aplikace nainstalována z nestabilního sestavení. Pokud je aplikace instalována z Obchodu Play nebo TestFlightu, nic se nenahrává.", "search-tags": "Napište tagy pro hledání", "public-key": "Veřejný klíč", "status-seen": "Přečteno", diff --git a/translations/de.json b/translations/de.json index 70462deb6b..bfdd9df1c4 100644 --- a/translations/de.json +++ b/translations/de.json @@ -217,7 +217,6 @@ "close-app-content": "Die App wird gestoppt und geschlossen. Wenn du sie wieder öffnest, wird das ausgewählte Netzwerk verwendet", "status-sent": "Gesendet", "status-prompt": "Erstelle deinen Status. Die Verwendung von #hashtags kann anderen helfen, dich zu finden und mit dir über das zu reden, was dir auf dem Herzen liegt", - "testfairy-title": "Warnung!", "delete-contact-confirmation": "Dieser Kontakt wird aus deinen Kontakten gelöscht", "datetime-today": "Heute", "add-a-status": "Einen Status hinzufügen...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "Unzureichendes Kapital", "edit-profile": "Profil bearbeiten", "active-unknown": "Unbekannt", - "testfairy-message": "Du verwendest eine App Version, die aus einem Nightly Build stammt. Zu Testzwecken zeichnet diese Versions Sitzungsdaten auf, solange eine Wlan-Verbindung genutzt wird. Das bedeutet, dass all deine Interaktionen mit der App gespeichert werden (als Video und Logs) und von unseren Entwicklungsteam verwendet werden könnten, um mögliche Probleme zu untersuchen. Gespeicherte Videos/Logs enthalten keine Passwörter. Aufnahmen werden nur erstellt, wenn die App aus einem Nightly Build installiert wurde. Es wird nichts aufgezeichnet, wenn die App aus dem PlayStore oder TestFlight installiert wurde.", "search-tags": "Tippe deine Suchbegriffe hier", "transaction-failed": "Transaktion fehlgeschlagen", "public-key": "Öffentlicher Schlüssel", diff --git a/translations/el.json b/translations/el.json index 3fb74935cd..d953a226fd 100644 --- a/translations/el.json +++ b/translations/el.json @@ -232,7 +232,6 @@ "close-app-content": "Η εφαρμογή θα κλείσει. Όταν την ξανανοίξετε, το επιλεγμένο δίκτυο θα χρησιμοποιηθεί", "status-sent": "Απεσταλμένα", "status-prompt": "Ορίστε την κατάστασή σας. Χρησιμοποιώντας #hastags θα βοηθήσετε τους άλλους να σας ανακαλύψουν και να μιλήσετε σχετικά με το τι έχετε στο μυαλό σας", - "testfairy-title": "Προειδοποίηση!", "delete-contact-confirmation": "Αυτή η επαφή θα καταργηθεί από τις επαφές σας", "datetime-today": "σήμερα", "add-a-status": "Προσθέστε μια κατάσταση...", @@ -288,7 +287,6 @@ "wallet-insufficient-funds": "Ανεπαρκείς πόροι", "edit-profile": "Επεξεργασία προφίλ", "active-unknown": "Άγνωστος", - "testfairy-message": "Χρησιμοποιείτε μια εφαρμογή εγκατεστημένη από ένα νυχτερινό build. Για πειραματικούς σκοπούς αυτό το build περιλαμβάνει καταγραφή της συνεδρίας σας, εφόσον χρησιμοποιείτε wifi. Έτσι αποθηκεύονται όλες οι αλληλεπιδράσεις σας με αυτήν την εφαρμογή (όπως βίντεο και logs) και θα μπορούσαν να χρησιμοποιηθούν από την ομάδα ανάπτυξής μας για τη διερεύνηση πιθανών προβλημάτων. Τα αποθηκευμένα βίντεο/logs δεν συμπεριλαμβάνουν τους κωδικούς πρόσβασής σας. Η καταγραφή γίνεται μόνο αν η εφαρμογή είναι εγκατεστημένη από ένα νυχτερινό build. Δεν καταγράφεται τίποτα εφόσον η εφαρμογή είναι εγκατεστημένη μέσω του PlayStore ή του TestFlight.", "wallet-invalid-chain-id": "Το δίκτυο δεν ταιριάζει: \n {{data}} αλλά η τρέχουσα αλυσίδα είναι {{chain}}", "search-tags": "Πληκτρολογήστε εδώ τις ετικέτες αναζήτησης", "transaction-failed": "Αποτυχία συναλλαγής", diff --git a/translations/en.json b/translations/en.json index e71e10436c..10ad3ce276 100644 --- a/translations/en.json +++ b/translations/en.json @@ -516,7 +516,6 @@ "word-n-description": "In order to check if you have backed up your recovery phrase correctly, enter the word #{{number}} above.", "status-sent": "Sent", "status-prompt": "Set your status. Using #hastags will help others discover you and talk about what's on your mind", - "testfairy-title": "Warning!", "topic-name-error": "Topic names use only lowercase letters (a to z) & dashes (-)", "delete-contact-confirmation": "This contact will be removed from your contacts", "datetime-today": "today", @@ -627,7 +626,6 @@ "active-unknown": "Unknown", "currency-display-name-crc": "Costa Rica Colon", "help-center": "Help Center", - "testfairy-message": "You are using an app installed from a nightly build. If you're connected to WiFi, your interactions with the app will be saved as video and logs. These recordings do not save your passwords. They are used by our development team to investigate possible issues and only occur if the app is install from a nightly build. Nothing is recorded if the app is installed from PlayStore or TestFlight.", "currency-display-name-mwk": "Malawian Kwacha", "wallet-collectibles": "Collectibles", "wallet-invalid-chain-id": "Network does not match: \n {{data}} but current chain is {{chain}}", diff --git a/translations/es.json b/translations/es.json index 1680ed346d..91f485c9cc 100644 --- a/translations/es.json +++ b/translations/es.json @@ -216,7 +216,6 @@ "close-app-content": "La app se detendrá y cerrará. Cuando la vuelvas a abrir, la red seleccionada será usada", "status-sent": "Enviado", "status-prompt": "Establece tu estado. Usando #hastags permitirás que los demás te encuentren y podrás hablar sobre lo que tengas en mente", - "testfairy-title": "¡Advertencia!", "delete-contact-confirmation": "Este contacto será eliminado de tus contactos", "datetime-today": "hoy", "add-a-status": "Añade un estado...", @@ -271,7 +270,6 @@ "wallet-insufficient-funds": "Fondos insuficientes", "edit-profile": "Editar perfil", "active-unknown": "Desconocido", - "testfairy-message": "Estás usando una aplicación instalada desde una versión nocturna. Por motivos de prueba esta versión incluye grabación de la sesión si se usa conexión wifi, así que todas las interacciones con esta aplicación se guardan (así como vídeo y registros) y pueden ser usadas por nuestro equipo de desarrollo para investigar posibles problemas. Los video/registros no incluyen tus contraseñas. La grabación se realiza solo si la app está instalada desde una versión nocturna. Nada se graba si la app está instalada desde la PlayStore o desde TestFlight.", "search-tags": "Escribe tus etiquetas de búsqueda aquí", "transaction-failed": "Transacción fallida", "public-key": "Clave pública", diff --git a/translations/es_419.json b/translations/es_419.json index f8726e762e..f54c21bbb3 100644 --- a/translations/es_419.json +++ b/translations/es_419.json @@ -594,8 +594,6 @@ "sync-in-progress": "Sincronizando...", "sync-synced": "Sincronizado", "test-networks": "Redes de prueba", - "testfairy-message": "Estás usando una aplicación instalada desde una compilación nocturna. Si estás conectado a WiFi, tus interacciones con la aplicación se guardarán como vídeo y registros. Estas grabaciones no guardan tus contraseñas. Estos son utilizados por nuestro equipo de desarrollo para investigar posibles problemas y sólo se producen si la aplicación está instalada desde una compilación nocturna. No se registra nada si la aplicación se instala desde PlayStore o TestFlight.", - "testfairy-title": "¡Advertencia!", "testnet-text": "Estás en {{testnet}} Testnet. No envíes ETH o SNT reales a tu dirección", "text-input-disabled": "Por favor, espere un momento...", "to": "Para", diff --git a/translations/fa.json b/translations/fa.json index 6e80782106..e04bff75a0 100644 --- a/translations/fa.json +++ b/translations/fa.json @@ -600,8 +600,6 @@ "sync-in-progress": "در حال همگام سازی...", "sync-synced": "همگام سازی شده", "test-networks": "شبکه های آزمایشی", - "testfairy-message": "شما در حال استفاده از نسخه ای از نرم افزار با عنوان nightly build هستید.\nدر صورتی که به WiFi متصل باشید تعاملات شما با برنامه به صورت گزارش تصویری یا نوشتاری ذخیره خواهند شد. این گزارش ها گذرواژه های شما را ذخیره نخواهند کرد و توسط تیم توسعه دهنده ما به منظور بررسی مسائل احتمالی آن هم تنها در زمانی که نسخه nightly build را نصب کرده باشید ذخیره می شوند. در صورتی که نسخه های PlayStore و TestFlight را نصب کرده باشید هیچ موردی به این صورت ثبت و ضبط نخواهد شد.", - "testfairy-title": "هشدار!", "testnet-text": "شما در حالت {{testnet}} Testnet هستید. از ارسال اتریوم یا استتوس واقعی به آدرس خود اجتناب کنید", "text-input-disabled": "لطفا چند لحظه صبر کنید...", "to": "به", diff --git a/translations/fr.json b/translations/fr.json index 5e20e9b6d1..dfed135fb3 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -237,7 +237,6 @@ "close-app-content": "L'application va s'arrêter et se fermer. Lors de la prochaine ouverture, le réseau sélectionné sera utilisé", "status-sent": "Envoyé", "status-prompt": "Créez un nouveau statut pour partager vos intérêts avec tout le monde. Vous pouvez aussi utiliser les #hashtags.", - "testfairy-title": "Avertissement!", "delete-contact-confirmation": "Ce contact sera supprimé de vos contacts", "datetime-today": "aujourd'hui", "add-a-status": "Ajoutez un statut...", @@ -294,7 +293,6 @@ "wallet-insufficient-funds": "Fonds insuffisants", "edit-profile": "Modifier profil", "active-unknown": "Inconnu", - "testfairy-message": "Vous utilisez une application installée à partir d'une version de développement. À des fins de test, cette version inclut l'enregistrement de session si la connexion Wi-Fi est utilisée. Toutes vos interactions avec cette application sont sauvegardées (vidéo et logs) et pourraient être utilisées par notre équipe de développement pour enquêter sur d'éventuels problèmes. Les vidéos / logs enregistrés n'incluent pas vos mots de passe. L'enregistrement est effectué uniquement si l'application est installée à partir d'une version instable (nightly builds). Rien n'est enregistré si l'application est installée depuis PlayStore ou TestFlight.", "search-tags": "Entrez vos mots clés ici", "transaction-failed": "Transaction échouée", "public-key": "Clé publique", diff --git a/translations/it.json b/translations/it.json index 3d5166bd80..f75ff96c8e 100644 --- a/translations/it.json +++ b/translations/it.json @@ -216,7 +216,6 @@ "close-app-content": "L'app si fermerà e si chiuderà. Quando la riaprirai, verrà utilizzata la rete selezionata", "status-sent": "Inviato", "status-prompt": "Imposta il tuo stato. L'utilizzo di #hastags aiuterà gli altri a scoprirti e a parlare di ciò che pensi", - "testfairy-title": "Attenzione!", "delete-contact-confirmation": "Questo contatto sarà eliminato dai tuoi contatti", "datetime-today": "oggi", "add-a-status": "Aggiungi uno stato...", @@ -271,7 +270,6 @@ "wallet-insufficient-funds": "Fondi insufficienti", "edit-profile": "Modifica profilo", "active-unknown": "Sconosciuto", - "testfairy-message": "Stai usando un app installata da una build nightly. Per scopi di testing questa build include sessioni di registrazione se è usata la connessione wifi, così tutte le tue interazioni con l'app sono salvate (sia video che log) e possono essere usate dal nostro team di sviluppo per investigare possibili problemi. I video/log salvati non includono le tue password. La registrazione è fatta solo se l'app è installata da una build nightly. Niente viene registrato se l'app è installata dal PlayStore o da TestFlight.", "search-tags": "Digita qui i tuoi tag di ricerca", "transaction-failed": "Transazione fallita", "public-key": "Chiave pubblica", diff --git a/translations/ja.json b/translations/ja.json index e7d30d1b6c..3c9ed682b4 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -226,7 +226,6 @@ "close-app-content": "アプリは停止して終了します。 これを再び開くと、選択したネットワークが使用されます", "status-sent": "送信済み", "status-prompt": "ステータスを設定します。#hastagsを使用すると、他の人があなたを見つけて、あなたのことをより知るのに役立ちます", - "testfairy-title": "警告!", "delete-contact-confirmation": "連絡帳よりこの連絡先を削除します", "datetime-today": "今日", "add-a-status": "ステータスを追加...", @@ -282,7 +281,6 @@ "wallet-insufficient-funds": "残高不足", "edit-profile": "プロフィールを編集", "active-unknown": "不明", - "testfairy-message": "あなたはインストールされたアプリは夜間のバージョンです。 テスト目的のために、このバージョンにWi-Fi接続が使用されている場合は会話記録が含まれています。このアプリとのすべてのやり取りは(動画やログとして)保存され、開発チームが問題の調査に使用する可能性があります。 保存されたビデオ/ログにはパスワードは含まれません。 会話記録は、アプリが夜間のバージョンからインストールされている場合にのみ実行されます。 アプリがPlayStoreまたはTestFlightからインストールされている場合は記録されません。", "wallet-invalid-chain-id": "ネットワークが一致しません: \n {{data}} でも、現在のチェーン は {{chain}}", "search-tags": "ここに検索タグを入力してください", "transaction-failed": "取引が失敗しました", diff --git a/translations/ko.json b/translations/ko.json index 79e941a355..8121dfb91d 100644 --- a/translations/ko.json +++ b/translations/ko.json @@ -617,8 +617,6 @@ "sync-in-progress": "동기화 중...", "sync-synced": "동기화 됨", "test-networks": "테스트 네트워크", - "testfairy-message": "귀하는 현재 나이틀리 빌드로 설치된 앱을 사용 중입니다. Wi-Fi가 연결되어 있을 경우, 앱에서 활동내역이 비디오와 로그로 저장됩니다. 여러분의 비밀번호는 절대 저장되지 않으며, 공유된 기록은 개발팀에서 기술적 문제를 확인하고 해결하기 위해 사용될 수 있습니다. 녹화는 앱이 나이틀리 빌드를 통해 설치되었을 때만 진행되며, 구글 플레이스토어 또는 TestFlight를 통해 설치했을 시에는 녹화가 진행되지 않습니다.", - "testfairy-title": "주의!", "testnet-text": "현재 {{testnet}} 테스트 네트워크에 있습니다. \n이 주소로 실제 ETH나 SNT를 보내면 안됩니다", "text-input-disabled": "잠시만 기다려주세요...", "to": "수신", diff --git a/translations/lt.json b/translations/lt.json index 54a42ec3f7..ec98c73b5d 100644 --- a/translations/lt.json +++ b/translations/lt.json @@ -217,7 +217,6 @@ "close-app-content": "Programa bus uždaryta. Kai iš naujo paleisite ją, pasirinktas tinklas bus naudojamas.", "status-sent": "Nusiųsta", "status-prompt": "Sukurkite būseną, kad žmonės žinotų, ką jūs siūlote. Taip pat galite naudoti #hashtagus.", - "testfairy-title": "Įspėjimas!", "delete-contact-confirmation": "Šis įrašas bus pašalintas iš kontaktų", "datetime-today": "šiandien", "add-a-status": "Pridėkite būseną...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "Nepakankamos lėšos", "edit-profile": "Redaguoti profilį", "active-unknown": "Nežinomas", - "testfairy-message": "Naudojate programą, įdiegtą iš naktinio kūrimo. Testavimo tikslais šiame kūrime įrašomas seansas, jei naudojamas \"Wi-Fi\" ryšys, taigi visa sąveika su programa išsaugoma (kaip vaizdo įrašas ir žurnalas) ir gali būti naudojama kūrėjų komandos, kad ištirtų galimus klausimus. Išsaugotas vaizdo įrašas/žurnalas neįtraukia slaptažodžių. Įrašymas atliekamas tik tada, jei programa yra įdiegta iš naktinio kūrimo. Nieko nėra įrašoma, jei programa įdiegta iš \"PlayStore\" arba \"TestFlight\"", "wallet-invalid-chain-id": "Tinklas nesutampa su: \n {{data}}", "search-tags": "Įveskite paieškos kriterijus", "transaction-failed": "Sandoris nepavyko", diff --git a/translations/ms.json b/translations/ms.json index a9ee1735cd..af1b91c1ff 100644 --- a/translations/ms.json +++ b/translations/ms.json @@ -618,8 +618,6 @@ "sync-in-progress": "sedang disegerakan...", "sync-synced": "Dalam penyegeraan", "test-networks": "Rangkaian ujian", - "testfairy-message": "Anda menggunakan aplikasi yang dipasang dari sumber binamalam. Jika anda disambungkan ke WiFi, interaksi anda dengan aplikasi akan disimpan sebagai video dan log. Rekod ini tidak menyimpan kata laluan anda. Ia digunakan oleh pasukan pembangunan kami untuk menyiasat masalah yang mungkin dan hanya berlaku jika aplikasi dipasang dari sumber binamalam. Tiada apa-apa yang direkodkan jika aplikasi dipasang dari PlayStore atau TestFlight.", - "testfairy-title": "Amaran!", "testnet-text": "Anda berada di {{testnet}} Testnet. Jangan hantar ETH atau SNT sebenar ke alamat anda", "text-input-disabled": "Sila tunggu sebentar...", "to": "Ke", diff --git a/translations/nb.json b/translations/nb.json index f774846f7c..b45f8875f1 100644 --- a/translations/nb.json +++ b/translations/nb.json @@ -154,7 +154,6 @@ "here-is-your-signing-phrase": "Her er din signeringsfrase. Du vil bruke den til å verifisere dine transaksjoner. *skriv den ned og hold den for deg selv!*", "status-sent": "Sendt", "status-prompt": "Legg til en status slik at andre forstår hva du tilbyr. Bruk gjerne #hashtag.", - "testfairy-title": "Advarsel!", "delete-contact-confirmation": "Kontakten vil bli fjernet fra kontaktlisten din", "datetime-today": "i dag", "add-a-status": "Legg til en status...", @@ -199,7 +198,6 @@ "delete-group-prompt": "Dette vil ikke affektere kontakter", "edit-profile": "Rediger profil", "active-unknown": "Ukjent", - "testfairy-message": "Du bruker en nattlig versjon av applikasjonen. I den nattlige versjonen tar vi opp video og kjører en del logging som kan bli tatt i bruk av våre utviklere for å etterforske potensielle problemer. Dette gjelder kun den nattlige versjonen, versjoner som er installert fra PlayStore eller TestFlight blir ikke logget.", "search-tags": "Søk etter etikett her", "public-key": "Offentlig nøkkel", "status-seen": "Sett", diff --git a/translations/pl.json b/translations/pl.json index 1b1190b95b..af0ef4efe2 100644 --- a/translations/pl.json +++ b/translations/pl.json @@ -578,8 +578,6 @@ "sync-in-progress": "Synchronizacja...", "sync-synced": "W synchronizacji", "test-networks": "Sieci testowe", - "testfairy-message": "Używasz aplikacji zainstalowanej z nocnej wersji. Jeśli masz połączenie z Wi-Fi, Twoje interakcje z aplikacją zostaną zapisane jako wideo i logi. Te nagrania nie zapisują twoich haseł. Są one używane przez nasz zespół do zbadania możliwych problemów i występują tylko wtedy, gdy aplikacja jest instalowana z nocnej wersji. Nic nie jest nagrywane, jeśli aplikacja jest zainstalowana z PlayStore lub TestFlight.", - "testfairy-title": "Ostrzeżenie!", "testnet-text": "Jesteś na {{testnet}} Testnet. Nie wysyłaj prawdziwych ETH lub SNT na twój adres", "text-input-disabled": "Proszę poczekać chwilę…", "to": "Do", diff --git a/translations/ru.json b/translations/ru.json index f72bf9d9f2..b2d64dc8db 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -615,8 +615,6 @@ "sync-in-progress": "Синхронизация...", "sync-synced": "Синхронизируется", "test-networks": "Тестовые сети", - "testfairy-message": "Вы используете приложение, установленное из ночной сборки. Для целей тестирования эта сборка включает в себя запись сеанса, если используется соединение Wi-Fi, так что все ваши взаимодействия с этим приложением сохраняются (как видео и логи) и могут использоваться нашей командой разработчиков для изучения возможных проблем. Сохраненные видео \/ логи не включают в себя ваши пароли. Запись выполняется только в том случае, если приложение установлено из ночной сборки. Ничего не записывается, если приложение установлено из PlayStore или TestFlight.", - "testfairy-title": "Предупреждение!", "testnet-text": "Вы находитесь в {{testnet}} Testnet. Не отправляйте реальный ETH или SNT на свой адрес", "text-input-disabled": "Пожалуйста, подождите...", "to": "Кому", diff --git a/translations/sr_rs_cyrl.json b/translations/sr_rs_cyrl.json index 6658277c81..1f87fba82d 100644 --- a/translations/sr_rs_cyrl.json +++ b/translations/sr_rs_cyrl.json @@ -217,7 +217,6 @@ "close-app-content": "Ова апликација ће да буде рестартована. Када је поново отворите, биће коришћена изабрана мрежа", "status-sent": "Послато", "status-prompt": "Поставите свој статус. Коришћење #тагова ће омогућити другима да те упознају и причају о ономе о чему размишљаш", - "testfairy-title": "Упозорење!", "delete-contact-confirmation": "Овај контакт ће бити уклоњен из вашег адресара", "datetime-today": "данас", "add-a-status": "Додајте статус...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "Недовољно средстава", "edit-profile": "Ажурирајте профил", "active-unknown": "Непознат", - "testfairy-message": "Користите експерименталну верзију апликације. За потребе тестирања ова верзија снима сесије уколико користите Wi-Fi конекцију. Свака ваша интеракција са овом апликацијом сачувана као видео запис и може бити коришћена од стране нашег развојног тима приликом истраживању могућих проблема. Сачувани видео не садржи ваше лозинке. Снимање се врши искључиво на екперименталним верзијама. Ништа се не снима уколико је апликација инсталирана преко PlayStore-а или TestFlight-а.", "search-tags": "Укуцајте кључне речи за претрагу", "transaction-failed": "Неуспела трансакција", "public-key": "Јавни кључ", diff --git a/translations/sr_rs_latn.json b/translations/sr_rs_latn.json index c25f8202b9..0481e1f945 100644 --- a/translations/sr_rs_latn.json +++ b/translations/sr_rs_latn.json @@ -214,7 +214,6 @@ "close-app-content": "Ova aplikacija će da bude restartovana. Kada je ponovo otvorite, biće korišćena izabrana mreža", "status-sent": "Poslato", "status-prompt": "Postavite svoj status. Korišćenje #tagova će omogućiti drugima da te upoznaju i pričaju o onome o čemu razmišljaš", - "testfairy-title": "Upozorenje!", "delete-contact-confirmation": "Ovaj kontakt će biti uklonjen iz vašeg adresara", "datetime-today": "danas", "add-a-status": "Dodajte status...", @@ -269,7 +268,6 @@ "wallet-insufficient-funds": "Nedovoljno sredstava", "edit-profile": "Ažurirajte profil", "active-unknown": "Nepoznat", - "testfairy-message": "Koristite eksperimentalnu verziju aplikacije. Za potrebe testiranja ova verzija snima sesije ukoliko koristite Wi-Fi konekciju. Svaka vaša interakcija sa ovom aplikacijom sačuvana kao video zapis i može biti korišćena od strane našeg razvojnog tima prilikom istraživanju mogućih problema. Sačuvani video ne sadrži vaše lozinke. Snimanje se vrši isključivo na ekperimentalnim verzijama. Ništa se ne snima ukoliko je aplikacija instalirana preko PlayStore-a ili TestFlight-a.", "search-tags": "Ukucajte ključne reči za pretragu", "transaction-failed": "Neuspela transakcija", "public-key": "Javni ključ", diff --git a/translations/sv.json b/translations/sv.json index 9c94e82e3f..4a9da02aa2 100644 --- a/translations/sv.json +++ b/translations/sv.json @@ -221,7 +221,6 @@ "close-app-content": "Denna app kommer att avslutas. När du öppnar den på nytt kommer det valda nätverket att användas", "status-sent": "Skickad", "status-prompt": "Lägg till din status. Använd #hashtags för att göra det lättare för andra att hitta dig och tala om det som intresserar dig", - "testfairy-title": "Varning!", "delete-contact-confirmation": "Denna kontakt tas bort från dina kontakter", "datetime-today": "idag", "add-a-status": "Lägg till status...", @@ -276,7 +275,6 @@ "wallet-insufficient-funds": "Otillräckligt kapital", "edit-profile": "Redigera profil", "active-unknown": "Okänd", - "testfairy-message": "Du använder en app som installerats från en nattlig version. För att underlätta testning spelar denna version in sessionen om WiFi används. All interaktion med appen sparas (som video och loggfiler) och kan användas av utvecklarna för att undersöka möjliga fel. Sparade video/loggfiler innehåller inte lösenord. Inspelningen sker endast om appen installeras från en nattlig version. Inget spelas in om appen installeras från PlayStore eller TestFlight.", "wallet-invalid-chain-id": "Felaktigt nätverk: \n {{data}}", "search-tags": "Skriv dina söktaggar här", "transaction-failed": "Transaktionen misslyckades", diff --git a/translations/uk.json b/translations/uk.json index 8be663773d..2aafc2f995 100644 --- a/translations/uk.json +++ b/translations/uk.json @@ -222,7 +222,6 @@ "close-app-content": "Додаток зупиниться і закриється. При повторному відкритті, буде використовуватися обрана мережа", "status-sent": "Відправлено", "status-prompt": "Вкажіть свій статус. Використання #хештегів допоможе іншим дізнатися про вас і розповісти про те, що у вас на думці", - "testfairy-title": "Попередження!", "delete-contact-confirmation": "Цей контакт буде видалено з ваших контактів", "datetime-today": "сьогодні", "add-a-status": "Додати статус...", @@ -278,7 +277,6 @@ "wallet-insufficient-funds": "Недостатньо коштів", "edit-profile": "Редагувати профіль", "active-unknown": "Невідомо", - "testfairy-message": "Ви використовуєте додаток, встановлений з нічної збірки. Для цілей тестування ця збірка включає в себе запис сеансу, якщо використовується з'єднання Wi-Fi, так що всі ваші взаємодії з цим додатком зберігаються (як відео і логи) і можуть використовуватися нашою командою розробників для вивчення можливих проблем. Збережені відео / логи не включають в себе ваші паролі. Запис виконується тільки в тому випадку, якщо додаток встановлено з нічного збирання. Нічого не записується, якщо додаток встановлено з PlayStore або TestFlight.", "wallet-invalid-chain-id": "Мережа не відповідає: \n {{data}}", "search-tags": "Введіть теги для пошуку сюди", "transaction-failed": "Не вдалося виконати транзакцію", diff --git a/translations/zh_Hans_CN.json b/translations/zh_Hans_CN.json index 1e212311f7..397aaf7050 100644 --- a/translations/zh_Hans_CN.json +++ b/translations/zh_Hans_CN.json @@ -618,8 +618,6 @@ "sync-in-progress": "正在同步...", "sync-synced": "已同步", "test-networks": "测试网络", - "testfairy-message": "你正在使用一个从 nightly build 上安装的应用。为了测试目的,在使用 WIFI 连接情况下,本构建包含了会话记录,即和本应用交互的所有记录(如视频和日志)将被保存,并且可能被我们的开发团队用于调查可能存在的问题。保存的视频、日志不包含你的密码。只有从 nightly build 下载安装本应用时,才会进行记录。如果本应用是从 PlayStore 或者 TestFlight 上下载安装,则不会记录。", - "testfairy-title": "警告!", "testnet-text": "你正在使用{{testnet}}测试网络,请不要向你的地址发送真实的 ETH 或者 SNT。", "text-input-disabled": "请稍候...", "to": "到", diff --git a/translations/zh_hans.json b/translations/zh_hans.json index 17fdd5c7db..69a4884845 100644 --- a/translations/zh_hans.json +++ b/translations/zh_hans.json @@ -217,7 +217,6 @@ "close-app-content": "应用将会停止并关闭。当你重新打开应用,选中的网络将会被使用", "status-sent": "已发送", "status-prompt": "设置你的 Status。使用 #hashtags 可以帮助其他人了解你,并且谈论你正在想些什么。", - "testfairy-title": "警告!", "delete-contact-confirmation": "此联系人将从你的联系人中删除", "datetime-today": "今天", "add-a-status": "添加状态...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "资金不足", "edit-profile": "编辑个人资料", "active-unknown": "未知", - "testfairy-message": "你正在使用一个从 nightly build 上安装的应用。为了测试目的,在使用 WIFI 连接情况下,本构建包含了会话记录,即和本应用交互的所有记录(如视频和日志)将被保存,并且可能被我们的开发团队用于调查可能存在的问题。保存的视频、日志不包含你的密码。只有从 nightly build 下载安装本应用时,才会进行记录。如果本应用是从 PlayStore 或者 TestFlight 上下载安装,则不会记录。", "search-tags": "在此处输入搜索标签", "transaction-failed": "交易失败", "public-key": "公钥", diff --git a/translations/zh_hant.json b/translations/zh_hant.json index 22d3fce4c1..8649c198c0 100644 --- a/translations/zh_hant.json +++ b/translations/zh_hant.json @@ -217,7 +217,6 @@ "close-app-content": "應用將會停止並關閉。當你重新打開應用,選中的網絡將會被使用", "status-sent": "已發送", "status-prompt": "設置你的 Status。使用 #hastags 可以幫助其他人瞭解你,並且談論你正在想些什麼。", - "testfairy-title": "警告!", "delete-contact-confirmation": "此聯繫人將從你的聯繫人中刪除", "datetime-today": "今天", "add-a-status": "添加狀態...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "資金不足", "edit-profile": "編輯個人資料", "active-unknown": "未知", - "testfairy-message": "你正在使用一個從 nightly build 上安裝的應用。為了測試目的,在使用 WIFI 連接情況下,本構建包含了會話記錄,即和本應用交互的所有記錄(如視頻和日誌)將被保存,並且可能被我們的開發團隊用於調查可能存在的問題。保存的視頻、日誌不包含你的密碼。只有從 nightly build 下載安裝本應用時,才會進行記錄。如果本應用是從 PlayStore 或者 TestFlight 上下載安裝,則不會記錄。", "search-tags": "在此處輸入搜索標籤", "transaction-failed": "交易失敗", "public-key": "公鑰", diff --git a/translations/zh_hant_hk.json b/translations/zh_hant_hk.json index 22d3fce4c1..8649c198c0 100644 --- a/translations/zh_hant_hk.json +++ b/translations/zh_hant_hk.json @@ -217,7 +217,6 @@ "close-app-content": "應用將會停止並關閉。當你重新打開應用,選中的網絡將會被使用", "status-sent": "已發送", "status-prompt": "設置你的 Status。使用 #hastags 可以幫助其他人瞭解你,並且談論你正在想些什麼。", - "testfairy-title": "警告!", "delete-contact-confirmation": "此聯繫人將從你的聯繫人中刪除", "datetime-today": "今天", "add-a-status": "添加狀態...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "資金不足", "edit-profile": "編輯個人資料", "active-unknown": "未知", - "testfairy-message": "你正在使用一個從 nightly build 上安裝的應用。為了測試目的,在使用 WIFI 連接情況下,本構建包含了會話記錄,即和本應用交互的所有記錄(如視頻和日誌)將被保存,並且可能被我們的開發團隊用於調查可能存在的問題。保存的視頻、日誌不包含你的密碼。只有從 nightly build 下載安裝本應用時,才會進行記錄。如果本應用是從 PlayStore 或者 TestFlight 上下載安裝,則不會記錄。", "search-tags": "在此處輸入搜索標籤", "transaction-failed": "交易失敗", "public-key": "公鑰", diff --git a/translations/zh_hant_sg.json b/translations/zh_hant_sg.json index c0ecb387d6..9f25d5638d 100644 --- a/translations/zh_hant_sg.json +++ b/translations/zh_hant_sg.json @@ -217,7 +217,6 @@ "close-app-content": "應用將會停止並關閉。當你重新開啟應用,選中的網路將會被使用", "status-sent": "已傳送", "status-prompt": "設定你的 Status。使用 #hastags 可以幫助其他人瞭解你,並且談論你正在想些什麼。", - "testfairy-title": "警告!", "delete-contact-confirmation": "此聯絡人將從你的聯絡人中刪除", "datetime-today": "今天", "add-a-status": "新增狀態...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "資金不足", "edit-profile": "編輯個人資料", "active-unknown": "未知", - "testfairy-message": "你正在使用一個從 nightly build 上安裝的應用。為了測試目的,在使用 WIFI 連線情況下,本構建包含了會話記錄,即和本應用互動的所有記錄(如視訊和日誌)將被儲存,並且可能被我們的開發團隊用於調查可能存在的問題。儲存的視訊、日誌不包含你的密碼。只有從 nightly build 下載安裝本應用時,才會進行記錄。如果本應用是從 PlayStore 或者 TestFlight 上下載安裝,則不會記錄。", "search-tags": "在此處輸入搜尋標籤", "transaction-failed": "交易失敗", "public-key": "公鑰", diff --git a/translations/zh_hant_tw.json b/translations/zh_hant_tw.json index c0ecb387d6..9f25d5638d 100644 --- a/translations/zh_hant_tw.json +++ b/translations/zh_hant_tw.json @@ -217,7 +217,6 @@ "close-app-content": "應用將會停止並關閉。當你重新開啟應用,選中的網路將會被使用", "status-sent": "已傳送", "status-prompt": "設定你的 Status。使用 #hastags 可以幫助其他人瞭解你,並且談論你正在想些什麼。", - "testfairy-title": "警告!", "delete-contact-confirmation": "此聯絡人將從你的聯絡人中刪除", "datetime-today": "今天", "add-a-status": "新增狀態...", @@ -272,7 +271,6 @@ "wallet-insufficient-funds": "資金不足", "edit-profile": "編輯個人資料", "active-unknown": "未知", - "testfairy-message": "你正在使用一個從 nightly build 上安裝的應用。為了測試目的,在使用 WIFI 連線情況下,本構建包含了會話記錄,即和本應用互動的所有記錄(如視訊和日誌)將被儲存,並且可能被我們的開發團隊用於調查可能存在的問題。儲存的視訊、日誌不包含你的密碼。只有從 nightly build 下載安裝本應用時,才會進行記錄。如果本應用是從 PlayStore 或者 TestFlight 上下載安裝,則不會記錄。", "search-tags": "在此處輸入搜尋標籤", "transaction-failed": "交易失敗", "public-key": "公鑰",