diff options
author | crupest <crupest@outlook.com> | 2021-04-27 19:29:20 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-27 19:29:20 +0800 |
commit | a6150c487e7a0eb3fb1d9874d2fa7de61cdbfd30 (patch) | |
tree | 65ad2e897051d36ca49896e0df66841df4bffd6f /BackEnd/Timeline/Services/User/Resource.Designer.cs | |
parent | cb3d8d0997679d2b9a961ec92b6555af4c4ef53f (diff) | |
download | timeline-a6150c487e7a0eb3fb1d9874d2fa7de61cdbfd30.tar.gz timeline-a6150c487e7a0eb3fb1d9874d2fa7de61cdbfd30.tar.bz2 timeline-a6150c487e7a0eb3fb1d9874d2fa7de61cdbfd30.zip |
refactor: ...
Diffstat (limited to 'BackEnd/Timeline/Services/User/Resource.Designer.cs')
-rw-r--r-- | BackEnd/Timeline/Services/User/Resource.Designer.cs | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Services/User/Resource.Designer.cs b/BackEnd/Timeline/Services/User/Resource.Designer.cs index 4f75b055..908e2732 100644 --- a/BackEnd/Timeline/Services/User/Resource.Designer.cs +++ b/BackEnd/Timeline/Services/User/Resource.Designer.cs @@ -70,6 +70,24 @@ namespace Timeline.Services.User { }
/// <summary>
+ /// Looks up a localized string similar to Can't change root user's permission..
+ /// </summary>
+ internal static string ExceptionChangeRootUserPermission {
+ get {
+ return ResourceManager.GetString("ExceptionChangeRootUserPermission", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Can't delete root user..
+ /// </summary>
+ internal static string ExceptionDeleteRootUser {
+ get {
+ return ResourceManager.GetString("ExceptionDeleteRootUser", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to The hashes password is of bad format. It might not be created by server. Reason: {0}.
/// </summary>
internal static string ExceptionHashedPasswordBadFormat {
@@ -133,6 +151,15 @@ namespace Timeline.Services.User { }
/// <summary>
+ /// Looks up a localized string similar to Can't perform such operation on root user..
+ /// </summary>
+ internal static string ExceptionInvalidOperationOnRootUser {
+ get {
+ return ResourceManager.GetString("ExceptionInvalidOperationOnRootUser", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Nickname is of bad format. {0}.
/// </summary>
internal static string ExceptionNicknameBadFormat {
@@ -151,6 +178,15 @@ namespace Timeline.Services.User { }
/// <summary>
+ /// Looks up a localized string similar to Password can't be null..
+ /// </summary>
+ internal static string ExceptionPasswordNull {
+ get {
+ return ResourceManager.GetString("ExceptionPasswordNull", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to User with given constraints already exists..
/// </summary>
internal static string ExceptionUserAlreadyExist {
@@ -169,6 +205,15 @@ namespace Timeline.Services.User { }
/// <summary>
+ /// Looks up a localized string similar to Username can't be null..
+ /// </summary>
+ internal static string ExceptionUsernameNull {
+ get {
+ return ResourceManager.GetString("ExceptionUsernameNull", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Requested user does not exist..
/// </summary>
internal static string ExceptionUserNotExist {
@@ -176,5 +221,41 @@ namespace Timeline.Services.User { return ResourceManager.GetString("ExceptionUserNotExist", resourceCulture);
}
}
+
+ /// <summary>
+ /// Looks up a localized string similar to User with username = {0}, id ={1} changed password..
+ /// </summary>
+ internal static string LogChangePassowrd {
+ get {
+ return ResourceManager.GetString("LogChangePassowrd", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A user is deleted with username = {0}, id = {1}..
+ /// </summary>
+ internal static string LogDeleteUser {
+ get {
+ return ResourceManager.GetString("LogDeleteUser", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A new user is created with username = {0}, id = {1}..
+ /// </summary>
+ internal static string LogUserCreated {
+ get {
+ return ResourceManager.GetString("LogUserCreated", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A user is modified with username = {0}, id = {1}..
+ /// </summary>
+ internal static string LogUserModified {
+ get {
+ return ResourceManager.GetString("LogUserModified", resourceCulture);
+ }
+ }
}
}
|