@bigbinary/neeto-commons-frontend 4.13.93 → 4.13.94-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/configs/esbuild/index.js +4 -0
- package/configs/esbuild/plugins/packageTranslations.js +16 -0
- package/configs/esbuild/plugins/preval.js +16 -6
- package/configs/esbuild/plugins/reactGiphy.js +1 -0
- package/configs/scripts/buildTranslationImports.js +21 -0
- package/configs/scripts/getEnglishTranslation.js +11 -0
- package/configs/utils/packageTranslations.js +90 -0
- package/configs/vite/index.js +5 -0
- package/configs/vite/plugins/packageTranslations.js +14 -0
- package/configs/vite/plugins/preval.js +17 -11
- package/dist/cjs/initializers/i18n.js +120 -183
- package/dist/cjs/initializers/i18n.js.map +1 -1
- package/dist/cjs/initializers/index.js +43 -19
- package/dist/cjs/initializers/index.js.map +1 -1
- package/dist/cjs/react-utils/index.js +3 -0
- package/dist/cjs/react-utils/index.js.map +1 -1
- package/dist/cjs/react-utils/mount/mount.js +68 -69
- package/dist/cjs/react-utils/mount/mount.js.map +1 -1
- package/dist/cjs/react-utils/usePrefersReducedMotion/constants.js +6 -0
- package/dist/cjs/react-utils/usePrefersReducedMotion/constants.js.map +1 -0
- package/dist/cjs/react-utils/usePrefersReducedMotion/index.js +12 -0
- package/dist/cjs/react-utils/usePrefersReducedMotion/index.js.map +1 -0
- package/dist/cjs/react-utils/usePrefersReducedMotion/usePrefersReducedMotion.js +46 -0
- package/dist/cjs/react-utils/usePrefersReducedMotion/usePrefersReducedMotion.js.map +1 -0
- package/dist/initializers/i18n.js +120 -183
- package/dist/initializers/i18n.js.map +1 -1
- package/dist/initializers/index.js +43 -19
- package/dist/initializers/index.js.map +1 -1
- package/dist/react-utils/index.js +2 -0
- package/dist/react-utils/index.js.map +1 -1
- package/dist/react-utils/mount/mount.js +68 -69
- package/dist/react-utils/mount/mount.js.map +1 -1
- package/dist/react-utils/usePrefersReducedMotion/constants.js +4 -0
- package/dist/react-utils/usePrefersReducedMotion/constants.js.map +1 -0
- package/dist/react-utils/usePrefersReducedMotion/index.js +6 -0
- package/dist/react-utils/usePrefersReducedMotion/index.js.map +1 -0
- package/dist/react-utils/usePrefersReducedMotion/usePrefersReducedMotion.js +44 -0
- package/dist/react-utils/usePrefersReducedMotion/usePrefersReducedMotion.js.map +1 -0
- package/initializers.d.ts +1 -1
- package/package.json +4 -2
- package/react-utils.d.ts +68 -3
- package/src/translations/ar.json +111 -0
- package/src/translations/bg.json +111 -0
- package/src/translations/ca.json +111 -0
- package/src/translations/cs.json +111 -0
- package/src/translations/da.json +111 -0
- package/src/translations/de.json +111 -0
- package/src/translations/en.json +111 -0
- package/src/translations/es-MX.json +111 -0
- package/src/translations/es.json +111 -0
- package/src/translations/et.json +111 -0
- package/src/translations/fi.json +111 -0
- package/src/translations/fil.json +111 -0
- package/src/translations/fr.json +111 -0
- package/src/translations/he.json +111 -0
- package/src/translations/hi.json +111 -0
- package/src/translations/hr.json +111 -0
- package/src/translations/id.json +111 -0
- package/src/translations/it.json +111 -0
- package/src/translations/ja.json +111 -0
- package/src/translations/ko.json +111 -0
- package/src/translations/nl.json +111 -0
- package/src/translations/pl.json +111 -0
- package/src/translations/pt-BR.json +111 -0
- package/src/translations/pt.json +111 -0
- package/src/translations/ro.json +111 -0
- package/src/translations/ru.json +111 -0
- package/src/translations/sk.json +111 -0
- package/src/translations/sl.json +111 -0
- package/src/translations/sv.json +111 -0
- package/src/translations/th.json +111 -0
- package/src/translations/tr.json +111 -0
- package/src/translations/uk.json +111 -0
- package/src/translations/vi.json +111 -0
- package/src/translations/zh-CN.json +111 -0
- package/src/translations/zh-TW.json +111 -0
- package/configs/scripts/getPkgTranslations.js +0 -45
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generic": {
|
|
3
|
+
"error": "문제가 발생했습니다. 나중에 다시 시도해 주세요."
|
|
4
|
+
},
|
|
5
|
+
"authentication": {
|
|
6
|
+
"notLoggedIn": "인증할 수 없습니다. 계속하려면 로그인해 주세요!",
|
|
7
|
+
"couldNotAuth": "제공된 {{parameter}}로 인증할 수 없습니다.",
|
|
8
|
+
"incorrectPassword": "현재 비밀번호가 올바르지 않습니다. 다시 시도해 주세요.",
|
|
9
|
+
"incorrectEmailPassword": "이메일 또는 비밀번호가 올바르지 않습니다. 다시 시도해 주세요."
|
|
10
|
+
},
|
|
11
|
+
"authorization": {
|
|
12
|
+
"unauthorized": "해당 작업을 수행할 권한이 없습니다."
|
|
13
|
+
},
|
|
14
|
+
"resource": {
|
|
15
|
+
"add_one": "{{entity}}가 성공적으로 추가되었습니다.",
|
|
16
|
+
"add_other": "{{entity}}가 성공적으로 추가되었습니다.",
|
|
17
|
+
"save": "{{entity}}가 성공적으로 저장되었습니다.",
|
|
18
|
+
"save_one": "{{entity}}가 성공적으로 저장되었습니다.",
|
|
19
|
+
"save_other": "{{entity}}가 성공적으로 저장되었습니다.",
|
|
20
|
+
"update": "{{entity}}가 성공적으로 업데이트되었습니다.",
|
|
21
|
+
"update_one": "{{entity}}가 성공적으로 업데이트되었습니다.",
|
|
22
|
+
"update_other": "{{entity}}가 성공적으로 업데이트되었습니다.",
|
|
23
|
+
"delete_one": "{{entity}}가 성공적으로 삭제되었습니다.",
|
|
24
|
+
"delete_other": "{{entity}}가 성공적으로 삭제되었습니다.",
|
|
25
|
+
"clone": "{{entity}}가 성공적으로 복제되었습니다.",
|
|
26
|
+
"notFound": "{{entity}}가 존재하지 않습니다.",
|
|
27
|
+
"remove_one": "{{entity}}가 성공적으로 제거되었습니다.",
|
|
28
|
+
"remove_other": "{{entity}}가 성공적으로 제거되었습니다.",
|
|
29
|
+
"sent": "{{entity}}가 성공적으로 전송되었습니다.",
|
|
30
|
+
"merged": "{{entity}}가 성공적으로 병합되었습니다.",
|
|
31
|
+
"disconnected": "{{entity}}가 성공적으로 연결 해제되었습니다."
|
|
32
|
+
},
|
|
33
|
+
"otp": {
|
|
34
|
+
"sent": "OTP가 성공적으로 전송되었습니다.",
|
|
35
|
+
"invalid": "유효하지 않은 OTP",
|
|
36
|
+
"verified": "OTP가 성공적으로 검증되었습니다."
|
|
37
|
+
},
|
|
38
|
+
"upload": {
|
|
39
|
+
"error": "파일 업로드 중 오류가 발생했습니다."
|
|
40
|
+
},
|
|
41
|
+
"image": {
|
|
42
|
+
"profile": {
|
|
43
|
+
"removalFailed": "프로필 사진 삭제에 실패했습니다.",
|
|
44
|
+
"removalSuccess": "프로필 사진이 성공적으로 삭제되었습니다."
|
|
45
|
+
},
|
|
46
|
+
"contentTypeInvalid": "jpg, png, svg 이외의 형식은 지원하지 않습니다.",
|
|
47
|
+
"sizeOutOfRange": "크기는 {{maxSize, number}} MB를 초과할 수 없습니다."
|
|
48
|
+
},
|
|
49
|
+
"userRole": {
|
|
50
|
+
"deactivateActiveAdmin": "작업 공간에서 활성 관리자를 비활성화할 수 없습니다!"
|
|
51
|
+
},
|
|
52
|
+
"activeRecord": {
|
|
53
|
+
"error": {
|
|
54
|
+
"blankName": "이름은 비워둘 수 없습니다.",
|
|
55
|
+
"blankDescription": "설명은 비워둘 수 없습니다.",
|
|
56
|
+
"blankValue": "값은 비워둘 수 없습니다.",
|
|
57
|
+
"prefixType": "접두사 유형 {{value}}가 유효하지 않습니다.",
|
|
58
|
+
"minimumEntryLimit": "최소 항목 수는 {{maximumEntryLimit, number}} 이하이어야 합니다.",
|
|
59
|
+
"maximumEntryLimit": "최대 항목 수는 {{minimumEntryLimit, number}} 이상이어야 합니다."
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"sessions": {
|
|
63
|
+
"expiry": "세션이 만료되었습니다. 다시 로그인해 주세요."
|
|
64
|
+
},
|
|
65
|
+
"payment": {
|
|
66
|
+
"error": {
|
|
67
|
+
"incomplete": "결제를 완료할 수 없습니다."
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"invitations": {
|
|
71
|
+
"deleted_one": "초대장이 성공적으로 삭제되었습니다.",
|
|
72
|
+
"deleted_other": "{{count, number}}개의 초대장이 성공적으로 삭제되었습니다.",
|
|
73
|
+
"sent_one": "초대장이 성공적으로 전송되었습니다.",
|
|
74
|
+
"sent_other": "{{count, number}}개의 초대장이 성공적으로 전송되었습니다.",
|
|
75
|
+
"notFound": "{{email}}는 이 웹사이트를 테스트하도록 초대되지 않았습니다."
|
|
76
|
+
},
|
|
77
|
+
"github": {
|
|
78
|
+
"error": {
|
|
79
|
+
"webhookPermissionDenied": "권한이 거부되었습니다. 레포지토리에 대한 웹후크를 만들 수 있는 권한이 있는지 확인하세요.",
|
|
80
|
+
"primaryNonDeletable": "기본 Github 계정은 삭제할 수 없습니다."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"neetoCommons": {
|
|
84
|
+
"fallbackComponent": {
|
|
85
|
+
"somethingWentWrong": "죄송합니다. 문제가 발생했습니다.",
|
|
86
|
+
"description": "페이지를 <reloading>reloading</reloading> 해보세요.<br> 문제가 지속되면, <contactus>문의해 주세요</contactus>."
|
|
87
|
+
},
|
|
88
|
+
"toastr": {
|
|
89
|
+
"success": {
|
|
90
|
+
"copiedToClipboard": "클립보드에 복사되었습니다!"
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"networkError": "네트워크 오류입니다. 연결을 확인하고 다시 시도하세요.",
|
|
94
|
+
"noInternetConnection": "인터넷 연결이 없습니다."
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"notice": {
|
|
98
|
+
"errorOccurred": "오류가 발생했습니다."
|
|
99
|
+
},
|
|
100
|
+
"validators": {
|
|
101
|
+
"isRequired": "{{what}}는 필수입니다.",
|
|
102
|
+
"mustNotContainCapitalLetters": "{{what}}는 대문자를 포함할 수 없습니다.",
|
|
103
|
+
"mustNotContainSpaces": "{{what}}는 공백을 포함할 수 없습니다.",
|
|
104
|
+
"mustNotContainSpecialCharactersExceptHyphen": "{{what}}는 '-'를 제외한 특수 문자를 포함할 수 없습니다.",
|
|
105
|
+
"mustNotStartOrEndWithSpecialCharacters": "{{what}}는 특수 문자로 시작하거나 끝날 수 없습니다."
|
|
106
|
+
},
|
|
107
|
+
"copyToClipboard": {
|
|
108
|
+
"failed": "클립보드에 복사하는 데 실패했습니다."
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generic": {
|
|
3
|
+
"error": "Er is iets mis gegaan. Probeer het later opnieuw."
|
|
4
|
+
},
|
|
5
|
+
"authentication": {
|
|
6
|
+
"notLoggedIn": "Kon niet authenticeren, log alstublieft in om door te gaan!",
|
|
7
|
+
"couldNotAuth": "Kon niet authenticeren met de opgegeven {{parameter}}.",
|
|
8
|
+
"incorrectPassword": "Huidig wachtwoord is onjuist. Probeer het opnieuw.",
|
|
9
|
+
"incorrectEmailPassword": "Onjuist e-mailadres of wachtwoord. Probeer het opnieuw."
|
|
10
|
+
},
|
|
11
|
+
"authorization": {
|
|
12
|
+
"unauthorized": "U bent niet bevoegd om deze actie uit te voeren."
|
|
13
|
+
},
|
|
14
|
+
"resource": {
|
|
15
|
+
"add_one": "{{entity}} is succesvol toegevoegd.",
|
|
16
|
+
"add_other": "{{entity}} zijn succesvol toegevoegd.",
|
|
17
|
+
"save": "{{entity}} is succesvol opgeslagen.",
|
|
18
|
+
"save_one": "{{entity}} is succesvol opgeslagen.",
|
|
19
|
+
"save_other": "{{entity}} zijn succesvol opgeslagen.",
|
|
20
|
+
"update": "{{entity}} is succesvol bijgewerkt.",
|
|
21
|
+
"update_one": "{{entity}} is succesvol bijgewerkt.",
|
|
22
|
+
"update_other": "{{entity}} zijn succesvol bijgewerkt.",
|
|
23
|
+
"delete_one": "{{entity}} is succesvol verwijderd.",
|
|
24
|
+
"delete_other": "{{entity}} zijn succesvol verwijderd.",
|
|
25
|
+
"clone": "{{entity}} is succesvol gekloond.",
|
|
26
|
+
"notFound": "{{entity}} bestaat niet.",
|
|
27
|
+
"remove_one": "{{entity}} is succesvol verwijderd.",
|
|
28
|
+
"remove_other": "{{entity}} zijn succesvol verwijderd.",
|
|
29
|
+
"sent": "{{entity}} is succesvol verzonden.",
|
|
30
|
+
"merged": "{{entity}} zijn succesvol samengevoegd.",
|
|
31
|
+
"disconnected": "{{entity}} is succesvol losgekoppeld."
|
|
32
|
+
},
|
|
33
|
+
"otp": {
|
|
34
|
+
"sent": "OTP is succesvol verzonden.",
|
|
35
|
+
"invalid": "Ongeldige OTP",
|
|
36
|
+
"verified": "OTP is succesvol geverifieerd."
|
|
37
|
+
},
|
|
38
|
+
"upload": {
|
|
39
|
+
"error": "Er is een fout opgetreden bij het uploaden van het bestand."
|
|
40
|
+
},
|
|
41
|
+
"image": {
|
|
42
|
+
"profile": {
|
|
43
|
+
"removalFailed": "Verwijderen van profielfoto is mislukt.",
|
|
44
|
+
"removalSuccess": "Profielfoto succesvol verwijderd."
|
|
45
|
+
},
|
|
46
|
+
"contentTypeInvalid": "Andere dan jpg, png, svg worden niet ondersteund.",
|
|
47
|
+
"sizeOutOfRange": "Mag niet groter zijn dan {{maxSize, number}} MB."
|
|
48
|
+
},
|
|
49
|
+
"userRole": {
|
|
50
|
+
"deactivateActiveAdmin": "U kunt een actieve admin niet deactiveren vanuit de werkruimte!"
|
|
51
|
+
},
|
|
52
|
+
"activeRecord": {
|
|
53
|
+
"error": {
|
|
54
|
+
"blankName": "Naam mag niet leeg zijn.",
|
|
55
|
+
"blankDescription": "Beschrijving mag niet leeg zijn.",
|
|
56
|
+
"blankValue": "Waarde mag niet leeg zijn.",
|
|
57
|
+
"prefixType": "Prefix type {{value}} is niet geldig.",
|
|
58
|
+
"minimumEntryLimit": "Minimum invoerlimiet moet kleiner zijn dan of gelijk aan {{maximumEntryLimit, number}}.",
|
|
59
|
+
"maximumEntryLimit": "Maximum invoerlimiet moet groter zijn dan of gelijk aan {{minimumEntryLimit, number}}."
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"sessions": {
|
|
63
|
+
"expiry": "Uw sessie is verlopen. Log opnieuw in."
|
|
64
|
+
},
|
|
65
|
+
"payment": {
|
|
66
|
+
"error": {
|
|
67
|
+
"incomplete": "Uw betaling kon niet worden afgerond."
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"invitations": {
|
|
71
|
+
"deleted_one": "Uitnodiging is succesvol verwijderd.",
|
|
72
|
+
"deleted_other": "{{count, number}} uitnodigingen zijn succesvol verwijderd.",
|
|
73
|
+
"sent_one": "Uitnodiging is succesvol verzonden.",
|
|
74
|
+
"sent_other": "{{count, number}} uitnodigingen zijn succesvol verzonden.",
|
|
75
|
+
"notFound": "{{email}} is niet uitgenodigd om deze website te testen."
|
|
76
|
+
},
|
|
77
|
+
"github": {
|
|
78
|
+
"error": {
|
|
79
|
+
"webhookPermissionDenied": "Toegang geweigerd. Zorg ervoor dat u toestemming heeft om webhooks voor de repository te maken.",
|
|
80
|
+
"primaryNonDeletable": "Primaire Github-account kan niet worden verwijderd."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"neetoCommons": {
|
|
84
|
+
"fallbackComponent": {
|
|
85
|
+
"somethingWentWrong": "Sorry, er is iets mis gegaan.",
|
|
86
|
+
"description": "Probeer alstublieft <reloading>reloaden</reloading> van de pagina.<br> Als het probleem aanhoudt, <contactus>neem contact met ons op</contactus>."
|
|
87
|
+
},
|
|
88
|
+
"toastr": {
|
|
89
|
+
"success": {
|
|
90
|
+
"copiedToClipboard": "Kopiëren naar klembord geslaagd!"
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"networkError": "Netwerkfout. Controleer uw verbinding en probeer het opnieuw.",
|
|
94
|
+
"noInternetConnection": "Geen internetverbinding."
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"notice": {
|
|
98
|
+
"errorOccurred": "Er is een fout opgetreden."
|
|
99
|
+
},
|
|
100
|
+
"validators": {
|
|
101
|
+
"isRequired": "{{what}} is vereist.",
|
|
102
|
+
"mustNotContainCapitalLetters": "{{what}} mag geen hoofdletters bevatten.",
|
|
103
|
+
"mustNotContainSpaces": "{{what}} mag geen spaties bevatten.",
|
|
104
|
+
"mustNotContainSpecialCharactersExceptHyphen": "{{what}} mag geen speciale tekens bevatten, behalve '-'",
|
|
105
|
+
"mustNotStartOrEndWithSpecialCharacters": "{{what}} mag niet beginnen of eindigen met speciale tekens."
|
|
106
|
+
},
|
|
107
|
+
"copyToClipboard": {
|
|
108
|
+
"failed": "Kopiëren naar klembord is mislukt."
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generic": {
|
|
3
|
+
"error": "Coś poszło nie tak. Proszę spróbować ponownie później."
|
|
4
|
+
},
|
|
5
|
+
"authentication": {
|
|
6
|
+
"notLoggedIn": "Nie udało się uwierzytelnić, proszę zalogować się, aby kontynuować!",
|
|
7
|
+
"couldNotAuth": "Nie udało się uwierzytelnić przy użyciu podanego {{parameter}}.",
|
|
8
|
+
"incorrectPassword": "Aktualne hasło jest niepoprawne. Proszę spróbować ponownie.",
|
|
9
|
+
"incorrectEmailPassword": "Niepoprawny adres e-mail lub hasło. Proszę spróbować ponownie."
|
|
10
|
+
},
|
|
11
|
+
"authorization": {
|
|
12
|
+
"unauthorized": "Nie masz uprawnień do wykonania tej akcji."
|
|
13
|
+
},
|
|
14
|
+
"resource": {
|
|
15
|
+
"add_one": "{{entity}} został pomyślnie dodany.",
|
|
16
|
+
"add_other": "{{entity}} zostały pomyślnie dodane.",
|
|
17
|
+
"save": "{{entity}} został pomyślnie zapisany.",
|
|
18
|
+
"save_one": "{{entity}} został pomyślnie zapisany.",
|
|
19
|
+
"save_other": "{{entity}} zostały pomyślnie zapisane.",
|
|
20
|
+
"update": "{{entity}} został pomyślnie zaktualizowany.",
|
|
21
|
+
"update_one": "{{entity}} został pomyślnie zaktualizowany.",
|
|
22
|
+
"update_other": "{{entity}} zostały pomyślnie zaktualizowane.",
|
|
23
|
+
"delete_one": "{{entity}} został pomyślnie usunięty.",
|
|
24
|
+
"delete_other": "{{entity}} zostały pomyślnie usunięte.",
|
|
25
|
+
"clone": "{{entity}} został pomyślnie sklonowany.",
|
|
26
|
+
"notFound": "{{entity}} nie istnieje.",
|
|
27
|
+
"remove_one": "{{entity}} został pomyślnie usunięty.",
|
|
28
|
+
"remove_other": "{{entity}} zostały pomyślnie usunięte.",
|
|
29
|
+
"sent": "{{entity}} zostało pomyślnie wysłane.",
|
|
30
|
+
"merged": "{{entity}} zostały pomyślnie scalone.",
|
|
31
|
+
"disconnected": "{{entity}} został pomyślnie odłączony."
|
|
32
|
+
},
|
|
33
|
+
"otp": {
|
|
34
|
+
"sent": "OTP został pomyślnie wysłany.",
|
|
35
|
+
"invalid": "Niepoprawny OTP",
|
|
36
|
+
"verified": "OTP został pomyślnie zweryfikowany."
|
|
37
|
+
},
|
|
38
|
+
"upload": {
|
|
39
|
+
"error": "Wystąpił błąd podczas przesyłania pliku"
|
|
40
|
+
},
|
|
41
|
+
"image": {
|
|
42
|
+
"profile": {
|
|
43
|
+
"removalFailed": "Nie udało się usunąć zdjęcia profilowego",
|
|
44
|
+
"removalSuccess": "Zdjęcie profilowe zostało pomyślnie usunięte"
|
|
45
|
+
},
|
|
46
|
+
"contentTypeInvalid": "Obsługiwane są tylko formaty jpg, png, svg",
|
|
47
|
+
"sizeOutOfRange": "Nie powinno być większe niż {{maxSize, number}} MB"
|
|
48
|
+
},
|
|
49
|
+
"userRole": {
|
|
50
|
+
"deactivateActiveAdmin": "Nie możesz dezaktywować aktywnego administratora z przestrzeni roboczej!"
|
|
51
|
+
},
|
|
52
|
+
"activeRecord": {
|
|
53
|
+
"error": {
|
|
54
|
+
"blankName": "Nazwa nie może być pusta",
|
|
55
|
+
"blankDescription": "Opis nie może być pusty",
|
|
56
|
+
"blankValue": "Wartość nie może być pusta",
|
|
57
|
+
"prefixType": "Typ przedrostka {{value}} jest nieprawidłowy",
|
|
58
|
+
"minimumEntryLimit": "Minimalny limit wpisów musi być mniejszy lub równy {{maximumEntryLimit, number}}",
|
|
59
|
+
"maximumEntryLimit": "Maksymalny limit wpisów musi być większy lub równy {{minimumEntryLimit, number}}"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"sessions": {
|
|
63
|
+
"expiry": "Twoja sesja wygasła. Proszę zalogować się ponownie."
|
|
64
|
+
},
|
|
65
|
+
"payment": {
|
|
66
|
+
"error": {
|
|
67
|
+
"incomplete": "Twoja płatność nie mogła zostać zrealizowana"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"invitations": {
|
|
71
|
+
"deleted_one": "Zaproszenie zostało pomyślnie usunięte",
|
|
72
|
+
"deleted_other": "{{count, number}} zaproszenia zostały pomyślnie usunięte",
|
|
73
|
+
"sent_one": "Zaproszenie zostało pomyślnie wysłane",
|
|
74
|
+
"sent_other": "{{count, number}} zaproszenia zostały pomyślnie wysłane",
|
|
75
|
+
"notFound": "{{email}} nie został zaproszony do przetestowania tej strony."
|
|
76
|
+
},
|
|
77
|
+
"github": {
|
|
78
|
+
"error": {
|
|
79
|
+
"webhookPermissionDenied": "Odmowa dostępu. Upewnij się, że masz uprawnienia do tworzenia webhooków dla repozytorium.",
|
|
80
|
+
"primaryNonDeletable": "Główne konto Github nie może zostać usunięte."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"neetoCommons": {
|
|
84
|
+
"fallbackComponent": {
|
|
85
|
+
"somethingWentWrong": "Przepraszam, coś poszło nie tak.",
|
|
86
|
+
"description": "Proszę spróbować <reloading>przeładować</reloading> stronę.<br> Jeśli problem nadal występuje, <contactus>skontaktuj się z nami</contactus>."
|
|
87
|
+
},
|
|
88
|
+
"toastr": {
|
|
89
|
+
"success": {
|
|
90
|
+
"copiedToClipboard": "Skopiowano do schowka!"
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"networkError": "Błąd sieci. Sprawdź swoje połączenie i spróbuj ponownie.",
|
|
94
|
+
"noInternetConnection": "Brak połączenia z Internetem."
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"notice": {
|
|
98
|
+
"errorOccurred": "Wystąpił jakiś błąd."
|
|
99
|
+
},
|
|
100
|
+
"validators": {
|
|
101
|
+
"isRequired": "{{what}} jest wymagane.",
|
|
102
|
+
"mustNotContainCapitalLetters": "{{what}} nie może zawierać dużych liter.",
|
|
103
|
+
"mustNotContainSpaces": "{{what}} nie może zawierać spacji.",
|
|
104
|
+
"mustNotContainSpecialCharactersExceptHyphen": "{{what}} nie może zawierać żadnych znaków specjalnych, z wyjątkiem '-'",
|
|
105
|
+
"mustNotStartOrEndWithSpecialCharacters": "{{what}} nie może zaczynać się ani kończyć znakami specjalnymi."
|
|
106
|
+
},
|
|
107
|
+
"copyToClipboard": {
|
|
108
|
+
"failed": "Nie udało się skopiować do schowka"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generic": {
|
|
3
|
+
"error": "Algo deu errado. Por favor, tente novamente mais tarde."
|
|
4
|
+
},
|
|
5
|
+
"authentication": {
|
|
6
|
+
"notLoggedIn": "Não foi possível autenticar, por favor faça login para continuar!",
|
|
7
|
+
"couldNotAuth": "Não foi possível autenticar com o {{parameter}} fornecido.",
|
|
8
|
+
"incorrectPassword": "A senha atual está incorreta. Por favor, tente novamente.",
|
|
9
|
+
"incorrectEmailPassword": "Email ou senha incorretos. Por favor, tente novamente."
|
|
10
|
+
},
|
|
11
|
+
"authorization": {
|
|
12
|
+
"unauthorized": "Você não está autorizado a realizar esta ação."
|
|
13
|
+
},
|
|
14
|
+
"resource": {
|
|
15
|
+
"add_one": "{{entity}} foi adicionado com sucesso.",
|
|
16
|
+
"add_other": "{{entity}} foram adicionados com sucesso.",
|
|
17
|
+
"save": "{{entity}} foi salvo com sucesso.",
|
|
18
|
+
"save_one": "{{entity}} foi salvo com sucesso.",
|
|
19
|
+
"save_other": "{{entity}} foram salvos com sucesso.",
|
|
20
|
+
"update": "{{entity}} foi atualizado com sucesso.",
|
|
21
|
+
"update_one": "{{entity}} foi atualizado com sucesso.",
|
|
22
|
+
"update_other": "{{entity}} foram atualizados com sucesso.",
|
|
23
|
+
"delete_one": "{{entity}} foi excluído com sucesso.",
|
|
24
|
+
"delete_other": "{{entity}} foram excluídos com sucesso.",
|
|
25
|
+
"clone": "{{entity}} foi clonado com sucesso.",
|
|
26
|
+
"notFound": "{{entity}} não existe.",
|
|
27
|
+
"remove_one": "{{entity}} foi removido com sucesso.",
|
|
28
|
+
"remove_other": "{{entity}} foram removidos com sucesso.",
|
|
29
|
+
"sent": "{{entity}} enviado com sucesso.",
|
|
30
|
+
"merged": "{{entity}} foram mesclados com sucesso.",
|
|
31
|
+
"disconnected": "{{entity}} foi desconectado com sucesso."
|
|
32
|
+
},
|
|
33
|
+
"otp": {
|
|
34
|
+
"sent": "OTP foi enviado com sucesso.",
|
|
35
|
+
"invalid": "OTP inválido",
|
|
36
|
+
"verified": "OTP foi verificado com sucesso."
|
|
37
|
+
},
|
|
38
|
+
"upload": {
|
|
39
|
+
"error": "Ocorreu um erro ao enviar o arquivo"
|
|
40
|
+
},
|
|
41
|
+
"image": {
|
|
42
|
+
"profile": {
|
|
43
|
+
"removalFailed": "Falha ao remover a foto do perfil",
|
|
44
|
+
"removalSuccess": "Foto do perfil removida com sucesso"
|
|
45
|
+
},
|
|
46
|
+
"contentTypeInvalid": "Formatos além de jpg, png, svg não são suportados",
|
|
47
|
+
"sizeOutOfRange": "Não deve ser maior que {{maxSize, number}} MB"
|
|
48
|
+
},
|
|
49
|
+
"userRole": {
|
|
50
|
+
"deactivateActiveAdmin": "Você não pode desativar o admin ativo do espaço de trabalho!"
|
|
51
|
+
},
|
|
52
|
+
"activeRecord": {
|
|
53
|
+
"error": {
|
|
54
|
+
"blankName": "O nome não pode estar em branco",
|
|
55
|
+
"blankDescription": "A descrição não pode estar em branco",
|
|
56
|
+
"blankValue": "O valor não pode estar em branco",
|
|
57
|
+
"prefixType": "O tipo de prefixo {{value}} não é válido",
|
|
58
|
+
"minimumEntryLimit": "O limite mínimo de entrada deve ser menor ou igual a {{maximumEntryLimit, number}}",
|
|
59
|
+
"maximumEntryLimit": "O limite máximo de entrada deve ser maior ou igual a {{minimumEntryLimit, number}}"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"sessions": {
|
|
63
|
+
"expiry": "Sua sessão expirou. Por favor, faça login novamente."
|
|
64
|
+
},
|
|
65
|
+
"payment": {
|
|
66
|
+
"error": {
|
|
67
|
+
"incomplete": "Seu pagamento não pôde ser concluído"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"invitations": {
|
|
71
|
+
"deleted_one": "Convite foi excluído com sucesso",
|
|
72
|
+
"deleted_other": "{{count, number}} convites foram excluídos com sucesso",
|
|
73
|
+
"sent_one": "Convite foi enviado com sucesso",
|
|
74
|
+
"sent_other": "{{count, number}} convites foram enviados com sucesso",
|
|
75
|
+
"notFound": "{{email}} não foi convidado para testar este site."
|
|
76
|
+
},
|
|
77
|
+
"github": {
|
|
78
|
+
"error": {
|
|
79
|
+
"webhookPermissionDenied": "Permissão negada. Certifique-se de que você tem permissão para criar webhooks para o repositório.",
|
|
80
|
+
"primaryNonDeletable": "A conta principal do Github não pode ser excluída."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"neetoCommons": {
|
|
84
|
+
"fallbackComponent": {
|
|
85
|
+
"somethingWentWrong": "Desculpe, algo deu errado.",
|
|
86
|
+
"description": "Por favor, tente <recarregar>recarregar</recarregar> a página.<br> Se o problema persistir, <contactus>entre em contato conosco</contactus>."
|
|
87
|
+
},
|
|
88
|
+
"toastr": {
|
|
89
|
+
"success": {
|
|
90
|
+
"copiedToClipboard": "Copiado para a área de transferência!"
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"networkError": "Erro de rede. Verifique sua conexão e tente novamente.",
|
|
94
|
+
"noInternetConnection": "Sem conexão com a Internet."
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"notice": {
|
|
98
|
+
"errorOccurred": "Ocorreu um erro."
|
|
99
|
+
},
|
|
100
|
+
"validators": {
|
|
101
|
+
"isRequired": "{{what}} é obrigatório.",
|
|
102
|
+
"mustNotContainCapitalLetters": "{{what}} não deve conter letras maiúsculas.",
|
|
103
|
+
"mustNotContainSpaces": "{{what}} não deve conter espaços.",
|
|
104
|
+
"mustNotContainSpecialCharactersExceptHyphen": "{{what}} não deve conter caracteres especiais, exceto '-'",
|
|
105
|
+
"mustNotStartOrEndWithSpecialCharacters": "{{what}} não deve começar ou terminar com caracteres especiais."
|
|
106
|
+
},
|
|
107
|
+
"copyToClipboard": {
|
|
108
|
+
"failed": "Falha ao copiar para a área de transferência"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generic": {
|
|
3
|
+
"error": "Algo deu errado. Por favor, tente novamente mais tarde."
|
|
4
|
+
},
|
|
5
|
+
"authentication": {
|
|
6
|
+
"notLoggedIn": "Não foi possível autenticar, por favor faça login para continuar!",
|
|
7
|
+
"couldNotAuth": "Não foi possível autenticar com o {{parameter}} fornecido.",
|
|
8
|
+
"incorrectPassword": "A senha atual está incorreta. Por favor, tente novamente.",
|
|
9
|
+
"incorrectEmailPassword": "Email ou senha incorretos. Por favor, tente novamente."
|
|
10
|
+
},
|
|
11
|
+
"authorization": {
|
|
12
|
+
"unauthorized": "Você não está autorizado a realizar esta ação."
|
|
13
|
+
},
|
|
14
|
+
"resource": {
|
|
15
|
+
"add_one": "{{entity}} foi adicionado com sucesso.",
|
|
16
|
+
"add_other": "{{entity}} foram adicionados com sucesso.",
|
|
17
|
+
"save": "{{entity}} foi salvo com sucesso.",
|
|
18
|
+
"save_one": "{{entity}} foi salvo com sucesso.",
|
|
19
|
+
"save_other": "{{entity}} foram salvos com sucesso.",
|
|
20
|
+
"update": "{{entity}} foi atualizado com sucesso.",
|
|
21
|
+
"update_one": "{{entity}} foi atualizado com sucesso.",
|
|
22
|
+
"update_other": "{{entity}} foram atualizados com sucesso.",
|
|
23
|
+
"delete_one": "{{entity}} foi deletado com sucesso.",
|
|
24
|
+
"delete_other": "{{entity}} foram deletados com sucesso.",
|
|
25
|
+
"clone": "{{entity}} foi clonado com sucesso.",
|
|
26
|
+
"notFound": "{{entity}} não existe.",
|
|
27
|
+
"remove_one": "{{entity}} foi removido com sucesso.",
|
|
28
|
+
"remove_other": "{{entity}} foram removidos com sucesso.",
|
|
29
|
+
"sent": "{{entity}} enviado com sucesso.",
|
|
30
|
+
"merged": "{{entity}} foram mesclados com sucesso.",
|
|
31
|
+
"disconnected": "{{entity}} foi desconectado com sucesso."
|
|
32
|
+
},
|
|
33
|
+
"otp": {
|
|
34
|
+
"sent": "OTP foi enviado com sucesso.",
|
|
35
|
+
"invalid": "OTP inválido",
|
|
36
|
+
"verified": "OTP foi verificado com sucesso."
|
|
37
|
+
},
|
|
38
|
+
"upload": {
|
|
39
|
+
"error": "Ocorreu um erro ao enviar o arquivo"
|
|
40
|
+
},
|
|
41
|
+
"image": {
|
|
42
|
+
"profile": {
|
|
43
|
+
"removalFailed": "Falha ao remover a foto de perfil",
|
|
44
|
+
"removalSuccess": "Foto de perfil removida com sucesso"
|
|
45
|
+
},
|
|
46
|
+
"contentTypeInvalid": "Outros que não sejam jpg, png, svg não são suportados",
|
|
47
|
+
"sizeOutOfRange": "Não deve exceder {{maxSize, number}} MB"
|
|
48
|
+
},
|
|
49
|
+
"userRole": {
|
|
50
|
+
"deactivateActiveAdmin": "Você não pode desativar um administrador ativo do espaço de trabalho!"
|
|
51
|
+
},
|
|
52
|
+
"activeRecord": {
|
|
53
|
+
"error": {
|
|
54
|
+
"blankName": "O nome não pode estar em branco",
|
|
55
|
+
"blankDescription": "A descrição não pode estar em branco",
|
|
56
|
+
"blankValue": "O valor não pode estar em branco",
|
|
57
|
+
"prefixType": "O tipo de prefixo {{value}} não é válido",
|
|
58
|
+
"minimumEntryLimit": "O limite mínimo de entradas deve ser menor ou igual a {{maximumEntryLimit, number}}",
|
|
59
|
+
"maximumEntryLimit": "O limite máximo de entradas deve ser maior ou igual a {{minimumEntryLimit, number}}"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"sessions": {
|
|
63
|
+
"expiry": "Sua sessão expirou. Por favor, faça login novamente."
|
|
64
|
+
},
|
|
65
|
+
"payment": {
|
|
66
|
+
"error": {
|
|
67
|
+
"incomplete": "Seu pagamento não pôde ser concluído"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"invitations": {
|
|
71
|
+
"deleted_one": "Convite foi deletado com sucesso",
|
|
72
|
+
"deleted_other": "{{count, number}} convites foram deletados com sucesso",
|
|
73
|
+
"sent_one": "Convite foi enviado com sucesso",
|
|
74
|
+
"sent_other": "{{count, number}} convites foram enviados com sucesso",
|
|
75
|
+
"notFound": "{{email}} não foi convidado para testar este site."
|
|
76
|
+
},
|
|
77
|
+
"github": {
|
|
78
|
+
"error": {
|
|
79
|
+
"webhookPermissionDenied": "Permissão negada. Certifique-se de que você tem permissão para criar webhooks para o repositório.",
|
|
80
|
+
"primaryNonDeletable": "A conta Github primária não pode ser deletada."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"neetoCommons": {
|
|
84
|
+
"fallbackComponent": {
|
|
85
|
+
"somethingWentWrong": "Desculpe, algo deu errado.",
|
|
86
|
+
"description": "Por favor, tente <recarregar>recarregar</recarregar> a página.<br> Se o problema persistir, <contactus>entre em contato conosco</contactus>."
|
|
87
|
+
},
|
|
88
|
+
"toastr": {
|
|
89
|
+
"success": {
|
|
90
|
+
"copiedToClipboard": "Copiado para a área de transferência!"
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"networkError": "Erro de rede. Verifique sua conexão e tente novamente.",
|
|
94
|
+
"noInternetConnection": "Sem conexão à Internet."
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"notice": {
|
|
98
|
+
"errorOccurred": "Ocorreu um erro."
|
|
99
|
+
},
|
|
100
|
+
"validators": {
|
|
101
|
+
"isRequired": "{{what}} é obrigatório.",
|
|
102
|
+
"mustNotContainCapitalLetters": "{{what}} não deve conter letras maiúsculas.",
|
|
103
|
+
"mustNotContainSpaces": "{{what}} não deve conter espaços.",
|
|
104
|
+
"mustNotContainSpecialCharactersExceptHyphen": "{{what}} não deve conter caracteres especiais, exceto '-'",
|
|
105
|
+
"mustNotStartOrEndWithSpecialCharacters": "{{what}} não deve começar ou terminar com caracteres especiais."
|
|
106
|
+
},
|
|
107
|
+
"copyToClipboard": {
|
|
108
|
+
"failed": "Falha ao copiar para a área de transferência"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|