Timothy Jaeryang Baek 1 month ago
parent
commit
4d7c8b4a6a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/lib/components/common/FileItemModal.svelte

+ 4 - 4
src/lib/components/common/FileItemModal.svelte

@@ -143,13 +143,13 @@
 
 						{#if item?.file?.data?.content}
 							<div class="capitalize shrink-0">
-								{getLineCount(item?.file?.data?.content ?? '')} extracted lines
+								{$i18n.t('{{COUNT}} extracted lines', {
+									COUNT: getLineCount(item?.file?.data?.content ?? '')
+								})}
 							</div>
 
 							<div class="flex items-center gap-1 shrink-0">
-								<Info />
-
-								Formatting may be inconsistent from source.
+								• {$i18n.t('Formatting may be inconsistent from source.')}
 							</div>
 						{/if}