@nettyapps/ntybase 0.1.1 → 0.1.3
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.mjs +27 -12
- package/fesm2022/nettyapps-ntybase.mjs.map +1 -1
- package/index.d.ts +18 -9
- package/package.json +1 -1
- package/translations/en-USbase.json +194 -0
- package/translations/tr-TRbase.json +194 -0
package/index.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ declare class CommonService {
|
|
|
120
120
|
private router;
|
|
121
121
|
private location;
|
|
122
122
|
private datePipe;
|
|
123
|
+
private decimalPipe;
|
|
123
124
|
private alertService;
|
|
124
125
|
protected dialog: MatDialog;
|
|
125
126
|
rightSidenavOpen: _angular_core.WritableSignal<boolean>;
|
|
@@ -177,6 +178,14 @@ declare class CommonService {
|
|
|
177
178
|
* @returns -1 if cell date is smaller(earlier), 0 if dates are equal and 1 if cell date is bigger(later)
|
|
178
179
|
*/
|
|
179
180
|
dateComparator(filterValue: Date, cellValue: Date): number;
|
|
181
|
+
/** Format the given number into correct display
|
|
182
|
+
*
|
|
183
|
+
* @param numberValue number to format
|
|
184
|
+
* @param min minimum decimal digits
|
|
185
|
+
* @param max max decimal digits
|
|
186
|
+
* @returns formatted number
|
|
187
|
+
*/
|
|
188
|
+
numberFormatter(numberValue: number, min?: number, max?: number): string;
|
|
180
189
|
/** Format date into 'dd-MM-yyyy' format for grids
|
|
181
190
|
*
|
|
182
191
|
* @param dateValue
|
|
@@ -253,7 +262,7 @@ declare class SysfunctionProxy {
|
|
|
253
262
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SysfunctionProxy>;
|
|
254
263
|
}
|
|
255
264
|
|
|
256
|
-
declare abstract class
|
|
265
|
+
declare abstract class NettyAgGridBase<T extends {
|
|
257
266
|
[key: string]: any;
|
|
258
267
|
}> implements OnInit, OnChanges {
|
|
259
268
|
readOnly: _angular_core.InputSignal<boolean>;
|
|
@@ -346,12 +355,12 @@ declare abstract class AgGridBase<T extends {
|
|
|
346
355
|
protected deleteRows?(rows: T[]): void;
|
|
347
356
|
protected getEntityType?(): string;
|
|
348
357
|
protected selectedData?(): void;
|
|
349
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
350
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
358
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NettyAgGridBase<any>, never>;
|
|
359
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyAgGridBase<any>, "ntybase-ag-grid-base", never, { "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "popupFilterValid": { "alias": "popupFilterValid"; "required": false; "isSignal": true; }; "popupValid": { "alias": "popupValid"; "required": false; "isSignal": true; }; "params": { "alias": "params"; "required": false; "isSignal": true; }; "parameters": { "alias": "parameters"; "required": false; "isSignal": true; }; "isEmbedded": { "alias": "isEmbedded"; "required": false; "isSignal": true; }; }, { "selectedElement": "selectedElement"; }, never, never, true, never>;
|
|
351
360
|
}
|
|
352
361
|
|
|
353
362
|
type UserViewMode = 'fullscreen' | 'sidenav' | 'dialog';
|
|
354
|
-
declare abstract class
|
|
363
|
+
declare abstract class NettyAgGridSaveBase<T> implements DoCheck {
|
|
355
364
|
protected router: Router;
|
|
356
365
|
protected route: ActivatedRoute;
|
|
357
366
|
protected commonService: CommonService;
|
|
@@ -400,12 +409,12 @@ declare abstract class AgGridSaveBase<T> implements DoCheck {
|
|
|
400
409
|
backClicked(): void;
|
|
401
410
|
protected abstract loadDetailData(): void;
|
|
402
411
|
protected validateSaveRecord(recordGUID: any): boolean;
|
|
403
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
404
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
412
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NettyAgGridSaveBase<any>, never>;
|
|
413
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyAgGridSaveBase<any>, "ntybase-ag-grid-save-base", never, { "parameters": { "alias": "parameters"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "closeAfterSave": { "alias": "closeAfterSave"; "required": false; "isSignal": true; }; }, { "closeAfterSave": "closeAfterSaveChange"; }, never, never, true, never>;
|
|
405
414
|
}
|
|
406
415
|
|
|
407
416
|
type AOA = string[][];
|
|
408
|
-
declare abstract class ExcelImportBase extends
|
|
417
|
+
declare abstract class ExcelImportBase extends NettyAgGridBase<any> {
|
|
409
418
|
protected dataList: AOA;
|
|
410
419
|
protected wopts: XLSX.WritingOptions;
|
|
411
420
|
protected fileName: string;
|
|
@@ -927,7 +936,7 @@ declare class Guid {
|
|
|
927
936
|
static emptyWhenNull(guid: any): any;
|
|
928
937
|
}
|
|
929
938
|
|
|
930
|
-
declare class
|
|
939
|
+
declare class NettyFilter {
|
|
931
940
|
value: any;
|
|
932
941
|
text: any;
|
|
933
942
|
}
|
|
@@ -943,5 +952,5 @@ declare class NettyMenuService {
|
|
|
943
952
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NettyMenuService>;
|
|
944
953
|
}
|
|
945
954
|
|
|
946
|
-
export {
|
|
955
|
+
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 };
|
|
947
956
|
export type { AppTheme, CanComponentDeactivate, ColorTheme, Credentials, LoginContext, MFACodeContext, UserViewMode };
|
package/package.json
CHANGED
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
{
|
|
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
|
+
"@placeholderAll" : "All",
|
|
38
|
+
"@placeholderApplicationDefinition" : "Please enter the application definition",
|
|
39
|
+
"@placeholderEmail" : "example@mail.com",
|
|
40
|
+
"@placeholderFaultyLogin" : "Faulty login count",
|
|
41
|
+
"@placeholderFullname" : "Enter your full name",
|
|
42
|
+
"@placeholderGroupCode" : "Please enter the group code",
|
|
43
|
+
"@placeholderPassword" : "Enter your password",
|
|
44
|
+
"@placeholderPasswordValidUntil" : "Select password validity date",
|
|
45
|
+
"@placeholderPhone" : "Enter user phone",
|
|
46
|
+
"@placeholderSearch" : "Search...",
|
|
47
|
+
"@placeholderUsername" : "Enter your user name",
|
|
48
|
+
"@placeholderValidUntil" : "Select validity date",
|
|
49
|
+
"@pleaseFillRequiredFields" : "Please fill required fields",
|
|
50
|
+
"@pleaseSelectRowToDelete" : "Please select a row to delete",
|
|
51
|
+
"@popupGotoRecordDefinition" : "Go to Record Definition",
|
|
52
|
+
"@popupNewRecord" : "New Record",
|
|
53
|
+
"@popupSelectFromList" : "Select from List",
|
|
54
|
+
"@profile" : "Profile",
|
|
55
|
+
"@recordAddedSuccessfully" : "Record added",
|
|
56
|
+
"@recordCreatedSuccessfully" : "Record created",
|
|
57
|
+
"@recordDeletedSuccessfully" : "Record deleted",
|
|
58
|
+
"@recordUpdatedSuccessfully" : "Record updated",
|
|
59
|
+
"@rememberMe" : "Remember me",
|
|
60
|
+
"@requiredField" : "Field is required",
|
|
61
|
+
"@requiredFieldPlaceHolder" : "Required field",
|
|
62
|
+
"@search" : "Search",
|
|
63
|
+
"@select" : "Select",
|
|
64
|
+
"@setPassword" : "Set password",
|
|
65
|
+
"@standard_Colors" : "Standard Colors",
|
|
66
|
+
"@statusActive" : "Active",
|
|
67
|
+
"@statusInactive" : "Inactive",
|
|
68
|
+
"@tokenCount" : "Token valid for",
|
|
69
|
+
"@unsavedChangesConfirm" : "You have unsaved changes. Are you sure you want to leave?",
|
|
70
|
+
"@updateFailed" : "Update failed",
|
|
71
|
+
"@username" : "User name",
|
|
72
|
+
"mfaCode" : "Code",
|
|
73
|
+
"mfaCode is required" : "MFA Code is required",
|
|
74
|
+
"password is required" : "Password is required",
|
|
75
|
+
"resend MFACode" : "Resend MFA code!",
|
|
76
|
+
"username is required" : "Username is required",
|
|
77
|
+
"AG_GRID": {
|
|
78
|
+
"TOTAL_ROWS": "Total Rows",
|
|
79
|
+
"FILTERED_ROWS": "Filtered",
|
|
80
|
+
"SELECTED_ROWS": "Selected",
|
|
81
|
+
"NO_ROWS_TO_SHOW": "No data to show",
|
|
82
|
+
"LOADING": "Loading...",
|
|
83
|
+
"COPY": "Copy",
|
|
84
|
+
"COPY_WITH_HEADERS": "Copy with Headers",
|
|
85
|
+
"COPY_WITH_GROUP_HEADERS": "Copy with Group Headers",
|
|
86
|
+
"PASTE": "Paste",
|
|
87
|
+
"EXPORT": "Export",
|
|
88
|
+
"CSV_EXPORT": "Export as CSV",
|
|
89
|
+
"EXCEL_EXPORT": "Export as Excel",
|
|
90
|
+
"PIN_COLUMN": "Pin Column",
|
|
91
|
+
"PIN_LEFT": "Pin Left",
|
|
92
|
+
"PIN_RIGHT": "Pin Right",
|
|
93
|
+
"NO_PIN": "Unpin",
|
|
94
|
+
"SORT_ASCENDING": "Sort Ascending",
|
|
95
|
+
"SORT_DESCENDING": "Sort Descending",
|
|
96
|
+
"AUTOSIZE_THIS_COLUMN": "Autosize This Column",
|
|
97
|
+
"AUTOSIZE_ALL_COLUMNS": "Autosize All Columns",
|
|
98
|
+
"RESET_COLUMNS": "Reset Columns",
|
|
99
|
+
"EXPAND_ALL": "Expand All",
|
|
100
|
+
"COLLAPSE_ALL": "Collapse All",
|
|
101
|
+
"EXPORT_TO_EXCEL": "Export to Excel",
|
|
102
|
+
"SHEET_NAME": "Sheet",
|
|
103
|
+
"EXPORT_AS_EXCEL_TABLE": "Export as Excel Table",
|
|
104
|
+
"RANGE_SELECT_TO": "Range Select To:",
|
|
105
|
+
"RANGE_SELECT_FROM": "To:",
|
|
106
|
+
"RANGE_SELECT_COPY": "Copy",
|
|
107
|
+
"RANGE_SELECT_CHART": "Create Chart",
|
|
108
|
+
"CLIPBOARD_PASTE": "Paste All",
|
|
109
|
+
"CLIPBOARD_PASTE_WITHOUT_HEADER": "Paste Without Header",
|
|
110
|
+
"CLIPBOARD_COPY": "Copy All",
|
|
111
|
+
"CLIPBOARD_CUT": "Cut",
|
|
112
|
+
"PAGE": "Page",
|
|
113
|
+
"MORE": "More",
|
|
114
|
+
"TO": "-",
|
|
115
|
+
"OF": "/",
|
|
116
|
+
"NEXT": "Next",
|
|
117
|
+
"LAST": "Last",
|
|
118
|
+
"FIRST": "First",
|
|
119
|
+
"PREVIOUS": "Previous",
|
|
120
|
+
"PAGE_SIZE_SELECTOR_LABEL": "Page Size",
|
|
121
|
+
"SELECT_ALL": "Select All",
|
|
122
|
+
"SELECT_ALL_SEARCH_RESULTS": "Select All Search Results",
|
|
123
|
+
"SEARCH_OOO": "Search...",
|
|
124
|
+
"BLANKS": "(Blanks)",
|
|
125
|
+
"NO_MATCHES": "No matches",
|
|
126
|
+
"FILTER_OOO": "Filter...",
|
|
127
|
+
"EQUALS": "Equals",
|
|
128
|
+
"NOT_EQUAL": "Not equal",
|
|
129
|
+
"BLANK": "Blank",
|
|
130
|
+
"NOT_BLANK": "Not blank",
|
|
131
|
+
"EMPTY": "Choose One",
|
|
132
|
+
"LESS_THAN": "Less than",
|
|
133
|
+
"GREATER_THAN": "Greater than",
|
|
134
|
+
"LESS_THAN_OR_EQUAL": "Less than or equal",
|
|
135
|
+
"GREATER_THAN_OR_EQUAL": "Greater than or equal",
|
|
136
|
+
"IN_RANGE": "In range",
|
|
137
|
+
"IN_RANGE_START": "from",
|
|
138
|
+
"IN_RANGE_END": "to",
|
|
139
|
+
"CONTAINS": "Contains",
|
|
140
|
+
"NOT_CONTAINS": "Not contains",
|
|
141
|
+
"STARTS_WITH": "Starts with",
|
|
142
|
+
"ENDS_WITH": "Ends with",
|
|
143
|
+
"DATE_FORMAT_OOO": "yyyy-mm-dd",
|
|
144
|
+
"AND_CONDITION": "AND",
|
|
145
|
+
"OR_CONDITION": "OR",
|
|
146
|
+
"APPLY_FILTER": "Apply",
|
|
147
|
+
"RESET_FILTER": "Reset",
|
|
148
|
+
"CLEAR_FILTER": "Clear",
|
|
149
|
+
"CANCEL_FILTER": "Cancel",
|
|
150
|
+
"TEXT_FILTER": "Text Filter",
|
|
151
|
+
"NUMBER_FILTER": "Number Filter",
|
|
152
|
+
"DATE_FILTER": "Date Filter",
|
|
153
|
+
"SET_FILTER": "Set Filter"
|
|
154
|
+
},
|
|
155
|
+
"GANTT": {
|
|
156
|
+
"15_MINUTES": "15 Minutes",
|
|
157
|
+
"HOUR": "Hour",
|
|
158
|
+
"DAY": "Day",
|
|
159
|
+
"WEEK": "Week",
|
|
160
|
+
"MONTH": "Month",
|
|
161
|
+
"QUARTER": "Quarter",
|
|
162
|
+
"YEAR": "Year",
|
|
163
|
+
"CREATE": "Create",
|
|
164
|
+
"ZOOM_IN": "Zoom in",
|
|
165
|
+
"ZOOM_OUT": "Zoom out",
|
|
166
|
+
"ITEMS": "items",
|
|
167
|
+
"OVERLAPPING": "Overlapping",
|
|
168
|
+
"MINUTES": "{{minutes}} minutes",
|
|
169
|
+
"HOURS": "{{hours}} hours",
|
|
170
|
+
"HOURS_MINUTES": "{{hours}} hours {{minutes}} minutes",
|
|
171
|
+
"DAYS": "{{days}} days",
|
|
172
|
+
"DAYS_HOURS": "{{days}} days {{hours}} hours",
|
|
173
|
+
"OVERLAPPING_EXISTS": "Overlapping Exists",
|
|
174
|
+
"CONFLICTING_TASKS": "Conflicting Tasks",
|
|
175
|
+
"OVERLAPPING_TASKS": "{{count}} tasks overlapping: {{tasks}}",
|
|
176
|
+
"START_DATE": "Start Date",
|
|
177
|
+
"END_DATE": "End Date",
|
|
178
|
+
"DURATION": "Duration",
|
|
179
|
+
"PROGRESS": "Progress",
|
|
180
|
+
"LINKS": "Links",
|
|
181
|
+
"CATEGORY": "Category",
|
|
182
|
+
"VIEW_CATEGORY_NOTES": "View Category Notes",
|
|
183
|
+
"VIEW_TASK_DETAILS": "View Task Details",
|
|
184
|
+
"NOTES": "Notes",
|
|
185
|
+
"DEPENDENCIES": "Dependencies",
|
|
186
|
+
"TOTAL_ITEMS": "Total Items",
|
|
187
|
+
"PROJECT_PHASES": "Project Phases",
|
|
188
|
+
"PREPARATION": "Preparation",
|
|
189
|
+
"PRODUCTION": "Production",
|
|
190
|
+
"CLEANING": "Cleaning",
|
|
191
|
+
"Create": "Add",
|
|
192
|
+
"GanttChartErrorLoadingComponent": "Error Loading Component"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
{
|
|
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
|
+
"@placeholderAll" : "Hepsi",
|
|
38
|
+
"@placeholderApplicationDefinition" : "Lütfen uygulama tanımını giriniz",
|
|
39
|
+
"@placeholderEmail" : "ornek@mail.com",
|
|
40
|
+
"@placeholderFaultyLogin" : "Hatalı giriş sayısı",
|
|
41
|
+
"@placeholderFullname" : "Adınızı ve soyadınızı giriniz",
|
|
42
|
+
"@placeholderGroupCode" : "Lütfen grup kodunu giriniz",
|
|
43
|
+
"@placeholderPassword" : "Şifrenizi giriniz",
|
|
44
|
+
"@placeholderPasswordValidUntil" : "Şifre geçerlilik tarihi seçiniz",
|
|
45
|
+
"@placeholderPhone" : "Telefon numaranızı giriniz",
|
|
46
|
+
"@placeholderSearch" : "Ara...",
|
|
47
|
+
"@placeholderUsername" : "Kullanıcı adınızı giriniz",
|
|
48
|
+
"@placeholderValidUntil" : "Geçerlilik tarihi seçiniz",
|
|
49
|
+
"@pleaseFillRequiredFields" : "Lütfen zorunlu alanları doldurun",
|
|
50
|
+
"@pleaseSelectRowToDelete" : "Lütfen silmek için bir satır seçin",
|
|
51
|
+
"@popupGotoRecordDefinition" : "Kayıt Tanımına Git",
|
|
52
|
+
"@popupNewRecord" : "Yeni Kayıt",
|
|
53
|
+
"@popupSelectFromList" : "Listeden Seç",
|
|
54
|
+
"@profile" : "Profil",
|
|
55
|
+
"@recordAddedSuccessfully" : "Kayıt eklendi",
|
|
56
|
+
"@recordCreatedSuccessfully" : "Kayıt oluşturuldu",
|
|
57
|
+
"@recordDeletedSuccessfully" : "Kayıt silindi",
|
|
58
|
+
"@recordUpdatedSuccessfully" : "Kayıt güncellendi",
|
|
59
|
+
"@rememberMe" : "Beni hatırla",
|
|
60
|
+
"@requiredField" : "Alan zorunludur",
|
|
61
|
+
"@requiredFieldPlaceHolder" : "Zorunlu alan",
|
|
62
|
+
"@search" : "Ara",
|
|
63
|
+
"@select" : "Seç",
|
|
64
|
+
"@setPassword" : "Şifre ata",
|
|
65
|
+
"@standard_Colors" : "Standart Renkler",
|
|
66
|
+
"@statusActive" : "Aktif",
|
|
67
|
+
"@statusInactive" : "Pasif",
|
|
68
|
+
"@tokenCount" : "Token geçerlilik süresi",
|
|
69
|
+
"@unsavedChangesConfirm" : "Kaydedilmemiş değişiklikler var. Ayrılmak istediğinize emin misiniz?",
|
|
70
|
+
"@updateFailed" : "Güncelleme başarısız oldu",
|
|
71
|
+
"@username" : "Kullanıcı adı",
|
|
72
|
+
"mfaCode" : "Güvenlik kodu",
|
|
73
|
+
"mfaCode is required" : "Güvenlik kodu zorunludur",
|
|
74
|
+
"password is required" : "Şifre zorunludur",
|
|
75
|
+
"resend MFACode" : "Güvenlik kodunu tekrar gönder",
|
|
76
|
+
"username is required" : "Kullanıcı adı zorunludur",
|
|
77
|
+
"AG_GRID": {
|
|
78
|
+
"TOTAL_ROWS": "Toplam Satır",
|
|
79
|
+
"FILTERED_ROWS": "Filtrelenmiş",
|
|
80
|
+
"SELECTED_ROWS": "Seçili",
|
|
81
|
+
"NO_ROWS_TO_SHOW": "Gösterilecek veri yok",
|
|
82
|
+
"LOADING": "Yükleniyor...",
|
|
83
|
+
"COPY": "Kopyala",
|
|
84
|
+
"COPY_WITH_HEADERS": "Başlıklarla Kopyala",
|
|
85
|
+
"COPY_WITH_GROUP_HEADERS": "Grup Başlıklarıyla Kopyala",
|
|
86
|
+
"PASTE": "Yapıştır",
|
|
87
|
+
"EXPORT": "Dışa Aktar",
|
|
88
|
+
"CSV_EXPORT": "CSV Olarak Dışa Aktar",
|
|
89
|
+
"EXCEL_EXPORT": "Excel Olarak Dışa Aktar",
|
|
90
|
+
"PIN_COLUMN": "Sütunu Sabitle",
|
|
91
|
+
"PIN_LEFT": "Sola Sabitle",
|
|
92
|
+
"PIN_RIGHT": "Sağa Sabitle",
|
|
93
|
+
"NO_PIN": "Sabitlemeyi Kaldır",
|
|
94
|
+
"SORT_ASCENDING": "Artan Sırala",
|
|
95
|
+
"SORT_DESCENDING": "Azalan Sırala",
|
|
96
|
+
"AUTOSIZE_THIS_COLUMN": "Bu Sütunu Otomatik Boyutlandır",
|
|
97
|
+
"AUTOSIZE_ALL_COLUMNS": "Tüm Sütunları Otomatik Boyutlandır",
|
|
98
|
+
"RESET_COLUMNS": "Sütunları Sıfırla",
|
|
99
|
+
"EXPAND_ALL": "Tümünü Genişlet",
|
|
100
|
+
"COLLAPSE_ALL": "Tümünü Daralt",
|
|
101
|
+
"EXPORT_TO_EXCEL": "Excel'e Aktar",
|
|
102
|
+
"SHEET_NAME": "Sayfa",
|
|
103
|
+
"EXPORT_AS_EXCEL_TABLE": "Excel Tablosu Olarak Aktar",
|
|
104
|
+
"RANGE_SELECT_TO": "Seçim Aralığı:",
|
|
105
|
+
"RANGE_SELECT_FROM": "Şuraya kadar:",
|
|
106
|
+
"RANGE_SELECT_COPY": "Kopyala",
|
|
107
|
+
"RANGE_SELECT_CHART": "Grafik Oluştur",
|
|
108
|
+
"CLIPBOARD_PASTE": "Tümünü Yapıştır",
|
|
109
|
+
"CLIPBOARD_PASTE_WITHOUT_HEADER": "Başlıksız Yapıştır",
|
|
110
|
+
"CLIPBOARD_COPY": "Tümünü Kopyala",
|
|
111
|
+
"CLIPBOARD_CUT": "Kes",
|
|
112
|
+
"PAGE": "Sayfa",
|
|
113
|
+
"MORE": "Daha Fazla",
|
|
114
|
+
"TO": "-",
|
|
115
|
+
"OF": "/",
|
|
116
|
+
"NEXT": "Sonraki",
|
|
117
|
+
"LAST": "Son",
|
|
118
|
+
"FIRST": "İlk",
|
|
119
|
+
"PREVIOUS": "Önceki",
|
|
120
|
+
"PAGE_SIZE_SELECTOR_LABEL": "Sayfa Boyutu",
|
|
121
|
+
"SELECT_ALL": "Tümünü Seç",
|
|
122
|
+
"SELECT_ALL_SEARCH_RESULTS": "Tüm Arama Sonuçlarını Seç",
|
|
123
|
+
"SEARCH_OOO": "Ara...",
|
|
124
|
+
"BLANKS": "(Boşlar)",
|
|
125
|
+
"NO_MATCHES": "Eşleşme yok",
|
|
126
|
+
"FILTER_OOO": "Filtrele...",
|
|
127
|
+
"EQUALS": "Eşittir",
|
|
128
|
+
"NOT_EQUAL": "Eşit değil",
|
|
129
|
+
"BLANK": "Boş",
|
|
130
|
+
"NOT_BLANK": "Boş değil",
|
|
131
|
+
"EMPTY": "Seçiniz",
|
|
132
|
+
"LESS_THAN": "Küçüktür",
|
|
133
|
+
"GREATER_THAN": "Büyüktür",
|
|
134
|
+
"LESS_THAN_OR_EQUAL": "Küçük eşittir",
|
|
135
|
+
"GREATER_THAN_OR_EQUAL": "Büyük eşittir",
|
|
136
|
+
"IN_RANGE": "Aralıkta",
|
|
137
|
+
"IN_RANGE_START": "başlangıç",
|
|
138
|
+
"IN_RANGE_END": "bitiş",
|
|
139
|
+
"CONTAINS": "İçerir",
|
|
140
|
+
"NOT_CONTAINS": "İçermez",
|
|
141
|
+
"STARTS_WITH": "Başlar",
|
|
142
|
+
"ENDS_WITH": "Biter",
|
|
143
|
+
"DATE_FORMAT_OOO": "gg-aa-yyyy",
|
|
144
|
+
"AND_CONDITION": "VE",
|
|
145
|
+
"OR_CONDITION": "VEYA",
|
|
146
|
+
"APPLY_FILTER": "Uygula",
|
|
147
|
+
"RESET_FILTER": "Sıfırla",
|
|
148
|
+
"CLEAR_FILTER": "Temizle",
|
|
149
|
+
"CANCEL_FILTER": "İptal",
|
|
150
|
+
"TEXT_FILTER": "Metin Filtresi",
|
|
151
|
+
"NUMBER_FILTER": "Sayı Filtresi",
|
|
152
|
+
"DATE_FILTER": "Tarih Filtresi",
|
|
153
|
+
"SET_FILTER": "Set Filtresi"
|
|
154
|
+
},
|
|
155
|
+
"GANTT": {
|
|
156
|
+
"15_MINUTES": "15 Dakika",
|
|
157
|
+
"HOUR": "Saat",
|
|
158
|
+
"DAY": "Gün",
|
|
159
|
+
"WEEK": "Hafta",
|
|
160
|
+
"MONTH": "Ay",
|
|
161
|
+
"QUARTER": "Çeyrek",
|
|
162
|
+
"YEAR": "Yıl",
|
|
163
|
+
"CREATE": "Oluştur",
|
|
164
|
+
"ZOOM_IN": "Yakınlaştır",
|
|
165
|
+
"ZOOM_OUT": "Uzaklaştır",
|
|
166
|
+
"ITEMS": "öğe",
|
|
167
|
+
"OVERLAPPING": "Çakışma",
|
|
168
|
+
"MINUTES": "{{minutes}} dakika",
|
|
169
|
+
"HOURS": "{{hours}} saat",
|
|
170
|
+
"HOURS_MINUTES": "{{hours}} saat {{minutes}} dakika",
|
|
171
|
+
"DAYS": "{{days}} gün",
|
|
172
|
+
"DAYS_HOURS": "{{days}} gün {{hours}} saat",
|
|
173
|
+
"OVERLAPPING_EXISTS": "Çakışma Var",
|
|
174
|
+
"CONFLICTING_TASKS": "Çakışan Görevler",
|
|
175
|
+
"OVERLAPPING_TASKS": "{{count}} görev çakışıyor: {{tasks}}",
|
|
176
|
+
"START_DATE": "Başlangıç Tarihi",
|
|
177
|
+
"END_DATE": "Bitiş Tarihi",
|
|
178
|
+
"DURATION": "Süre",
|
|
179
|
+
"PROGRESS": "İlerleme",
|
|
180
|
+
"LINKS": "Bağlantılar",
|
|
181
|
+
"CATEGORY": "Kategori",
|
|
182
|
+
"VIEW_CATEGORY_NOTES": "Kategori Notları Görüntüle",
|
|
183
|
+
"VIEW_TASK_DETAILS": "Detayları Görüntüle",
|
|
184
|
+
"NOTES": "Notlar",
|
|
185
|
+
"DEPENDENCIES": "Bağımlılıklar",
|
|
186
|
+
"TOTAL_ITEMS": "Toplam Öğe",
|
|
187
|
+
"PROJECT_PHASES": "Proje Fazları",
|
|
188
|
+
"PREPARATION": "Hazırlık",
|
|
189
|
+
"PRODUCTION": "Üretim",
|
|
190
|
+
"CLEANING": "Temizlik",
|
|
191
|
+
"Create": "Ekle",
|
|
192
|
+
"GanttChartErrorLoadingComponent": "Component yüklenirken hata oluştu"
|
|
193
|
+
}
|
|
194
|
+
}
|