@harjs/react-ui 1.1.3 → 1.1.5
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/dist/libs/infrastructure/shared/DATE.d.ts +2 -1
- package/dist/libs/infrastructure/shared/DATE.js +1 -1
- package/package.json +1 -1
- package/dist/libs/core/application/locales/index.d.ts +0 -4
- package/dist/libs/core/application/locales/index.js +0 -3
- package/dist/libs/core/application/locales/notification/INotificationLocale.d.ts +0 -59
- package/dist/libs/core/application/locales/notification/INotificationLocale.js +0 -1
- package/dist/libs/core/application/locales/notification/en.d.ts +0 -3
- package/dist/libs/core/application/locales/notification/en.js +0 -85
- package/dist/libs/core/application/locales/notification/tr.d.ts +0 -3
- package/dist/libs/core/application/locales/notification/tr.js +0 -85
package/package.json
CHANGED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
interface INotificationLocale {
|
|
2
|
-
"Notification.200.Title": string;
|
|
3
|
-
"Notification.200.Message": string;
|
|
4
|
-
"Notification.200.Login.Title": string;
|
|
5
|
-
"Notification.200.Login.Message": string;
|
|
6
|
-
"Notification.201.Title": string;
|
|
7
|
-
"Notification.201.Message": string;
|
|
8
|
-
"Notification.202.Title": string;
|
|
9
|
-
"Notification.202.Message": string;
|
|
10
|
-
"Notification.204.Title": string;
|
|
11
|
-
"Notification.204.Message": string;
|
|
12
|
-
"Notification.204.Delete.Title": string;
|
|
13
|
-
"Notification.204.Delete.Message": string;
|
|
14
|
-
"Notification.301.Title": string;
|
|
15
|
-
"Notification.301.Message": string;
|
|
16
|
-
"Notification.302.Title": string;
|
|
17
|
-
"Notification.302.Message": string;
|
|
18
|
-
"Notification.304.Title": string;
|
|
19
|
-
"Notification.304.Message": string;
|
|
20
|
-
"Notification.307.Title": string;
|
|
21
|
-
"Notification.307.Message": string;
|
|
22
|
-
"Notification.400.Title": string;
|
|
23
|
-
"Notification.400.Message": string;
|
|
24
|
-
"Notification.401.Title": string;
|
|
25
|
-
"Notification.401.Message": string;
|
|
26
|
-
"Notification.403.Title": string;
|
|
27
|
-
"Notification.403.Message": string;
|
|
28
|
-
"Notification.404.Title": string;
|
|
29
|
-
"Notification.404.Message": string;
|
|
30
|
-
"Notification.405.Title": string;
|
|
31
|
-
"Notification.405.Message": string;
|
|
32
|
-
"Notification.406.Title": string;
|
|
33
|
-
"Notification.406.Message": string;
|
|
34
|
-
"Notification.408.Title": string;
|
|
35
|
-
"Notification.408.Message": string;
|
|
36
|
-
"Notification.409.Title": string;
|
|
37
|
-
"Notification.409.Message": string;
|
|
38
|
-
"Notification.410.Title": string;
|
|
39
|
-
"Notification.410.Message": string;
|
|
40
|
-
"Notification.413.Title": string;
|
|
41
|
-
"Notification.413.Message": string;
|
|
42
|
-
"Notification.415.Title": string;
|
|
43
|
-
"Notification.415.Message": string;
|
|
44
|
-
"Notification.429.Title": string;
|
|
45
|
-
"Notification.429.Message": string;
|
|
46
|
-
"Notification.500.Title": string;
|
|
47
|
-
"Notification.500.Message": string;
|
|
48
|
-
"Notification.501.Title": string;
|
|
49
|
-
"Notification.501.Message": string;
|
|
50
|
-
"Notification.502.Title": string;
|
|
51
|
-
"Notification.502.Message": string;
|
|
52
|
-
"Notification.503.Title": string;
|
|
53
|
-
"Notification.503.Message": string;
|
|
54
|
-
"Notification.504.Title": string;
|
|
55
|
-
"Notification.504.Message": string;
|
|
56
|
-
"Notification.505.Title": string;
|
|
57
|
-
"Notification.505.Message": string;
|
|
58
|
-
}
|
|
59
|
-
export default INotificationLocale;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
const NotificationEN = {
|
|
2
|
-
// 200 OK -> GET Processes
|
|
3
|
-
"Notification.200.Title": "Operation Successful",
|
|
4
|
-
"Notification.200.Message": "Data was successfully retrieved.",
|
|
5
|
-
"Notification.200.Login.Title": "Login Successful",
|
|
6
|
-
"Notification.200.Login.Message": "Your login was successfully completed. You now have access to all features.",
|
|
7
|
-
// 201 Created -> POST Processes
|
|
8
|
-
"Notification.201.Title": "Record Created",
|
|
9
|
-
"Notification.201.Message": "The record was successfully created.",
|
|
10
|
-
// 202 Accepted -> Processing
|
|
11
|
-
"Notification.202.Title": "Request Accepted",
|
|
12
|
-
"Notification.202.Message": "The request has been accepted and is being processed.",
|
|
13
|
-
// 204 No Content -> PUT Processes
|
|
14
|
-
"Notification.204.Title": "Operation Successful",
|
|
15
|
-
"Notification.204.Message": "The content has been updated.",
|
|
16
|
-
"Notification.204.Delete.Title": "Removal Successful",
|
|
17
|
-
"Notification.204.Delete.Message": "The removal process was successful.",
|
|
18
|
-
// 301 Moved Permanently
|
|
19
|
-
"Notification.301.Title": "Moved Permanently",
|
|
20
|
-
"Notification.301.Message": "The resource has been permanently moved to a new location.",
|
|
21
|
-
// 302 Found
|
|
22
|
-
"Notification.302.Title": "Temporary Redirect",
|
|
23
|
-
"Notification.302.Message": "The resource is temporarily located at a different location.",
|
|
24
|
-
// 304 Not Modified
|
|
25
|
-
"Notification.304.Title": "No Changes",
|
|
26
|
-
"Notification.304.Message": "No changes were made to the resource.",
|
|
27
|
-
// 307 Temporary Redirect
|
|
28
|
-
"Notification.307.Title": "Temporary Redirect",
|
|
29
|
-
"Notification.307.Message": "The resource has been temporarily redirected to another location.",
|
|
30
|
-
// 400 Bad Request
|
|
31
|
-
"Notification.400.Title": "Invalid Request",
|
|
32
|
-
"Notification.400.Message": "The request is invalid. Please check the data you submitted.",
|
|
33
|
-
// 401 Unauthorized
|
|
34
|
-
"Notification.401.Title": "Unauthorized Access",
|
|
35
|
-
"Notification.401.Message": "Valid authentication credentials are required to perform this action.",
|
|
36
|
-
// 403 Forbidden
|
|
37
|
-
"Notification.403.Title": "Access Denied",
|
|
38
|
-
"Notification.403.Message": "You do not have permission to access this resource.",
|
|
39
|
-
// 404 Not Found
|
|
40
|
-
"Notification.404.Title": "Resource Not Found",
|
|
41
|
-
"Notification.404.Message": "The resource you are looking for could not be found. Please check the URL.",
|
|
42
|
-
// 405 Method Not Allowed
|
|
43
|
-
"Notification.405.Title": "Invalid Method",
|
|
44
|
-
"Notification.405.Message": "The HTTP method used is not allowed for this resource.",
|
|
45
|
-
// 406 Not Acceptable
|
|
46
|
-
"Notification.406.Title": "Not Acceptable",
|
|
47
|
-
"Notification.406.Message": "The server cannot provide the content requested by the client.",
|
|
48
|
-
// 408 Request Timeout
|
|
49
|
-
"Notification.408.Title": "Request Timeout",
|
|
50
|
-
"Notification.408.Message": "The request timed out. Please try again.",
|
|
51
|
-
// 409 Conflict
|
|
52
|
-
"Notification.409.Title": "Conflict",
|
|
53
|
-
"Notification.409.Message": "The request conflicts with an existing resource.",
|
|
54
|
-
// 410 Gone
|
|
55
|
-
"Notification.410.Title": "Resource No Longer Available",
|
|
56
|
-
"Notification.410.Message": "The requested resource is no longer available.",
|
|
57
|
-
// 413 Payload Too Large
|
|
58
|
-
"Notification.413.Title": "Payload Too Large",
|
|
59
|
-
"Notification.413.Message": "The data being sent is too large.",
|
|
60
|
-
// 415 Unsupported Media Type
|
|
61
|
-
"Notification.415.Title": "Unsupported Media Type",
|
|
62
|
-
"Notification.415.Message": "The server does not support the media type sent by the client.",
|
|
63
|
-
// 429 Too Many Requests
|
|
64
|
-
"Notification.429.Title": "Too Many Requests",
|
|
65
|
-
"Notification.429.Message": "Too many requests were sent. Please try again later.",
|
|
66
|
-
// 500 Internal Server Error
|
|
67
|
-
"Notification.500.Title": "Server Error",
|
|
68
|
-
"Notification.500.Message": "An error occurred. Please try again or contact your administrator.",
|
|
69
|
-
// 501 Not Implemented
|
|
70
|
-
"Notification.501.Title": "Not Implemented",
|
|
71
|
-
"Notification.501.Message": "The server does not support this functionality.",
|
|
72
|
-
// 502 Bad Gateway
|
|
73
|
-
"Notification.502.Title": "Bad Gateway",
|
|
74
|
-
"Notification.502.Message": "The server received an invalid response.",
|
|
75
|
-
// 503 Service Unavailable
|
|
76
|
-
"Notification.503.Title": "Service Unavailable",
|
|
77
|
-
"Notification.503.Message": "The server is temporarily unavailable. Please try again later.",
|
|
78
|
-
// 504 Gateway Timeout
|
|
79
|
-
"Notification.504.Title": "Gateway Timeout",
|
|
80
|
-
"Notification.504.Message": "The server did not receive a response from another server.",
|
|
81
|
-
// 505 HTTP Version Not Supported
|
|
82
|
-
"Notification.505.Title": "HTTP Version Not Supported",
|
|
83
|
-
"Notification.505.Message": "The server does not support the HTTP version used.",
|
|
84
|
-
};
|
|
85
|
-
export default NotificationEN;
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
const NotificationTR = {
|
|
2
|
-
// 200 OK -> GET Processes
|
|
3
|
-
"Notification.200.Title": "İşlem Başarılı",
|
|
4
|
-
"Notification.200.Message": "Veriler başarıyla alındı.",
|
|
5
|
-
"Notification.200.Login.Title": "Oturum Açma Başarılı",
|
|
6
|
-
"Notification.200.Login.Message": "Oturum açma işleminiz başarıyla tamamlandı. Şimdi tüm özelliklere erişebilirsiniz.",
|
|
7
|
-
// 201 Created -> POST Processes
|
|
8
|
-
"Notification.201.Title": "Kayıt Oluşturuldu",
|
|
9
|
-
"Notification.201.Message": "Kayıt başarıyla oluşturuldu.",
|
|
10
|
-
// 202 Accepted -> Processing
|
|
11
|
-
"Notification.202.Title": "İstek Kabul Edildi",
|
|
12
|
-
"Notification.202.Message": "İstek kabul edildi, işleniyor.",
|
|
13
|
-
// 204 No Content -> PUT Processes
|
|
14
|
-
"Notification.204.Title": "İşlem Başarılı",
|
|
15
|
-
"Notification.204.Message": "Kayıtlı içerik güncellendi.",
|
|
16
|
-
"Notification.204.Delete.Title": "Kaldırma Başarılı",
|
|
17
|
-
"Notification.204.Delete.Message": "Kaldırma işlemi başarılı.",
|
|
18
|
-
// 301 Moved Permanently
|
|
19
|
-
"Notification.301.Title": "Kalıcı Olarak Taşındı",
|
|
20
|
-
"Notification.301.Message": "Kaynak kalıcı olarak yeni bir konuma taşındı.",
|
|
21
|
-
// 302 Found
|
|
22
|
-
"Notification.302.Title": "Geçici Yönlendirme",
|
|
23
|
-
"Notification.302.Message": "Kaynak geçici olarak farklı bir konumda bulunuyor.",
|
|
24
|
-
// 304 Not Modified
|
|
25
|
-
"Notification.304.Title": "Değişiklik Yok",
|
|
26
|
-
"Notification.304.Message": "Kaynakta herhangi bir değişiklik yapılmadı.",
|
|
27
|
-
// 307 Temporary Redirect
|
|
28
|
-
"Notification.307.Title": "Geçici Yönlendirme",
|
|
29
|
-
"Notification.307.Message": "Kaynak geçici olarak başka bir konuma yönlendirildi.",
|
|
30
|
-
// 400 Bad Request
|
|
31
|
-
"Notification.400.Title": "Geçersiz İstek",
|
|
32
|
-
"Notification.400.Message": "İstek geçerli değil. Lütfen gönderdiğiniz verileri kontrol edin.",
|
|
33
|
-
// 401 Unauthorized
|
|
34
|
-
"Notification.401.Title": "Yetkisiz Erişim",
|
|
35
|
-
"Notification.401.Message": "Bu işlemi gerçekleştirmek için geçerli kimlik doğrulama bilgileri gereklidir.",
|
|
36
|
-
// 403 Forbidden
|
|
37
|
-
"Notification.403.Title": "Erişim Engellendi",
|
|
38
|
-
"Notification.403.Message": "Bu kaynağa erişim yetkiniz yok.",
|
|
39
|
-
// 404 Not Found
|
|
40
|
-
"Notification.404.Title": "Kaynak Bulunamadı",
|
|
41
|
-
"Notification.404.Message": "Aradığınız kaynak bulunamadı. Lütfen URL'yi kontrol edin.",
|
|
42
|
-
// 405 Method Not Allowed
|
|
43
|
-
"Notification.405.Title": "Geçersiz Yöntem",
|
|
44
|
-
"Notification.405.Message": "Bu kaynak için kullanılan HTTP yöntemi uygun değil.",
|
|
45
|
-
// 406 Not Acceptable
|
|
46
|
-
"Notification.406.Title": "Kabul Edilemez",
|
|
47
|
-
"Notification.406.Message": "Sunucu, istemcinin talep ettiği içeriği sağlayamıyor.",
|
|
48
|
-
// 408 Request Timeout
|
|
49
|
-
"Notification.408.Title": "İstek Zaman Aşımı",
|
|
50
|
-
"Notification.408.Message": "İstek zaman aşımına uğradı. Lütfen tekrar deneyin.",
|
|
51
|
-
// 409 Conflict
|
|
52
|
-
"Notification.409.Title": "Çakışma",
|
|
53
|
-
"Notification.409.Message": "İstek mevcut kaynakla çakışıyor.",
|
|
54
|
-
// 410 Gone
|
|
55
|
-
"Notification.410.Title": "Kaynak Artık Mevcut Değil",
|
|
56
|
-
"Notification.410.Message": "Talep edilen kaynak artık mevcut değil.",
|
|
57
|
-
// 413 Payload Too Large
|
|
58
|
-
"Notification.413.Title": "Veri Çok Büyük",
|
|
59
|
-
"Notification.413.Message": "Gönderilen veri boyutu çok büyük.",
|
|
60
|
-
// 415 Unsupported Media Type
|
|
61
|
-
"Notification.415.Title": "Desteklenmeyen Medya Türü",
|
|
62
|
-
"Notification.415.Message": "Sunucu, istemcinin gönderdiği medya türünü desteklemiyor.",
|
|
63
|
-
// 429 Too Many Requests
|
|
64
|
-
"Notification.429.Title": "Çok Fazla İstek",
|
|
65
|
-
"Notification.429.Message": "Çok fazla istek gönderildi. Lütfen daha sonra tekrar deneyin.",
|
|
66
|
-
// 500 Internal Server Error
|
|
67
|
-
"Notification.500.Title": "Sunucu Hatası",
|
|
68
|
-
"Notification.500.Message": "Bir hata oluştu. Lütfen tekrar deneyin veya yöneticinize başvurun.",
|
|
69
|
-
// 501 Not Implemented
|
|
70
|
-
"Notification.501.Title": "Uygulanmadı",
|
|
71
|
-
"Notification.501.Message": "Sunucu bu işlevi desteklemiyor.",
|
|
72
|
-
// 502 Bad Gateway
|
|
73
|
-
"Notification.502.Title": "Geçersiz Ağ Geçidi",
|
|
74
|
-
"Notification.502.Message": "Sunucu geçersiz bir yanıt aldı.",
|
|
75
|
-
// 503 Service Unavailable
|
|
76
|
-
"Notification.503.Title": "Hizmet Kullanılamıyor",
|
|
77
|
-
"Notification.503.Message": "Sunucu geçici olarak kullanılamıyor. Lütfen daha sonra tekrar deneyin.",
|
|
78
|
-
// 504 Gateway Timeout
|
|
79
|
-
"Notification.504.Title": "Ağ Geçidi Zaman Aşımı",
|
|
80
|
-
"Notification.504.Message": "Sunucu, diğer bir sunucudan yanıt alamadı.",
|
|
81
|
-
// 505 HTTP Version Not Supported
|
|
82
|
-
"Notification.505.Title": "HTTP Sürümü Desteklenmiyor",
|
|
83
|
-
"Notification.505.Message": "Sunucu, kullanılan HTTP sürümünü desteklemiyor.",
|
|
84
|
-
};
|
|
85
|
-
export default NotificationTR;
|