Skip to content

Commit 0f40641

Browse files
committed
localize variable input label
1 parent 3fa65ad commit 0f40641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/sqlCellStatusBarProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export class SqlCellStatusBarProvider implements NotebookCellStatusBarItemProvid
169169
const variableName = this.getVariableName(cell);
170170

171171
return {
172-
text: `Variable: ${variableName}`,
172+
text: l10n.t('Variable: {0}', variableName),
173173
alignment: 1, // NotebookCellStatusBarAlignment.Left
174174
tooltip: l10n.t('Variable name for SQL query result\nClick to change'),
175175
command: {

0 commit comments

Comments
 (0)