Add drawing sharing functionality and localization updates

- Implemented sharing options for drawings, including sharing to a public channel and specific rooms.
- Added confirmation dialogs for deleting drawings and sharing drawings.
- Enhanced the drawing toolbar to display a list of user's drawings with options to share or delete.
- Updated localization files for English, Spanish, French, Croatian, Italian, German, Slovenian, and other languages to include new strings related to drawing sharing and management.
- Introduced syncing of drawing messages with the DrawingProvider to restore missing drawings.
- Improved the drawing minimap preview to display a small preview of drawings in the toolbar.
This commit is contained in:
Janez T
2025-10-23 20:50:14 +02:00
parent 19603a1ad9
commit 9d923f8118
21 changed files with 941 additions and 61 deletions

View File

@@ -1812,4 +1812,37 @@ class AppLocalizationsSl extends AppLocalizations {
String newDrawingsShared(int count, String plural) {
return 'Deljeno $count nov$plural risb$plural';
}
@override
String get shareDrawing => 'Deli Risbo';
@override
String get shareWithAllNearbyDevices => 'Deli z vsemi bližnjimi napravami';
@override
String get shareToRoom => 'Deli v Sobo';
@override
String get sendToPersistentStorage => 'Pošlji v trajno shrambo sobe';
@override
String get deleteDrawingConfirm =>
'Ali ste prepričani, da želite izbrisati to risbo?';
@override
String get drawingDeleted => 'Risba izbrisana';
@override
String yourDrawingsCount(int count) {
return 'Vaše Risbe ($count)';
}
@override
String get shared => 'Deljeno';
@override
String get line => 'Črta';
@override
String get rectangle => 'Pravokotnik';
}