mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-13 17:30:28 +00:00
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:
@@ -1818,4 +1818,39 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
String newDrawingsShared(int count, String plural) {
|
||||
return '$count nuovo(i) disegno(i) condiviso(i)';
|
||||
}
|
||||
|
||||
@override
|
||||
String get shareDrawing => 'Condividi Disegno';
|
||||
|
||||
@override
|
||||
String get shareWithAllNearbyDevices =>
|
||||
'Condividi con tutti i dispositivi vicini';
|
||||
|
||||
@override
|
||||
String get shareToRoom => 'Condividi nella Stanza';
|
||||
|
||||
@override
|
||||
String get sendToPersistentStorage =>
|
||||
'Invia allo storage persistente della stanza';
|
||||
|
||||
@override
|
||||
String get deleteDrawingConfirm =>
|
||||
'Sei sicuro di voler eliminare questo disegno?';
|
||||
|
||||
@override
|
||||
String get drawingDeleted => 'Disegno eliminato';
|
||||
|
||||
@override
|
||||
String yourDrawingsCount(int count) {
|
||||
return 'I Tuoi Disegni ($count)';
|
||||
}
|
||||
|
||||
@override
|
||||
String get shared => 'Condiviso';
|
||||
|
||||
@override
|
||||
String get line => 'Linea';
|
||||
|
||||
@override
|
||||
String get rectangle => 'Rettangolo';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user