Skip to content

Commit 048553e

Browse files
committed
Changed some localization resources
1 parent 0e1312e commit 048553e

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

SecureFolderFS.WinUI/ServiceImplementation/LocalizationService.cs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
namespace SecureFolderFS.WinUI.ServiceImplementation
1010
{
11-
// TODO: Implement localization
1211
/// <inheritdoc cref="ILocalizationService"/>
1312
internal sealed class LocalizationService : ILocalizationService
1413
{

SecureFolderFS.WinUI/Strings/en-US/Resources.resw

+6-6
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,9 @@
138138
<data name="CheckForUpdates" xml:space="preserve">
139139
<value>Check for updates</value>
140140
</data>
141-
<data name="ConfigureSettings" xml:space="preserve">
142-
<value>ConfigureSettings</value>
143-
</data>
144141
<data name="Confirm" xml:space="preserve">
145142
<value>Confirm</value>
146143
</data>
147-
<data name="ContentEncryption" xml:space="preserve">
148-
<value>Content encryption</value>
149-
</data>
150144
<data name="Continue" xml:space="preserve">
151145
<value>Continue</value>
152146
</data>
@@ -168,6 +162,9 @@
168162
<data name="CurrentPassword" xml:space="preserve">
169163
<value>Current password</value>
170164
</data>
165+
<data name="DataEncryption" xml:space="preserve">
166+
<value>Data encryption</value>
167+
</data>
171168
<data name="ExportSettings" xml:space="preserve">
172169
<value>Export settings</value>
173170
</data>
@@ -198,6 +195,9 @@
198195
<data name="Licenses" xml:space="preserve">
199196
<value>Licenses</value>
200197
</data>
198+
<data name="ManageSettings" xml:space="preserve">
199+
<value>Manage settings</value>
200+
</data>
201201
<data name="MyVaults" xml:space="preserve">
202202
<value>My vaults</value>
203203
</data>

SecureFolderFS.WinUI/Views/Settings/GeneralSettingsPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
</ComboBox>
142142
</ucab:ActionBlockControl.ActionElement>
143143
</ucab:ActionBlockControl>
144-
<ucab:ActionBlockControl Title="{l:ResourceString Name=ConfigureSettings}" IsEnabled="False">
144+
<ucab:ActionBlockControl Title="{l:ResourceString Name=ManageSettings}" IsEnabled="False">
145145
<ucab:ActionBlockControl.Icon>
146146
<FontIcon Glyph="&#xE713;" />
147147
</ucab:ActionBlockControl.Icon>

SecureFolderFS.WinUI/Views/Vault/VaultPropertiesPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</Grid.ColumnDefinitions>
2323

2424
<StackPanel Grid.Column="0" Spacing="4">
25-
<TextBlock Text="{l:ResourceString Name=ContentEncryption}" />
25+
<TextBlock Text="{l:ResourceString Name=DataEncryption}" />
2626
<TextBlock Text="{l:ResourceString Name=FileNameEncryption}" />
2727
</StackPanel>
2828
<StackPanel Grid.Column="1" Spacing="4">

SecureFolderFS.WinUI/Views/VaultWizard/EncryptionWizardPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</Grid.RowDefinitions>
1717

1818
<StackPanel Grid.Row="0" Spacing="4">
19-
<TextBlock Text="{l:ResourceString Name=ContentEncryption}" />
19+
<TextBlock Text="{l:ResourceString Name=DataEncryption}" />
2020
<ComboBox
2121
ItemsSource="{x:Bind ViewModel.ContentCiphers}"
2222
Loaded="ComboBox_Loaded"

0 commit comments

Comments
 (0)