mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-13 09:20:29 +00:00
feat: Add channel deletion functionality with localization support
This commit is contained in:
@@ -2088,6 +2088,22 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
return 'Failed to create channel: $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get deleteChannel => 'Delete Channel';
|
||||
|
||||
@override
|
||||
String deleteChannelConfirmation(String channelName) {
|
||||
return 'Are you sure you want to delete channel \"$channelName\"? This action cannot be undone.';
|
||||
}
|
||||
|
||||
@override
|
||||
String get channelDeletedSuccessfully => 'Channel deleted successfully';
|
||||
|
||||
@override
|
||||
String channelDeletionFailed(String error) {
|
||||
return 'Failed to delete channel: $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get allChannelSlotsInUse =>
|
||||
'All channel slots are in use (maximum 39 custom channels)';
|
||||
|
||||
Reference in New Issue
Block a user