Skip to content

Commit

Permalink
Fix: Fixed missing string for status center
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 committed Oct 22, 2023
1 parent c43a41e commit c5d8ba3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Files.App/Strings/en-US/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -3584,4 +3584,7 @@
<data name="UnblockDownloadedFile" xml:space="preserve">
<value>Unblock downloaded file</value>
</data>
<data name="NoFileOperations" xml:space="preserve">
<value>No ongoing file operations</value>
</data>
</root>
2 changes: 1 addition & 1 deletion src/Files.App/UserControls/StatusCenter.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
HorizontalAlignment="Center"
VerticalAlignment="Center"
x:Load="{x:Bind ViewModel.HasAnyItem, Converter={StaticResource BoolNegationConverter}, Mode=OneWay}"
Text="No items here." />
Text="{helpers:ResourceString Name=NoFileOperations}" />

</Grid>
</UserControl>

0 comments on commit c5d8ba3

Please sign in to comment.