mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-02-15 20:55:25 +01:00
Merge branch 'main' of https://github.com/lollipopkit/flutter_server_box
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
"decode": "Decode",
|
||||
"delete": "Löschen",
|
||||
"disconnected": "Disconnected",
|
||||
"diskIgnorePath": "Pfad für Platte ignorieren",
|
||||
"diskIgnorePath": "Pfad für Datenträger ignorieren",
|
||||
"dl2Local": "Datei \"{fileName}\" herunterladen?",
|
||||
"dockerEditHost": "DOCKER_HOST bearbeiten",
|
||||
"dockerEmptyRunningItems": "Keine aktiven Container.\n\nWomöglich wird die Umgebungsvariable DOCKER_HOST nicht richtig erkannt. Du kannst sie finden, indem du `echo $DOCKER_HOST` im Terminal ausführst.",
|
||||
@@ -46,7 +46,7 @@
|
||||
"download": "Download",
|
||||
"downloadStatus": "{percent}% von {size}",
|
||||
"edit": "Bearbeiten",
|
||||
"editor": "Redakteure",
|
||||
"editor": "Editor",
|
||||
"encode": "Encode",
|
||||
"error": "Fehler",
|
||||
"exampleName": "Servername",
|
||||
@@ -167,7 +167,7 @@
|
||||
"tag": "Tags",
|
||||
"terminal": "Terminal",
|
||||
"theme": "Themen",
|
||||
"themeMode": "Thememodus",
|
||||
"themeMode": "Themen-Modus",
|
||||
"times": "x",
|
||||
"ttl": "ttl",
|
||||
"unknown": "Unbekannt",
|
||||
|
||||
@@ -227,7 +227,7 @@ class _ServerEditPageState extends State<ServerEditPage> with AfterLayoutMixin {
|
||||
Widget _buildFAB() {
|
||||
return FloatingActionButton(
|
||||
heroTag: 'server',
|
||||
child: const Icon(Icons.send),
|
||||
child: const Icon(Icons.save),
|
||||
onPressed: () async {
|
||||
if (_ipController.text == '') {
|
||||
showSnackBar(context, Text(_s.plzEnterHost));
|
||||
|
||||
@@ -637,7 +637,7 @@ class _SettingPageState extends State<SettingPage> {
|
||||
},
|
||||
).toList();
|
||||
return ListTile(
|
||||
title: Text(_s.editor + _s.theme),
|
||||
title: Text("${_s.editor} ${_s.theme}"),
|
||||
trailing: ValueBuilder(listenable: _editorTheme, build: () => PopupMenuButton(
|
||||
key: editorThemeKey,
|
||||
itemBuilder: (BuildContext context) => items,
|
||||
|
||||
@@ -66,7 +66,7 @@ class _SnippetEditPageState extends State<SnippetEditPage>
|
||||
Widget _buildFAB() {
|
||||
return FloatingActionButton(
|
||||
heroTag: 'snippet',
|
||||
child: const Icon(Icons.send),
|
||||
child: const Icon(Icons.save),
|
||||
onPressed: () {
|
||||
final name = _nameController.text;
|
||||
final script = _scriptController.text;
|
||||
|
||||
Reference in New Issue
Block a user