Update common strings

This commit is contained in:
vishnukvmd
2025-07-19 20:25:02 +05:30
parent c909310cec
commit 7665fed975
24 changed files with 118 additions and 1 deletions

View File

@@ -118,5 +118,6 @@
"viewLogs": "View logs",
"@viewLogs": {
"description": "Button to view logs"
}
},
"customEndpoint": "Connected to {endpoint}"
}

View File

@@ -301,6 +301,12 @@ abstract class StringsLocalizations {
/// In en, this message translates to:
/// **'View logs'**
String get viewLogs;
/// No description provided for @customEndpoint.
///
/// In en, this message translates to:
/// **'Connected to {endpoint}'**
String customEndpoint(Object endpoint);
}
class _StringsLocalizationsDelegate

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsAr extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsBg extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsCs extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsDa extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsEl extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsEn extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsEs extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsFr extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsId extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsJa extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsKo extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsLt extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsNl extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsPl extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsPt extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsRu extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsSk extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsSr extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsSv extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsTr extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -97,4 +97,9 @@ class StringsLocalizationsVi extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}

View File

@@ -96,6 +96,11 @@ class StringsLocalizationsZh extends StringsLocalizations {
@override
String get viewLogs => 'View logs';
@override
String customEndpoint(Object endpoint) {
return 'Connected to $endpoint';
}
}
/// The translations for Chinese, as used in Taiwan (`zh_TW`).