mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
feat: Add send mode localization #123
This commit is contained in:
@@ -660,6 +660,30 @@
|
||||
"@flood": {
|
||||
"description": "Flood routing indicator"
|
||||
},
|
||||
"autoSend": "Auto Send",
|
||||
"@autoSend": {
|
||||
"description": "Auto send mode - uses current path"
|
||||
},
|
||||
"autoSendDescription": "Send via current path.",
|
||||
"@autoSendDescription": {
|
||||
"description": "Description for auto send mode"
|
||||
},
|
||||
"sendDirect": "Send Direct",
|
||||
"@sendDirect": {
|
||||
"description": "Send direct mode - zero-hop to contact"
|
||||
},
|
||||
"sendDirectDescription": "Send directly to this contact.",
|
||||
"@sendDirectDescription": {
|
||||
"description": "Description for send direct mode"
|
||||
},
|
||||
"sendFlood": "Send Flood",
|
||||
"@sendFlood": {
|
||||
"description": "Send flood mode - via all repeaters"
|
||||
},
|
||||
"sendFloodDescription": "Send via all repeaters.",
|
||||
"@sendFloodDescription": {
|
||||
"description": "Description for send flood mode"
|
||||
},
|
||||
"loggedIn": "Logged In",
|
||||
"@loggedIn": {
|
||||
"description": "Logged in status badge"
|
||||
|
||||
@@ -961,6 +961,42 @@ abstract class AppLocalizations {
|
||||
/// **'Flood'**
|
||||
String get flood;
|
||||
|
||||
/// Auto send mode - uses current path
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Auto Send'**
|
||||
String get autoSend;
|
||||
|
||||
/// Description for auto send mode
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send via current path.'**
|
||||
String get autoSendDescription;
|
||||
|
||||
/// Send direct mode - zero-hop to contact
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send Direct'**
|
||||
String get sendDirect;
|
||||
|
||||
/// Description for send direct mode
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send directly to this contact.'**
|
||||
String get sendDirectDescription;
|
||||
|
||||
/// Send flood mode - via all repeaters
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send Flood'**
|
||||
String get sendFlood;
|
||||
|
||||
/// Description for send flood mode
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send via all repeaters.'**
|
||||
String get sendFloodDescription;
|
||||
|
||||
/// Logged in status badge
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -481,6 +481,24 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Flut';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Angemeldet';
|
||||
|
||||
|
||||
@@ -483,6 +483,24 @@ class AppLocalizationsEl extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Πλημμυρικό';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Συνδεδεμένος';
|
||||
|
||||
|
||||
@@ -478,6 +478,24 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Flood';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Logged In';
|
||||
|
||||
|
||||
@@ -481,6 +481,24 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Inundación';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Sesión iniciada';
|
||||
|
||||
|
||||
@@ -483,6 +483,24 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Inondation';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Connecté';
|
||||
|
||||
|
||||
@@ -476,6 +476,24 @@ class AppLocalizationsHr extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Preplavljanje';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Prijavljen';
|
||||
|
||||
|
||||
@@ -480,6 +480,24 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Flood';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Connesso';
|
||||
|
||||
|
||||
@@ -481,6 +481,24 @@ class AppLocalizationsPl extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Rozgłoszeniowo';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Zalogowano';
|
||||
|
||||
|
||||
@@ -482,6 +482,24 @@ class AppLocalizationsPt extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Inundação';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Conectado';
|
||||
|
||||
|
||||
@@ -480,6 +480,24 @@ class AppLocalizationsRu extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Широковещательно';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Вход выполнен';
|
||||
|
||||
|
||||
@@ -477,6 +477,24 @@ class AppLocalizationsSl extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Razpršitev';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Prijavljen';
|
||||
|
||||
|
||||
@@ -480,6 +480,24 @@ class AppLocalizationsTr extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Yayılım';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Giriş yapıldı';
|
||||
|
||||
|
||||
@@ -480,6 +480,24 @@ class AppLocalizationsUk extends AppLocalizations {
|
||||
@override
|
||||
String get flood => 'Широкомовно';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => 'Увійшли';
|
||||
|
||||
|
||||
@@ -464,6 +464,24 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
@override
|
||||
String get flood => '泛洪';
|
||||
|
||||
@override
|
||||
String get autoSend => 'Auto Send';
|
||||
|
||||
@override
|
||||
String get autoSendDescription => 'Send via current path.';
|
||||
|
||||
@override
|
||||
String get sendDirect => 'Send Direct';
|
||||
|
||||
@override
|
||||
String get sendDirectDescription => 'Send directly to this contact.';
|
||||
|
||||
@override
|
||||
String get sendFlood => 'Send Flood';
|
||||
|
||||
@override
|
||||
String get sendFloodDescription => 'Send via all repeaters.';
|
||||
|
||||
@override
|
||||
String get loggedIn => '已登录';
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
{
|
||||
"de": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -16,6 +22,12 @@
|
||||
],
|
||||
|
||||
"el": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -32,6 +44,12 @@
|
||||
],
|
||||
|
||||
"es": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -48,6 +66,12 @@
|
||||
],
|
||||
|
||||
"fr": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -64,6 +88,12 @@
|
||||
],
|
||||
|
||||
"hr": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -80,6 +110,12 @@
|
||||
],
|
||||
|
||||
"it": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -96,6 +132,12 @@
|
||||
],
|
||||
|
||||
"pl": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -112,6 +154,12 @@
|
||||
],
|
||||
|
||||
"pt": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -128,6 +176,12 @@
|
||||
],
|
||||
|
||||
"ru": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -144,6 +198,12 @@
|
||||
],
|
||||
|
||||
"sl": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -160,6 +220,12 @@
|
||||
],
|
||||
|
||||
"tr": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -176,6 +242,12 @@
|
||||
],
|
||||
|
||||
"uk": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
@@ -192,6 +264,12 @@
|
||||
],
|
||||
|
||||
"zh": [
|
||||
"autoSend",
|
||||
"autoSendDescription",
|
||||
"sendDirect",
|
||||
"sendDirectDescription",
|
||||
"sendFlood",
|
||||
"sendFloodDescription",
|
||||
"postConnectDiscoveryTitle",
|
||||
"postConnectDiscoveryDescription",
|
||||
"setRegionScope",
|
||||
|
||||
Reference in New Issue
Block a user