i18n
This commit is contained in:
parent
74659f40a1
commit
f8796e2950
2 changed files with 9 additions and 2 deletions
|
@ -209,6 +209,7 @@
|
||||||
"Your comment": "Your comment",
|
"Your comment": "Your comment",
|
||||||
"Post --[button to submit something]--": "Post",
|
"Post --[button to submit something]--": "Post",
|
||||||
"Post --[noun, markdown post tab button]--": "Post",
|
"Post --[noun, markdown post tab button]--": "Post",
|
||||||
|
"Livestream --[noun, livestream tab button]--": "Livestream --[noun, livestream tab button]--",
|
||||||
"Posting...": "Posting...",
|
"Posting...": "Posting...",
|
||||||
"Incompatible daemon": "Incompatible daemon",
|
"Incompatible daemon": "Incompatible daemon",
|
||||||
"Incompatible daemon running": "Incompatible daemon running",
|
"Incompatible daemon running": "Incompatible daemon running",
|
||||||
|
@ -2065,6 +2066,10 @@
|
||||||
"Reset": "Reset",
|
"Reset": "Reset",
|
||||||
"Reset to original (previous) publish date": "Reset to original (previous) publish date",
|
"Reset to original (previous) publish date": "Reset to original (previous) publish date",
|
||||||
"Search for something...": "Search for something...",
|
"Search for something...": "Search for something...",
|
||||||
"Show reply": "Show reply",
|
"Confirm Comment Deletion": "Confirm Comment Deletion",
|
||||||
|
"Remove Comment": "Remove Comment",
|
||||||
|
"Are you sure you want to remove this comment?": "Are you sure you want to remove this comment?",
|
||||||
|
"This comment has a tip associated with it which cannot be reverted.": "This comment has a tip associated with it which cannot be reverted.",
|
||||||
|
"Recent Comments": "Recent Comments",
|
||||||
"--end--": "--end--"
|
"--end--": "--end--"
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,9 @@ function TopPage(props: Props) {
|
||||||
label={__('Repost Here')}
|
label={__('Repost Here')}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
publish: <Button button="secondary" onClick={() => beginPublish(queryName)} label={'Publish Here'} />,
|
publish: (
|
||||||
|
<Button button="secondary" onClick={() => beginPublish(queryName)} label={__('Publish Here')} />
|
||||||
|
),
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
%repost% %publish%
|
%repost% %publish%
|
||||||
|
|
Loading…
Reference in a new issue