-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSKEStrings.m
More file actions
94 lines (64 loc) · 2.16 KB
/
SKEStrings.m
File metadata and controls
94 lines (64 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//
// SKEStrings.m
// Demo
//
// Created by Carolina Franco on 11/3/18.
// Copyright © 2018 Carolina Franco. All rights reserved.
//
#import "SKEStrings.h"
@implementation SKEStrings
+(NSString *)SKENoInternetConexion
{ return @"No se encontró conexión a internet"; }
+(NSString *)SKENoAccess
{ return @"Habilita el \"Acceso Completo\" en ajustes"; }
+(NSString *)SKELoading
{ return @"Cargando ..."; }
+(NSString *)SKEOpenApp
{ return @"Abrir App"; }
+(NSString *)SKEOpenSettings
{ return @"Abrir Ajustes"; }
+(NSString *)SKENotDeviceID
{ return @"Debes activar el teclado dentro de la app"; }
+(NSString *)SKENoBalanceCard
{ return @"Debes agregar al menos una tarjeta o tener al menos $10 en tu balance"; }
+(NSString *)SKENoPin
{ return @"Por seguridad debes crear un NIP desde la aplicación"; }
+(NSString *)SKENotAllowedHost
{ return @"No puedes usar esta app con el teclado"; }
+(NSString *)SKEUserNotLoaded
{ return @"No hemos podido cargar tu usuario."; }
+(NSString *)SKETitleError
{ return @"¡Ups!"; }
+(NSString *)SKEMaximumAmount
{ return @"El monto máximo es: "; }
+(NSString *)SKEMinimumAmount
{ return @"El monto mínimo es: "; }
+(NSString *)SKEBtnContinueSend
{ return @"Continuar"; }
+(NSString *)SKEBtnSend
{ return @"Enviar"; }
+(NSString *)SKENoValidPIN
{ return @"El NIP ingresado es incorrecto"; }
+(NSString *)SKEExceedMaxPINAttemps
{ return @"Has sobre pasado el máximo de intentos"; }
+(NSString *)SKEHadSendYou
{ return @" %@ te envió %@ con Swap. Cóbralo aquí: %@"; }
+(NSString *)SKEHadSendYouWA
{ return @" %@ te envió *%@* con *Swap*. Cóbralo aquí: %@"; }
+(NSString *)SKESendTitle
{ return @"Enviaste:"; }
+(NSString *)SKEPaymentErrorTitle
{ return @"Ups, algo salió mal. "; }
+(NSString *)SKEAuthorizePaymentTouchID
{ return @"Autoriza tu pago!"; }
+(NSString *)SKENoTransacctions
{ return @"Aún no tienes transacciones"; }
+(NSString *)SKEErrorGettingTransacctions
{ return @"Error al obtener transacciones"; }
+(NSString *)SKEAuthenticationError
{ return @"Error de autenticación"; }
+(NSString *)SKENextKeyboard
{ return @"Sig. Teclado"; }
+(NSString *)SKESuccesfullCanceled
{ return @"Cancelado correctamente."; }
@end