@nettyapps/ntybase 0.1.8 → 0.1.10
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/fesm2022/nettyapps-ntybase-en-USbase-DlNRzuX4.mjs +215 -0
- package/fesm2022/nettyapps-ntybase-en-USbase-DlNRzuX4.mjs.map +1 -0
- package/fesm2022/nettyapps-ntybase-tr-TRbase-v9G-AlQ2.mjs +215 -0
- package/fesm2022/nettyapps-ntybase-tr-TRbase-v9G-AlQ2.mjs.map +1 -0
- package/fesm2022/nettyapps-ntybase.mjs +246 -113
- package/fesm2022/nettyapps-ntybase.mjs.map +1 -1
- package/index.d.ts +58 -3
- package/package.json +1 -1
- package/translations/en-USbase.json +92 -80
- package/translations/tr-TRbase.json +92 -80
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit, OnChanges, SimpleChanges, DoCheck, OnDestroy, AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges, DoCheck, OnDestroy, AfterViewInit, InjectionToken, ElementRef } from '@angular/core';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { Observable, Subject } from 'rxjs';
|
|
5
5
|
import { Theme as Theme$1, GridApi, GridOptions, StatusPanelDef, GridReadyEvent } from 'ag-grid-community';
|
|
@@ -342,6 +342,7 @@ declare abstract class NettyAgGridBase<T extends {
|
|
|
342
342
|
* - The update type doesn't match
|
|
343
343
|
*/
|
|
344
344
|
constructor();
|
|
345
|
+
private setAgGridTranslations;
|
|
345
346
|
/**
|
|
346
347
|
* Update a single row in the grid
|
|
347
348
|
* @param rowData The updated row data
|
|
@@ -858,6 +859,7 @@ declare class Toolbar {
|
|
|
858
859
|
protected themeService: Theme;
|
|
859
860
|
protected colorPaletteService: ColorPalette;
|
|
860
861
|
private i18nService;
|
|
862
|
+
private router;
|
|
861
863
|
toggleSidenav: _angular_core.OutputEmitterRef<void>;
|
|
862
864
|
onToggleSidenav(): void;
|
|
863
865
|
icon: _angular_core.ModelSignal<boolean>;
|
|
@@ -870,6 +872,59 @@ declare class Toolbar {
|
|
|
870
872
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Toolbar, "ntybase-toolbar", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "toggleSidenav": "toggleSidenav"; "icon": "iconChange"; }, never, never, true, never>;
|
|
871
873
|
}
|
|
872
874
|
|
|
875
|
+
declare class NettyBaseApp {
|
|
876
|
+
protected i18nService: I18nService;
|
|
877
|
+
protected loadBaseTranslations(): Promise<void>;
|
|
878
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NettyBaseApp, never>;
|
|
879
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyBaseApp, "ntybase-netty-base-app", never, {}, {}, never, never, true, never>;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
interface EnvironmentConfig {
|
|
883
|
+
production: boolean;
|
|
884
|
+
version: string;
|
|
885
|
+
defaultLanguage: string;
|
|
886
|
+
supportedLanguages: string[];
|
|
887
|
+
nettyUrls: {
|
|
888
|
+
apiUrl: string;
|
|
889
|
+
adminUrl: string;
|
|
890
|
+
baseHref: string;
|
|
891
|
+
application: string;
|
|
892
|
+
};
|
|
893
|
+
}
|
|
894
|
+
declare const ENVIRONMENT_CONFIG: InjectionToken<EnvironmentConfig>;
|
|
895
|
+
declare class EnvironmentInfoService {
|
|
896
|
+
private config;
|
|
897
|
+
constructor(config: EnvironmentConfig);
|
|
898
|
+
getEnvironmentInfo(): EnvironmentConfig | null;
|
|
899
|
+
getApiUrl(): string;
|
|
900
|
+
getAdminUrl(): string;
|
|
901
|
+
isProduction(): boolean;
|
|
902
|
+
getVersion(): string;
|
|
903
|
+
getSupportedLanguages(): string[];
|
|
904
|
+
getDefaultLanguage(): string;
|
|
905
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EnvironmentInfoService, [{ optional: true; }]>;
|
|
906
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<EnvironmentInfoService>;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
declare class EnvironmentInfo {
|
|
910
|
+
private environmentService;
|
|
911
|
+
showNettyInfo: boolean;
|
|
912
|
+
environmentConfig: EnvironmentConfig | null;
|
|
913
|
+
get hasConfig(): boolean;
|
|
914
|
+
get version(): string;
|
|
915
|
+
get isProduction(): boolean;
|
|
916
|
+
get defaultLanguage(): string;
|
|
917
|
+
get supportedLanguages(): string[];
|
|
918
|
+
get apiUrl(): string;
|
|
919
|
+
get adminUrl(): string;
|
|
920
|
+
get baseHref(): string;
|
|
921
|
+
get application(): string;
|
|
922
|
+
constructor(environmentService: EnvironmentInfoService);
|
|
923
|
+
ngOnInit(): void;
|
|
924
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EnvironmentInfo, never>;
|
|
925
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EnvironmentInfo, "ntybase-environment-info", never, { "showNettyInfo": { "alias": "showNettyInfo"; "required": false; }; }, {}, never, never, true, never>;
|
|
926
|
+
}
|
|
927
|
+
|
|
873
928
|
declare class SelectionItem {
|
|
874
929
|
name: string | null;
|
|
875
930
|
value: any;
|
|
@@ -970,5 +1025,5 @@ declare class NettyMenuService {
|
|
|
970
1025
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NettyMenuService>;
|
|
971
1026
|
}
|
|
972
1027
|
|
|
973
|
-
export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, AutoComplete, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, ColorPalette, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ExcelImportBase, ForgotPassword, Guid, HttpError403, HttpError404, LeftSidenav, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridSaveBase, NettyAgGridService, NettyFilter, NettyHelper, NettyMenuService, Ntybase, NtybaseModule, SelectionItem, Theme, Toolbar, UrlHelperService };
|
|
974
|
-
export type { AppTheme, CanComponentDeactivate, ColorTheme, Credentials, LoginContext, MFACodeContext, UserViewMode };
|
|
1028
|
+
export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, AutoComplete, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, ColorPalette, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Guid, HttpError403, HttpError404, LeftSidenav, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridSaveBase, NettyAgGridService, NettyBaseApp, NettyFilter, NettyHelper, NettyMenuService, Ntybase, NtybaseModule, SelectionItem, Theme, Toolbar, UrlHelperService };
|
|
1029
|
+
export type { AppTheme, CanComponentDeactivate, ColorTheme, Credentials, EnvironmentConfig, LoginContext, MFACodeContext, UserViewMode };
|
package/package.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
1
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
|
-
|
|
2
|
+
"@addWidgetPrompt": "Click or drag and drop to add a widget",
|
|
3
|
+
"@available": "Available",
|
|
4
|
+
"@btnCancel": "Cancel",
|
|
5
|
+
"@btnOK": "OK",
|
|
6
|
+
"@btnSave": "Save",
|
|
7
|
+
"@changeCompany": "Change Company",
|
|
8
|
+
"@choose_Color": "Choose Color",
|
|
9
|
+
"@choose_Custom_Color": "Please choose custom color",
|
|
10
|
+
"@color_Palette": "Color Palette",
|
|
11
|
+
"@confirmation": "Confirmation",
|
|
12
|
+
"@confirmDeleteSelectedRecords": "Are you sure you want to delete the selected records?",
|
|
13
|
+
"@connectionError": "Connection problem. Please check your network.",
|
|
14
|
+
"@copiedToClipboard": "Copied",
|
|
15
|
+
"@copy": "Copy",
|
|
16
|
+
"@creationFailed": "Creation failed",
|
|
17
|
+
"@dataLoadFailed": "Failed to load data. Please try again later.",
|
|
18
|
+
"@dataLoadSuccess": "Data loaded successfully",
|
|
19
|
+
"@dataRefreshedSuccessfully": "Data refreshed successfully",
|
|
20
|
+
"@defined_Colors": "Defined Colors",
|
|
21
|
+
"@deletionFailed": "Deletion failed",
|
|
22
|
+
"@emptyData": "No user data available",
|
|
23
|
+
"@errorOccurred": "An error occurred",
|
|
24
|
+
"@forgotPassword": "Forgot password",
|
|
25
|
+
"@loading": "Loading...",
|
|
26
|
+
"@log": "Record ",
|
|
27
|
+
"@loggingIn": "Logging in...",
|
|
28
|
+
"@login": "Login",
|
|
29
|
+
"@loginFailed": "Username or password is incorrect",
|
|
30
|
+
"@logout": "Logout",
|
|
31
|
+
"@noChangesAlert": "No changes were made to save",
|
|
32
|
+
"@noChangesDetected": "No changes detected",
|
|
33
|
+
"@operationCompleted": "Operation completed",
|
|
34
|
+
"@operationFailed": "Operation failed",
|
|
35
|
+
"@operationSuccess": "Operation completed successfully",
|
|
36
|
+
"@password": "Password",
|
|
37
|
+
"@passwordCheck": "Password Check",
|
|
38
|
+
"@placeholderAll": "All",
|
|
39
|
+
"@placeholderApplicationDefinition": "Please enter the application definition",
|
|
40
|
+
"@placeholderEmail": "example@mail.com",
|
|
41
|
+
"@placeholderFaultyLogin": "Faulty login count",
|
|
42
|
+
"@placeholderFullname": "Enter your full name",
|
|
43
|
+
"@placeholderGroupCode": "Please enter the group code",
|
|
44
|
+
"@placeholderPassword": "Enter your password",
|
|
45
|
+
"@placeholderPasswordValidUntil": "Select password validity date",
|
|
46
|
+
"@placeholderPhone": "Enter user phone",
|
|
47
|
+
"@placeholderSearch": "Search...",
|
|
48
|
+
"@placeholderUsername": "Enter your user name",
|
|
49
|
+
"@placeholderValidUntil": "Select validity date",
|
|
50
|
+
"@pleaseFillRequiredFields": "Please fill required fields",
|
|
51
|
+
"@pleaseSelectRowToDelete": "Please select a row to delete",
|
|
52
|
+
"@popupGotoRecordDefinition": "Go to Record Definition",
|
|
53
|
+
"@popupNewRecord": "New Record",
|
|
54
|
+
"@popupSelectFromList": "Select from List",
|
|
55
|
+
"@profile": "Profile",
|
|
56
|
+
"@recordAddedSuccessfully": "Record added",
|
|
57
|
+
"@recordCreatedSuccessfully": "Record created",
|
|
58
|
+
"@recordDeletedSuccessfully": "Record deleted",
|
|
59
|
+
"@recordUpdatedSuccessfully": "Record updated",
|
|
60
|
+
"@rememberMe": "Remember me",
|
|
61
|
+
"@requiredField": "Field is required",
|
|
62
|
+
"@requiredFieldPlaceHolder": "Required field",
|
|
63
|
+
"@search": "Search",
|
|
64
|
+
"@select": "Select",
|
|
65
|
+
"@setPassword": "Set password",
|
|
66
|
+
"@standard_Colors": "Standard Colors",
|
|
67
|
+
"@statusActive": "Active",
|
|
68
|
+
"@statusInactive": "Inactive",
|
|
69
|
+
"@tokenCount": "Token valid for",
|
|
70
|
+
"@unsavedChangesConfirm": "You have unsaved changes. Are you sure you want to leave?",
|
|
71
|
+
"@updateFailed": "Update failed",
|
|
72
|
+
"@username": "User name",
|
|
73
|
+
"@accessLimitation": "Access accessLimitation",
|
|
74
|
+
"@userCannotAccessThisScreen": "User cannot access this screen",
|
|
75
|
+
"@userCannotAddNewRecord": "User cannot add new record",
|
|
76
|
+
"mfaCode": "Code",
|
|
77
|
+
"mfaCode is required": "MFA Code is required",
|
|
78
|
+
"password is required": "Password is required",
|
|
79
|
+
"resend MFACode": "Resend MFA code!",
|
|
80
|
+
"username is required": "Username is required",
|
|
80
81
|
"AG_GRID": {
|
|
81
82
|
"TOTAL_ROWS": "Total Rows",
|
|
82
83
|
"FILTERED_ROWS": "Filtered",
|
|
@@ -193,5 +194,16 @@
|
|
|
193
194
|
"CLEANING": "Cleaning",
|
|
194
195
|
"Create": "Add",
|
|
195
196
|
"GanttChartErrorLoadingComponent": "Error Loading Component"
|
|
196
|
-
}
|
|
197
|
-
|
|
197
|
+
},
|
|
198
|
+
"@dateTimeFilter": "Date/Time Filter",
|
|
199
|
+
"@dateTimeFilterPlaceholder": "Ex: today..yesterday, this week, 2024-01-15",
|
|
200
|
+
"@formats": "Formats",
|
|
201
|
+
"@range": "Range",
|
|
202
|
+
"@singleDate": "Single date",
|
|
203
|
+
"@dateTime": "Date time",
|
|
204
|
+
"@multiple": "Multiple",
|
|
205
|
+
"@specialKeywords": "Special Keywords",
|
|
206
|
+
"@turkish": "Turkish",
|
|
207
|
+
"@english": "English",
|
|
208
|
+
"@filterExample": "Example: 'today..yesterday, this week' → today-yesterday range OR this week"
|
|
209
|
+
}
|
|
@@ -1,82 +1,83 @@
|
|
|
1
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
|
-
|
|
2
|
+
"@addWidgetPrompt": "Widget eklemek için tıklayın veya sürükleyip bırakın",
|
|
3
|
+
"@available": "Mevcut",
|
|
4
|
+
"@btnCancel": "İptal",
|
|
5
|
+
"@btnOK": "Tamam",
|
|
6
|
+
"@btnSave": "Kaydet",
|
|
7
|
+
"@changeCompany": "Şirket Değiştir",
|
|
8
|
+
"@choose_Color": "Renk Seçin",
|
|
9
|
+
"@choose_Custom_Color": "Lütfen özel renk seçin",
|
|
10
|
+
"@color_Palette": "Renk Paleti",
|
|
11
|
+
"@confirmation": "Onay",
|
|
12
|
+
"@confirmDeleteSelectedRecords": "Seçili kayıtları silmek istediğinize emin misiniz?",
|
|
13
|
+
"@connectionError": "Bağlantı hatası. Lütfen internet bağlantınızı kontrol edin.",
|
|
14
|
+
"@copiedToClipboard": "Kopyalandı",
|
|
15
|
+
"@copy": "Kopyala",
|
|
16
|
+
"@creationFailed": "Oluşturma başarısız oldu",
|
|
17
|
+
"@dataLoadFailed": "Veriler yüklenemedi. Lütfen daha sonra tekrar deneyin.",
|
|
18
|
+
"@dataLoadSuccess": "Veriler başarıyla yüklendi",
|
|
19
|
+
"@dataRefreshedSuccessfully": "Liste güncellendi",
|
|
20
|
+
"@defined_Colors": "Tanımlı Renkler",
|
|
21
|
+
"@deletionFailed": "Silme işlemi başarısız oldu",
|
|
22
|
+
"@emptyData": "Kullanıcı verisi bulunamadı",
|
|
23
|
+
"@errorOccurred": "Bir hata oluştu",
|
|
24
|
+
"@forgotPassword": "Şifremi unuttum",
|
|
25
|
+
"@loading": "Yükleniyor...",
|
|
26
|
+
"@log": "Kayıt geçmişi",
|
|
27
|
+
"@loggingIn": "Giriş yapılıyor...",
|
|
28
|
+
"@login": "Giriş",
|
|
29
|
+
"@loginFailed": "Kullanıcı adı veya şifre hatalı",
|
|
30
|
+
"@logout": "Çıkış Yap",
|
|
31
|
+
"@noChangesAlert": "Kaydedilecek bir değişiklik yapılmadı",
|
|
32
|
+
"@noChangesDetected": "Herhangi bir değişiklik tespit edilmedi",
|
|
33
|
+
"@operationCompleted": "İşlem tamamlandı",
|
|
34
|
+
"@operationFailed": "İşlem başarısız oldu",
|
|
35
|
+
"@operationSuccess": "İşlem başarıyla tamamlandı",
|
|
36
|
+
"@password": "Şifre",
|
|
37
|
+
"@passwordCheck": "Şifre Tekrarı",
|
|
38
|
+
"@placeholderAll": "Hepsi",
|
|
39
|
+
"@placeholderApplicationDefinition": "Lütfen uygulama tanımını giriniz",
|
|
40
|
+
"@placeholderEmail": "ornek@mail.com",
|
|
41
|
+
"@placeholderFaultyLogin": "Hatalı giriş sayısı",
|
|
42
|
+
"@placeholderFullname": "Adınızı ve soyadınızı giriniz",
|
|
43
|
+
"@placeholderGroupCode": "Lütfen grup kodunu giriniz",
|
|
44
|
+
"@placeholderPassword": "Şifrenizi giriniz",
|
|
45
|
+
"@placeholderPasswordValidUntil": "Şifre geçerlilik tarihi seçiniz",
|
|
46
|
+
"@placeholderPhone": "Telefon numaranızı giriniz",
|
|
47
|
+
"@placeholderSearch": "Ara...",
|
|
48
|
+
"@placeholderUsername": "Kullanıcı adınızı giriniz",
|
|
49
|
+
"@placeholderValidUntil": "Geçerlilik tarihi seçiniz",
|
|
50
|
+
"@pleaseFillRequiredFields": "Lütfen zorunlu alanları doldurun",
|
|
51
|
+
"@pleaseSelectRowToDelete": "Lütfen silmek için bir satır seçin",
|
|
52
|
+
"@popupGotoRecordDefinition": "Kayıt Tanımına Git",
|
|
53
|
+
"@popupNewRecord": "Yeni Kayıt",
|
|
54
|
+
"@popupSelectFromList": "Listeden Seç",
|
|
55
|
+
"@profile": "Profil",
|
|
56
|
+
"@recordAddedSuccessfully": "Kayıt eklendi",
|
|
57
|
+
"@recordCreatedSuccessfully": "Kayıt oluşturuldu",
|
|
58
|
+
"@recordDeletedSuccessfully": "Kayıt silindi",
|
|
59
|
+
"@recordUpdatedSuccessfully": "Kayıt güncellendi",
|
|
60
|
+
"@rememberMe": "Beni hatırla",
|
|
61
|
+
"@requiredField": "Alan zorunludur",
|
|
62
|
+
"@requiredFieldPlaceHolder": "Zorunlu alan",
|
|
63
|
+
"@search": "Ara",
|
|
64
|
+
"@select": "Seç",
|
|
65
|
+
"@setPassword": "Şifre ata",
|
|
66
|
+
"@standard_Colors": "Standart Renkler",
|
|
67
|
+
"@statusActive": "Aktif",
|
|
68
|
+
"@statusInactive": "Pasif",
|
|
69
|
+
"@tokenCount": "Token geçerlilik süresi",
|
|
70
|
+
"@unsavedChangesConfirm": "Kaydedilmemiş değişiklikler var. Ayrılmak istediğinize emin misiniz?",
|
|
71
|
+
"@updateFailed": "Güncelleme başarısız oldu",
|
|
72
|
+
"@username": "Kullanıcı adı",
|
|
73
|
+
"@accessLimitation": "Erişim limiti",
|
|
74
|
+
"@userCannotAccessThisScreen": "Kullanıcı bu ekrana erişemez",
|
|
75
|
+
"@userCannotAddNewRecord": "Kullanıcı yeni kayıt ekleyemez",
|
|
76
|
+
"mfaCode": "Güvenlik kodu",
|
|
77
|
+
"mfaCode is required": "Güvenlik kodu zorunludur",
|
|
78
|
+
"password is required": "Şifre zorunludur",
|
|
79
|
+
"resend MFACode": "Güvenlik kodunu tekrar gönder",
|
|
80
|
+
"username is required": "Kullanıcı adı zorunludur",
|
|
80
81
|
"AG_GRID": {
|
|
81
82
|
"TOTAL_ROWS": "Toplam Satır",
|
|
82
83
|
"FILTERED_ROWS": "Filtrelenmiş",
|
|
@@ -193,5 +194,16 @@
|
|
|
193
194
|
"CLEANING": "Temizlik",
|
|
194
195
|
"Create": "Ekle",
|
|
195
196
|
"GanttChartErrorLoadingComponent": "Component yüklenirken hata oluştu"
|
|
196
|
-
}
|
|
197
|
-
|
|
197
|
+
},
|
|
198
|
+
"@dateTimeFilter": "Tarih/Saat Filtresi",
|
|
199
|
+
"@dateTimeFilterPlaceholder": "Örn: bugün..dün, bu hafta, 2024-01-15",
|
|
200
|
+
"@formats": "Formatlar",
|
|
201
|
+
"@range": "Aralık",
|
|
202
|
+
"@singleDate": "Tek tarih",
|
|
203
|
+
"@dateTime": "Tarih saat",
|
|
204
|
+
"@multiple": "Çoklu",
|
|
205
|
+
"@specialKeywords": "Özel Kelimeler",
|
|
206
|
+
"@turkish": "Türkçe",
|
|
207
|
+
"@english": "İngilizce",
|
|
208
|
+
"@filterExample": "Örnek: 'bugün..dün, bu hafta' → bugün-dün arası VEYA bu hafta"
|
|
209
|
+
}
|