Skip to content

Commit 28cf394

Browse files
committed
Chore: Update strings
1 parent 2658788 commit 28cf394

File tree

4 files changed

+45
-45
lines changed

4 files changed

+45
-45
lines changed

Source/NETworkManager.Localization/Resources/Strings.Designer.cs

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/NETworkManager.Localization/Resources/Strings.resx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3972,30 +3972,30 @@ If you click Cancel, the profile file will remain unencrypted.</value>
39723972
<data name="RestoreDefaultLocationQuestion" xml:space="preserve">
39733973
<value>Restore default location?</value>
39743974
</data>
3975-
<data name="RestoreDefaultLocationSettingsMessage" xml:space="preserve">
3976-
<value>The default path is restored and the application is restarted afterwards.
3975+
<data name="RestoreDefaultSettingsLocationMessage" xml:space="preserve">
3976+
<value>The default settings location is restored and the application is restarted afterwards.
39773977

39783978
You can copy the “settings.json” file from "{0}" to "{1}" to migrate your previous settings, if necessary. The application must be closed for this to prevent the settings from being overwritten.</value>
39793979
</data>
39803980
<data name="ChangeLocationQuestion" xml:space="preserve">
39813981
<value>Change location?</value>
39823982
</data>
3983-
<data name="ChangeLocationSettingsMessage" xml:space="preserve">
3984-
<value>The location is changed and the application is restarted afterwards.
3983+
<data name="ChangeSettingsLocationMessage" xml:space="preserve">
3984+
<value>The settings location is changed and the application is restarted afterwards.
39853985

39863986
You can copy the “settings.json” file from "{0}" to "{1}" to migrate your previous settings, if necessary. The application must be closed for this to prevent the settings from being overwritten.</value>
39873987
</data>
39883988
<data name="EnterValidFolderPath" xml:space="preserve">
39893989
<value>Enter a valid folder path!</value>
39903990
</data>
3991-
<data name="ChangeLocationProfilesMessage" xml:space="preserve">
3992-
<value>The location is changed and the application is restarted afterwards.
3991+
<data name="ChangeProfilesLocationMessage" xml:space="preserve">
3992+
<value>The profiles location is changed and the application is restarted afterwards.
39933993

3994-
You can copy your profile files from “{0}” to “{1}” to migrate your previous profiles, if necessary. The application must be closed for this to prevent the profiles from being overwritten.</value>
3994+
You can copy your profile files from “{0}” to “{1}” to migrate your existing profiles, if necessary. The application must be closed for this to prevent the profiles from being overwritten.</value>
39953995
</data>
3996-
<data name="RestoreDefaultLocationProfilesMessage" xml:space="preserve">
3997-
<value>The default path is restored and the application is restarted afterwards.
3996+
<data name="RestoreDefaultProfilesLocationMessage" xml:space="preserve">
3997+
<value>The default profiles location is restored and the application is restarted afterwards.
39983998

3999-
You can copy your profile files from “{0}” to “{1}” to migrate your previous profiles, if necessary. The application must be closed for this to prevent the profiles from being overwritten.</value>
3999+
You can copy your profile files from “{0}” to “{1}” to migrate your existing profiles, if necessary. The application must be closed for this to prevent the profiles from being overwritten.</value>
40004000
</data>
40014001
</root>

Source/NETworkManager/ViewModels/SettingsProfilesViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private async Task ChangeLocationAction()
231231
{
232232
var result = await DialogHelper.ShowConfirmationMessageAsync(Application.Current.MainWindow,
233233
Strings.ChangeLocationQuestion,
234-
string.Format(Strings.ChangeLocationProfilesMessage, ProfileManager.GetProfilesFolderLocation(), Location),
234+
string.Format(Strings.ChangeProfilesLocationMessage, ProfileManager.GetProfilesFolderLocation(), Location),
235235
ChildWindowIcon.Question,
236236
Strings.Change);
237237

@@ -263,7 +263,7 @@ private async Task RestoreDefaultLocationActionAsync()
263263
{
264264
var result = await DialogHelper.ShowConfirmationMessageAsync(Application.Current.MainWindow,
265265
Strings.RestoreDefaultLocationQuestion,
266-
string.Format(Strings.RestoreDefaultLocationProfilesMessage, ProfileManager.GetProfilesFolderLocation(), ProfileManager.GetDefaultProfilesFolderLocation()),
266+
string.Format(Strings.RestoreDefaultProfilesLocationMessage, ProfileManager.GetProfilesFolderLocation(), ProfileManager.GetDefaultProfilesFolderLocation()),
267267
ChildWindowIcon.Question,
268268
Strings.Restore);
269269

Source/NETworkManager/ViewModels/SettingsSettingsViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ private async Task ChangeLocationAction()
253253
{
254254
var result = await DialogHelper.ShowConfirmationMessageAsync(Application.Current.MainWindow,
255255
Strings.ChangeLocationQuestion,
256-
string.Format(Strings.ChangeLocationSettingsMessage, SettingsManager.GetSettingsFolderLocation(), Location),
256+
string.Format(Strings.ChangeSettingsLocationMessage, SettingsManager.GetSettingsFolderLocation(), Location),
257257
ChildWindowIcon.Question,
258258
Strings.Change);
259259

@@ -289,7 +289,7 @@ private async Task RestoreDefaultLocationActionAsync()
289289
{
290290
var result = await DialogHelper.ShowConfirmationMessageAsync(Application.Current.MainWindow,
291291
Strings.RestoreDefaultLocationQuestion,
292-
string.Format(Strings.RestoreDefaultLocationSettingsMessage, SettingsManager.GetSettingsFolderLocation(), SettingsManager.GetDefaultSettingsFolderLocation()),
292+
string.Format(Strings.RestoreDefaultSettingsLocationMessage, SettingsManager.GetSettingsFolderLocation(), SettingsManager.GetDefaultSettingsFolderLocation()),
293293
ChildWindowIcon.Question,
294294
Strings.Restore);
295295

0 commit comments

Comments
 (0)