diff options
author | 杨宇千 <crupest@outlook.com> | 2019-10-25 18:46:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 18:46:01 +0800 |
commit | a175f8328d7a6c36464676d54fc50d03e64be0af (patch) | |
tree | c6ec0a916c78a02b36113fb62f0e919019df6cfc /Timeline/Resources/Controllers/UserController.Designer.cs | |
parent | 681e2cc9ecaeefd883a7c6645374926c184fba5d (diff) | |
parent | 5790142f81f2a94ad073834b1534acbf9b02ea3c (diff) | |
download | timeline-a175f8328d7a6c36464676d54fc50d03e64be0af.tar.gz timeline-a175f8328d7a6c36464676d54fc50d03e64be0af.tar.bz2 timeline-a175f8328d7a6c36464676d54fc50d03e64be0af.zip |
Merge pull request #52 from crupest/i18n
Add NeutralResourcesLanguage. Conform to best practices.
Diffstat (limited to 'Timeline/Resources/Controllers/UserController.Designer.cs')
-rw-r--r-- | Timeline/Resources/Controllers/UserController.Designer.cs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/Timeline/Resources/Controllers/UserController.Designer.cs b/Timeline/Resources/Controllers/UserController.Designer.cs index df9cab4c..0c9ac0d7 100644 --- a/Timeline/Resources/Controllers/UserController.Designer.cs +++ b/Timeline/Resources/Controllers/UserController.Designer.cs @@ -61,6 +61,60 @@ namespace Timeline.Resources.Controllers { }
/// <summary>
+ /// Looks up a localized string similar to Old password is wrong..
+ /// </summary>
+ internal static string ErrorChangePasswordBadPassword {
+ get {
+ return ResourceManager.GetString("ErrorChangePasswordBadPassword", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The new username {0} already exists..
+ /// </summary>
+ internal static string ErrorChangeUsernameAlreadyExist {
+ get {
+ return ResourceManager.GetString("ErrorChangeUsernameAlreadyExist", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The old username {0} does not exist..
+ /// </summary>
+ internal static string ErrorChangeUsernameNotExist {
+ get {
+ return ResourceManager.GetString("ErrorChangeUsernameNotExist", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The user does not exist..
+ /// </summary>
+ internal static string ErrorGetUserNotExist {
+ get {
+ return ResourceManager.GetString("ErrorGetUserNotExist", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Can't patch a user that does not exist..
+ /// </summary>
+ internal static string ErrorPatchUserNotExist {
+ get {
+ return ResourceManager.GetString("ErrorPatchUserNotExist", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Username is of bad format..
+ /// </summary>
+ internal static string ErrorPutBadUsername {
+ get {
+ return ResourceManager.GetString("ErrorPutBadUsername", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Attempt to change password with wrong old password failed..
/// </summary>
internal static string LogChangePasswordBadPassword {
|