forked from scdoshi/jquery-ajaxchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.ajaxchimp.langs.js
69 lines (65 loc) · 3.75 KB
/
jquery.ajaxchimp.langs.js
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
(function ($) {
'use strict';
// ISO-693-1 Language codes: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
// Submit Message
// 'submit': 'Submitting...'
// Mailchimp Responses
// 0: 'We have sent you a confirmation email'
// 1: 'Please enter a value'
// 2: 'An email address must contain a single @'
// 3: 'The domain portion of the email address is invalid (the portion after the @: )'
// 4: 'The username portion of the email address is invalid (the portion before the @: )'
// 5: 'This email address looks fake or invalid. Please enter a real email address'
$.ajaxChimp.translations = {
// Translation via https://github.com/lifeisfoo
'it': {
'submit': 'Registrazione in corso...',
0: 'Ti abbiamo inviato una mail di conferma',
1: 'Per favore inserisci una mail',
2: 'Un indirizzo valido contiene una sola @',
3: 'Il dominio della tua mail non è valido (la porzione dopo la @: )',
4: 'Il nome della mail non è valido (la porzione prima della @: )',
5: 'L\'indirizzo email sembra finto o non valido: per favore inseriscine uno reale'
},
// Translation via https://github.com/Cube42
'de': {
'submit': 'Senden...',
0: 'Wir haben Ihnen eine Bestätigungs-E-Mail geschickt',
1: 'Bitte geben Sie Ihre E-Mail-Adresse ein',
2: 'Eine E-Mail-Adresse muss ein @ enthalten',
3: 'Der Domain-Teil der E-Mail-Adresse ist ungültig (der Teil nach dem @)',
4: 'Der Benutzername der E-Mail-Adresse ist ungültig (der Teil vor dem @)',
5: 'Diese E-Mail-Adresse scheint gefälscht oder ungültig zu sein. Bitte geben Sie eine echte E-Mail-Adresse an!'
},
// Translation via https://github.com/designorant
'pl': {
'submit': 'Wysyłanie...',
0: 'Email z potwierdzeniem został wysłany',
1: 'Proszę podać adres email',
2: 'Adres email musi zawierać jeden znak @',
3: 'Część adresu z domeną jest niepoprawna (część po znaku @: )',
4: 'Część adresu z użytkownikiem jest niepoprawna (część przed znakiem @: )',
5: 'Ten adres wygląda na nieprawdziwy lub niepoprawny. Proszę podać prawdziwy adres email.'
},
// The translations below are from google translate, and may not be accurate.
// Pull requests with translations for other languages as well as corrections are welcome.
'es': {
'submit': 'Grabación en curso...',
0: 'Te hemos enviado un email de confirmación',
1: 'Por favor, introduzca un valor',
2: 'Una dirección de correo electrónico debe contener una sola @',
3: 'La parte de dominio de la dirección de correo electrónico no es válida (la parte después de la @:)',
4: 'La parte de usuario de la dirección de correo electrónico no es válida (la parte antes de la @:)',
5: 'Esta dirección de correo electrónico se ve falso o no válido. Por favor, introduce una dirección de correo electrónico real'
},
'fr': {
'submit': 'Enregistrement en cours...',
0: 'Nous vous avons envoyé un e-mail de confirmation',
1: 'S\'il vous plaît entrer une valeur',
2: 'Une adresse e-mail doit contenir un seul @',
3: 'La partie domaine de l\'adresse e-mail n\'est pas valide (la partie après le @:)',
4: 'La partie nom d\'utilisateur de l\'adresse email n\'est pas valide (la partie avant le signe @:)',
5: 'Cette adresse e-mail semble faux ou non valides. S\'il vous plaît entrer une adresse email valide'
}
};
})(jQuery);