Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add translation to missing items #1180

Merged
merged 9 commits into from
Nov 14, 2022
Prev Previous commit
Next Next commit
Update src/components/diff/PlainTextDiff.ts
Change translation to type Record.

Co-authored-by: Frédéric Collonval <fcollonval@users.noreply.github.com>
  • Loading branch information
kostyafarber and fcollonval authored Nov 14, 2022
commit 17db8023b750a9c5b1fd27b07ea616f52a7733c1
2 changes: 1 addition & 1 deletion src/components/diff/PlainTextDiff.ts
Original file line number Diff line number Diff line change
@@ -319,7 +319,7 @@ export class PlainTextDiff extends Widget implements Git.Diff.IDiffWidget {
protected _mergeView: MergeView.MergeViewEditor;
protected _model: Git.Diff.IModel;
protected _trans: TranslationBundle;
protected _translations: any;
protected _translations: Record<string, string>;

private _reference: string | null = null;
private _challenger: string | null = null;