You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<stringname="error_title_deeplinkOnRampDisconnected">Something Went Wrong</string>
297
297
<stringname="error_title_deeplinkOnRampUnauthorized">Something Went Wrong</string>
298
-
<stringname="error_title_deeplinkOnRampUserRejected">Request Rejected in Phantom</string>
298
+
<stringname="error_title_deeplinkOnRampUserRejected">Request Rejected in %1$s</string>
299
299
<stringname="error_title_deeplinkOnRampInvalidInput">Something Went Wrong</string>
300
300
<stringname="error_title_deeplinkOnRampRequestedResourceNotAvailable">Something Went Wrong</string>
301
301
<stringname="error_title_deeplinkOnRampTransactionRejected">Something Went Wrong</string>
302
302
<stringname="error_title_deeplinkOnRampMethodNotFound">Something Went Wrong</string>
303
303
<stringname="error_title_deeplinkOnRampInternalError">Something Went Wrong</string>
304
304
<stringname="error_title_deeplinkOnRampUnknown">Something Went Wrong</string>
305
305
306
-
<stringname="error_description_deeplinkOnRampDecryption">Response from Phantom failed. Please try again</string>
307
-
<stringname="error_description_deeplinkOnRampDeserialization">Response from Phantom failed. Please try again</string>
306
+
<stringname="error_description_deeplinkOnRampDecryption">Response from %1$s failed. Please try again</string>
307
+
<stringname="error_description_deeplinkOnRampDeserialization">Response from %1$s failed. Please try again</string>
308
308
<stringname="error_description_deeplinkOnRampFailedToCreateTransaction">Failed to generate transaction. Please try again</string>
309
309
<stringname="error_description_deeplinkOnRampFailedToSimulateTransaction">Failed to simulate transaction on chain. Please try again</string>
310
310
<stringname="error_description_deeplinkOnRampFailedToCreateDeeplink">Failed to generate transaction. Please try again</string>
311
-
<stringname="error_description_deeplinkOnRampFailedToSendTransaction">Make sure you have enough Solana USDC and enough SOL in your Phantom account to complete the transaction</string>
312
-
<stringname="error_description_deeplinkOnRampDisconnected">Phantom could not connect to the network. Please try again</string>
311
+
<stringname="error_description_deeplinkOnRampFailedToSendTransaction">Make sure you have enough Solana USDC and enough SOL in your %1$s account to complete the transaction</string>
312
+
<stringname="error_description_deeplinkOnRampDisconnected">%1$s could not connect to the network. Please try again</string>
313
313
<stringname="error_description_deeplinkOnRampUnauthorized">The request has not been authorized by the user</string>
314
-
<stringname="error_description_deeplinkOnRampUserRejected">Make sure you have enough Solana USDC and enough SOL in your Phantom account to complete the transaction</string>
314
+
<stringname="error_description_deeplinkOnRampUserRejected">Make sure you have enough Solana USDC and enough SOL in your %1$s account to complete the transaction</string>
315
315
<stringname="error_description_deeplinkOnRampInvalidInput">The request was invalid. Please try again</string>
316
-
<stringname="error_description_deeplinkOnRampRequestedResourceNotAvailable">The requested resource is not available. This can occur if a previous confirmation modal was not closed in Phantom before requesting a new approval</string>
317
-
<stringname="error_description_deeplinkOnRampTransactionRejected">The transaction sent to Phantom was invalid</string>
318
-
<stringname="error_description_deeplinkOnRampMethodNotFound">Phantom did not recognize the request</string>
319
-
<stringname="error_description_deeplinkOnRampInternalError">Something went wrong within Phantom. Please try again</string>
316
+
<stringname="error_description_deeplinkOnRampRequestedResourceNotAvailable">The requested resource is not available. This can occur if a previous confirmation modal was not closed in %1$s before requesting a new approval</string>
317
+
<stringname="error_description_deeplinkOnRampTransactionRejected">The transaction sent to %1$s was invalid</string>
318
+
<stringname="error_description_deeplinkOnRampMethodNotFound">%1$s did not recognize the request</string>
319
+
<stringname="error_description_deeplinkOnRampInternalError">Something went wrong within %1$s. Please try again</string>
Copy file name to clipboardExpand all lines: apps/flipcash/shared/onramp/deeplinks/src/main/kotlin/com/flipcash/app/onramp/ExternalWalletOnRampHandler.kt
isDeeplinkOnRampError.DecryptionError-> context.getString(R.string.error_title_deeplinkOnRampDecryption) to context.getString(R.string.error_description_deeplinkOnRampDecryption)
255
-
isDeeplinkOnRampError.DeserializationError-> context.getString(R.string.error_title_deeplinkOnRampDeserialization) to context.getString(R.string.error_description_deeplinkOnRampDeserialization)
isDeeplinkOnRampError.DecryptionError-> context.getString(R.string.error_title_deeplinkOnRampDecryption) to context.getString(R.string.error_description_deeplinkOnRampDecryption).format(provider)
264
+
isDeeplinkOnRampError.DeserializationError-> context.getString(R.string.error_title_deeplinkOnRampDeserialization) to context.getString(R.string.error_description_deeplinkOnRampDeserialization).format(provider)
256
265
isDeeplinkOnRampError.FailedToCreateTransaction-> context.getString(R.string.error_title_deeplinkOnRampFailedToCreateTransaction) to context.getString(R.string.error_description_deeplinkOnRampFailedToCreateTransaction)
257
266
isDeeplinkOnRampError.FailedToSimulateTransaction-> context.getString(R.string.error_title_deeplinkOnRampFailedToSimulateTransaction) to context.getString(R.string.error_description_deeplinkOnRampFailedToSimulateTransaction)
258
267
isDeeplinkOnRampError.FailedToGenerateDeeplink-> context.getString(R.string.error_title_deeplinkOnRampFailedToCreateDeeplink) to context.getString(R.string.error_description_deeplinkOnRampFailedToCreateDeeplink)
259
-
isDeeplinkOnRampError.FailedToSendTransaction-> context.getString(R.string.error_title_deeplinkOnRampFailedToSendTransaction) to context.getString(R.string.error_description_deeplinkOnRampFailedToSendTransaction)
268
+
isDeeplinkOnRampError.FailedToSendTransaction-> context.getString(R.string.error_title_deeplinkOnRampFailedToSendTransaction) to context.getString(R.string.error_description_deeplinkOnRampFailedToSendTransaction).format(provider)
DeeplinkError.Disconnected-> context.getString(R.string.error_title_deeplinkOnRampDisconnected) to context.getString(R.string.error_description_deeplinkOnRampDisconnected)
270
+
DeeplinkError.Disconnected-> context.getString(R.string.error_title_deeplinkOnRampDisconnected) to context.getString(R.string.error_description_deeplinkOnRampDisconnected).format(provider)
262
271
DeeplinkError.Unauthorized-> context.getString(R.string.error_title_deeplinkOnRampUnauthorized) to context.getString(R.string.error_description_deeplinkOnRampUnauthorized)
263
-
DeeplinkError.UserRejectedRequest-> context.getString(R.string.error_title_deeplinkOnRampUserRejected) to context.getString(R.string.error_description_deeplinkOnRampUserRejected)
272
+
DeeplinkError.UserRejectedRequest-> context.getString(R.string.error_title_deeplinkOnRampUserRejected).format(provider) to context.getString(R.string.error_description_deeplinkOnRampUserRejected).format(provider)
264
273
DeeplinkError.InvalidInput-> context.getString(R.string.error_title_deeplinkOnRampInvalidInput) to context.getString(R.string.error_description_deeplinkOnRampInvalidInput)
265
-
DeeplinkError.RequestedResourceNotAvailable-> context.getString(R.string.error_title_deeplinkOnRampRequestedResourceNotAvailable) to context.getString(R.string.error_description_deeplinkOnRampRequestedResourceNotAvailable)
266
-
DeeplinkError.TransactionRejected-> context.getString(R.string.error_title_deeplinkOnRampTransactionRejected) to context.getString(R.string.error_description_deeplinkOnRampTransactionRejected)
267
-
DeeplinkError.MethodNotFound-> context.getString(R.string.error_title_deeplinkOnRampMethodNotFound) to context.getString(R.string.error_description_deeplinkOnRampMethodNotFound)
274
+
DeeplinkError.RequestedResourceNotAvailable-> context.getString(R.string.error_title_deeplinkOnRampRequestedResourceNotAvailable) to context.getString(R.string.error_description_deeplinkOnRampRequestedResourceNotAvailable).format(provider)
275
+
DeeplinkError.TransactionRejected-> context.getString(R.string.error_title_deeplinkOnRampTransactionRejected) to context.getString(R.string.error_description_deeplinkOnRampTransactionRejected).format(provider)
276
+
DeeplinkError.MethodNotFound-> context.getString(R.string.error_title_deeplinkOnRampMethodNotFound) to context.getString(R.string.error_description_deeplinkOnRampMethodNotFound).format(provider)
268
277
DeeplinkError.InternalError-> context.getString(R.string.error_title_deeplinkOnRampInternalError) to context.getString(R.string.error_description_deeplinkOnRampInternalError)
269
278
DeeplinkError.Unknown-> context.getString(R.string.error_title_deeplinkOnRampUnknown) to context.getString(R.string.error_description_deeplinkOnRampUnknown)
0 commit comments