Migrate more strings to translation keys (#11499)

This commit is contained in:
Michael Telatynski 2023-09-01 08:26:48 +01:00 committed by GitHub
parent 45094bda7c
commit f88d76e2ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
77 changed files with 2043 additions and 2006 deletions

View file

@ -270,12 +270,12 @@ export default class DateSeparator extends React.Component<IProps, IState> {
>
<IconizedContextMenuOptionList first>
<IconizedContextMenuOption
label={_t("Last week")}
label={_t("time|last_week")}
onClick={this.onLastWeekClicked}
data-testid="jump-to-date-last-week"
/>
<IconizedContextMenuOption
label={_t("Last month")}
label={_t("time|last_month")}
onClick={this.onLastMonthClicked}
data-testid="jump-to-date-last-month"
/>

View file

@ -63,7 +63,7 @@ const JumpToDatePicker: React.FC<IProps> = ({ ts, onDatePicked }: IProps) => {
className="mx_JumpToDatePicker_submitButton"
onClick={onJumpToDateSubmit}
>
{_t("Go")}
{_t("action|go")}
</RovingAccessibleButton>
</form>
);