Skip to content

Commit c5d8ba3

Browse files
committed
Fix: Fixed missing string for status center
1 parent c43a41e commit c5d8ba3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Files.App/Strings/en-US/Resources.resw

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3584,4 +3584,7 @@
35843584
<data name="UnblockDownloadedFile" xml:space="preserve">
35853585
<value>Unblock downloaded file</value>
35863586
</data>
3587+
<data name="NoFileOperations" xml:space="preserve">
3588+
<value>No ongoing file operations</value>
3589+
</data>
35873590
</root>

src/Files.App/UserControls/StatusCenter.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@
361361
HorizontalAlignment="Center"
362362
VerticalAlignment="Center"
363363
x:Load="{x:Bind ViewModel.HasAnyItem, Converter={StaticResource BoolNegationConverter}, Mode=OneWay}"
364-
Text="No items here." />
364+
Text="{helpers:ResourceString Name=NoFileOperations}" />
365365

366366
</Grid>
367367
</UserControl>

0 commit comments

Comments
 (0)