You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Auto Arrange will automatically reposition all diagram elements based on optimal layout algorithms. Any custom positioning you've created will be lost. Do you want to proceed with auto-arranging your schema diagram?": "Auto Arrange will automatically reposition all diagram elements based on optimal layout algorithms. Any custom positioning you've created will be lost. Do you want to proceed with auto-arranging your schema diagram?",
362
362
"Filter": "Filter",
363
+
"Filter ({0})/{0} is the number of selected tables": {
364
+
"message": "Filter ({0})",
365
+
"comment": [
366
+
"{0} is the number of selected tables"
367
+
]
368
+
},
363
369
"Refresh": "Refresh",
364
370
"Publish Changes": "Publish Changes",
365
371
"Edit Table": "Edit Table",
@@ -532,6 +538,7 @@
532
538
"Are you sure you want to delete the selected items?": "Are you sure you want to delete the selected items?",
533
539
"Undo": "Undo",
534
540
"Redo": "Redo",
541
+
"Search tables...": "Search tables...",
535
542
"To compare two schemas, first select a source schema and target schema, then press compare.": "To compare two schemas, first select a source schema and target schema, then press compare.",
536
543
"No schema differences were found.": "No schema differences were found.",
537
544
"Initializing comparison, this might take a while...": "Initializing comparison, this might take a while...",
Copy file name to clipboardExpand all lines: src/reactviews/common/locConstants.ts
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -386,7 +386,17 @@ export class LocConstants {
386
386
autoArrangeConfirmationContent: l10n.t(
387
387
"Auto Arrange will automatically reposition all diagram elements based on optimal layout algorithms. Any custom positioning you've created will be lost. Do you want to proceed with auto-arranging your schema diagram?",
388
388
),
389
-
filter: l10n.t("Filter"),
389
+
filter: (selectedTablesCount: number)=>{
390
+
if(selectedTablesCount===0){
391
+
returnl10n.t("Filter");
392
+
}else{
393
+
returnl10n.t({
394
+
message: "Filter ({0})",
395
+
args: [selectedTablesCount],
396
+
comment: ["{0} is the number of selected tables"],
0 commit comments