-
Notifications
You must be signed in to change notification settings - Fork 0
/
Messages.cs
35 lines (34 loc) · 1.83 KB
/
Messages.cs
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
using Core.Entities.Concrete;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace Business.Constants
{
public static class Messages
{
public static string CarAdded = "Ürün eklendi";
public static string CarDeleted = "Ürün silindi";
public static string CarUpdated = "Ürün güncellendi";
public static string CarNameInvalid = "Ürün ismi geçersiz";
public static string MaintenanceTime = "Sistem Bakımda";
public static string CarsListed = "Araçlar Listelendi";
public static string CarsDetailed = "Araç Detayları Listelendi";
public static string SuccessMessage = "İşlem Başarılı";
public static string CarCountOfCategoryError = "Bir kategoride en fazla 10 araba olabilir";
public static string CarDescriptionAlreadyExists = "Böyle bir açıklama zaten mevcut";
public static string BrandLimitExceded = "Marka limiti aşıldığı için yeni ürün eklenemiyor";
public static string ImageLimit = "Maksimum fotoğraf sayısına ulaşıldı";
public static string ImageAdded = "Resim eklendi";
public static string AuthorizationDenied = "Yetkiniz yok.";
public static string UserRegistered = "Kayıt oldu";
public static string UserNotFound = "Kullanıcı bulunamadı";
public static string PasswordError = "Parola hatası";
public static string SuccessfulLogin = "Başarılı giriş";
public static string UserAlreadyExists = "Kullanıcı mevcut";
public static string AccessTokenCreated = "Erişim Tokeni oluşturuldu";
public static string CarNotFound = "Araç bulunamadı";
public static string ColorNotFound = "Renk bulunamadı";
public static string BrandNotFound = "Marka bulunamadı";
}
}