aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/locales/scheme.ts
blob: 13d555d505ea89aec866c810c08c84acd94f2dd9 (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
export default interface TranslationResource {
  welcome: string;
  search: string;
  chooseImage: string;
  loadImageError: string;
  serviceWorker: {
    availableOffline: string;
    upgradePrompt: string;
    upgradeNow: string;
    upgradeSuccess: string;
    externalActivatedPrompt: string;
    reloadNow: string;
  };
  nav: {
    settings: string;
    login: string;
    about: string;
  };
  home: {
    go: string;
    allTimeline: string;
    joinTimeline: string;
    ownTimeline: string;
    createButton: string;
    createDialog: {
      title: string;
      name: string;
      nameFormat: string;
      badFormat: string;
      noEmpty: string;
      tooLong: string;
    };
  };
  operationDialog: {
    retry: string;
    nextStep: string;
    previousStep: string;
    confirm: string;
    cancel: string;
    ok: string;
    processing: string;
    success: string;
    error: string;
  };
  timeline: {
    messageCantSee: string;
    userNotExist: string;
    timelineNotExist: string;
    manage: string;
    memberButton: string;
    send: string;
    deletePostFailed: string;
    sendPostFailed: string;
    visibility: {
      public: string;
      register: string;
      private: string;
    };
    visibilityTooltip: {
      public: string;
      register: string;
      private: string;
    };
    dialogChangeProperty: {
      title: string;
      visibility: string;
      description: string;
    };
    member: {
      alreadyMember: string;
      add: string;
      remove: string;
    };
    manageItem: {
      nickname: string;
      avatar: string;
      property: string;
      member: string;
      delete: string;
    };
    deleteDialog: {
      title: string;
      inputPrompt: string;
      notMatch: string;
    };
    post: {
      deleteDialog: {
        title: string;
        prompt: string;
      };
    };
  };
  user: {
    username: string;
    password: string;
    login: string;
    rememberMe: string;
    welcomeBack: string;
    verifyTokenFailed: string;
    verifyTokenFailedNetwork: string;
  };
  login: {
    emptyUsername: string;
    emptyPassword: string;
    badCredential: string;
    alreadyLogin: string;
  };
  userPage: {
    dialogChangeNickname: {
      title: string;
      inputLabel: string;
    };
    dialogChangeAvatar: {
      title: string;
      previewImgAlt: string;
      prompt: {
        select: string;
        crop: string;
        processingCrop: string;
        preview: string;
        uploading: string;
      };
      upload: string;
    };
  };
  settings: {
    subheaders: {
      account: string;
      customization: string;
    };
    languagePrimary: string;
    languageSecondary: string;
    changePassword: string;
    logout: string;
    gotoSelf: string;
    dialogChangePassword: {
      title: string;
      prompt: string;
      inputOldPassword: string;
      inputNewPassword: string;
      inputRetypeNewPassword: string;
      errorEmptyOldPassword: string;
      errorEmptyNewPassword: string;
      errorRetypeNotMatch: string;
    };
    dialogConfirmLogout: {
      title: string;
      prompt: string;
    };
  };
  about: {
    author: {
      title: string;
      fullname: string;
      nickname: string;
      introduction: string;
      introductionContent: string;
      links: string;
    };
    site: {
      title: string;
      content: string;
      repo: string;
    };
    credits: {
      title: string;
      content: string;
      frontend: string;
      backend: string;
    };
  };
  admin: {
    title: string;
  };
}