mirror of
https://github.com/bitwarden/mobile
synced 2026-01-06 10:34:07 +00:00
Changing Report crash logs to Submit crash logs (#1937)
* Changing Report crash logs to Submit crash logs * Updated resources keys to match the new value Co-authored-by: Federico Andrés Maccaroni <fedemkr@gmail.com>
This commit is contained in:
@@ -167,7 +167,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
await _vm.UpdatePinAsync();
|
||||
}
|
||||
else if (item.Name == AppResources.ReportCrashLogs)
|
||||
else if (item.Name == AppResources.SubmitCrashLogs)
|
||||
{
|
||||
await _vm.LoggerReportingAsync();
|
||||
}
|
||||
|
||||
@@ -296,7 +296,7 @@ namespace Bit.App.Pages
|
||||
CreateSelectableOption(AppResources.No, !_reportLoggingEnabled),
|
||||
};
|
||||
|
||||
var selection = await Page.DisplayActionSheet(AppResources.ReportCrashLogsDescription, AppResources.Cancel, null, options);
|
||||
var selection = await Page.DisplayActionSheet(AppResources.SubmitCrashLogsDescription, AppResources.Cancel, null, options);
|
||||
|
||||
if (selection == null || selection == AppResources.Cancel)
|
||||
{
|
||||
@@ -525,7 +525,7 @@ namespace Bit.App.Pages
|
||||
#if !FDROID
|
||||
new SettingsPageListItem
|
||||
{
|
||||
Name = AppResources.ReportCrashLogs,
|
||||
Name = AppResources.SubmitCrashLogs,
|
||||
SubLabel = _reportLoggingEnabled ? AppResources.Enabled : AppResources.Disabled,
|
||||
},
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user