Extract string

This commit is contained in:
vishnukvmd 2024-03-06 20:47:52 +05:30
parent 7ca217f753
commit 981e3866d3
2 changed files with 2 additions and 1 deletions

View file

@ -412,6 +412,7 @@
"developerMode":"Developer mode",
"developerModeWarning":"Are you sure that you want to modify Developer settings?",
"developerSettings": "Developer settings",
"serverEndpoint": "Server endpoint",
"invalidURL": "Invalid URL",
"invalidURLMessage": "Sorry, the URL you entered is invalid. Please enter a valid URL and try again.",
"endpointUpdatedMessage": "Endpoint updated successfully"

View file

@ -39,7 +39,7 @@ class _DeveloperSettingsPageState extends State<DeveloperSettingsPage> {
TextField(
controller: _urlController,
decoration: InputDecoration(
labelText: 'Server Endpoint',
labelText: context.l10n.serverEndpoint,
hintText: Configuration.instance.getHttpEndpoint(),
),
autofocus: true,