Add strings
This commit is contained in:
parent
76dca4d819
commit
81bdc0fe73
2 changed files with 79 additions and 2 deletions
70
mobile/lib/generated/l10n.dart
generated
70
mobile/lib/generated/l10n.dart
generated
|
@ -8473,6 +8473,76 @@ class S {
|
|||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Are you sure that you want to modify Developer settings?`
|
||||
String get developerSettingsWarning {
|
||||
return Intl.message(
|
||||
'Are you sure that you want to modify Developer settings?',
|
||||
name: 'developerSettingsWarning',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Developer settings`
|
||||
String get developerSettings {
|
||||
return Intl.message(
|
||||
'Developer settings',
|
||||
name: 'developerSettings',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Server endpoint`
|
||||
String get serverEndpoint {
|
||||
return Intl.message(
|
||||
'Server endpoint',
|
||||
name: 'serverEndpoint',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Invalid endpoint`
|
||||
String get invalidEndpoint {
|
||||
return Intl.message(
|
||||
'Invalid endpoint',
|
||||
name: 'invalidEndpoint',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Sorry, the endpoint you entered is invalid. Please enter a valid endpoint and try again.`
|
||||
String get invalidEndpointMessage {
|
||||
return Intl.message(
|
||||
'Sorry, the endpoint you entered is invalid. Please enter a valid endpoint and try again.',
|
||||
name: 'invalidEndpointMessage',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Endpoint updated successfully`
|
||||
String get endpointUpdatedMessage {
|
||||
return Intl.message(
|
||||
'Endpoint updated successfully',
|
||||
name: 'endpointUpdatedMessage',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Connected to {endpoint}`
|
||||
String customEndpoint(Object endpoint) {
|
||||
return Intl.message(
|
||||
'Connected to $endpoint',
|
||||
name: 'customEndpoint',
|
||||
desc: '',
|
||||
args: [endpoint],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
|
|
@ -1203,5 +1203,12 @@
|
|||
"descriptions": "Descriptions",
|
||||
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
|
||||
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
|
||||
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
|
||||
}
|
||||
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption.",
|
||||
"developerSettingsWarning": "Are you sure that you want to modify Developer settings?",
|
||||
"developerSettings": "Developer settings",
|
||||
"serverEndpoint": "Server endpoint",
|
||||
"invalidEndpoint": "Invalid endpoint",
|
||||
"invalidEndpointMessage": "Sorry, the endpoint you entered is invalid. Please enter a valid endpoint and try again.",
|
||||
"endpointUpdatedMessage": "Endpoint updated successfully",
|
||||
"customEndpoint": "Connected to {endpoint}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue