aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/locales
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-07-31 01:16:10 +0800
committerGitHub <noreply@github.com>2020-07-31 01:16:10 +0800
commitfe950cad28ec6ff7bf6f399ddd31448180bc7601 (patch)
treed58a7c9a33a4cf16b128d71b94edf0110298bd13 /Timeline/ClientApp/src/app/locales
parentd900c1b8c012970db491f421e1975f5de3b450f3 (diff)
parentb8cf8379358958c1155442d0526bbfc8c4d65ded (diff)
downloadtimeline-fe950cad28ec6ff7bf6f399ddd31448180bc7601.tar.gz
timeline-fe950cad28ec6ff7bf6f399ddd31448180bc7601.tar.bz2
timeline-fe950cad28ec6ff7bf6f399ddd31448180bc7601.zip
Merge pull request #127 from crupest/offline-post
Add feature of offline post cache.
Diffstat (limited to 'Timeline/ClientApp/src/app/locales')
-rw-r--r--Timeline/ClientApp/src/app/locales/en/translation.ts5
-rw-r--r--Timeline/ClientApp/src/app/locales/scheme.ts5
-rw-r--r--Timeline/ClientApp/src/app/locales/zh/translation.ts5
3 files changed, 15 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/locales/en/translation.ts b/Timeline/ClientApp/src/app/locales/en/translation.ts
index 6abe910e..2f8fb312 100644
--- a/Timeline/ClientApp/src/app/locales/en/translation.ts
+++ b/Timeline/ClientApp/src/app/locales/en/translation.ts
@@ -92,6 +92,11 @@ const translation: TranslationResource = {
'This is a dangerous action. If you are sure to delete timeline<1>{{name}}</1>, please input its name below and click confirm button.',
notMatch: 'Name does not match.',
},
+ postSyncState: {
+ syncing: 'Syncing',
+ synced: 'Synced',
+ offline: 'Offline',
+ },
post: {
deleteDialog: {
title: 'Confirm Delete',
diff --git a/Timeline/ClientApp/src/app/locales/scheme.ts b/Timeline/ClientApp/src/app/locales/scheme.ts
index 19ac6c31..7aa7e125 100644
--- a/Timeline/ClientApp/src/app/locales/scheme.ts
+++ b/Timeline/ClientApp/src/app/locales/scheme.ts
@@ -83,6 +83,11 @@ export default interface TranslationResource {
inputPrompt: string;
notMatch: string;
};
+ postSyncState: {
+ syncing: string;
+ synced: string;
+ offline: string;
+ };
post: {
deleteDialog: {
title: string;
diff --git a/Timeline/ClientApp/src/app/locales/zh/translation.ts b/Timeline/ClientApp/src/app/locales/zh/translation.ts
index 372979c0..35cfa38c 100644
--- a/Timeline/ClientApp/src/app/locales/zh/translation.ts
+++ b/Timeline/ClientApp/src/app/locales/zh/translation.ts
@@ -88,6 +88,11 @@ const translation: TranslationResource = {
'这是一个危险的操作。如果您确认要删除时间线<1>{{name}}</1>,请在下面输入它的名字并点击确认。',
notMatch: '名字不匹配',
},
+ postSyncState: {
+ syncing: '同步中',
+ synced: '同步成功',
+ offline: '离线',
+ },
post: {
deleteDialog: {
title: '确认删除',